-
Couldn't load subscription status.
- Fork 85
Feature - Directory Bucket Support (S3 Express) #187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 4 commits
6e7373d
060d4ba
be57139
41b0082
eb542a7
80c851e
03dc43d
b1dde85
0ba503e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,13 @@ | ||
| ack_generate_info: | ||
| build_date: "2025-09-19T17:20:43Z" | ||
| build_hash: 6b4211163dcc34776b01da9a18217bac0f4103fd | ||
| go_version: go1.24.6 | ||
| version: v0.52.0 | ||
| api_directory_checksum: 2108338a86d704419192e545c0bfb433bab8c836 | ||
| build_date: "2025-10-23T09:42:09Z" | ||
| build_hash: eaabefb6bd7b2be8a1baf4478f22b3310e6921c8 | ||
| go_version: go1.25.3 | ||
| version: v0.52.0-6-geaabefb-dirty | ||
| api_directory_checksum: e4d609df16764c73dfe31eed33d0e3ab120af8e9 | ||
| api_version: v1alpha1 | ||
| aws_sdk_go_version: v1.32.6 | ||
| generator_config_info: | ||
| file_checksum: 00a96da29786586c7a3a59666d5546468e616b48 | ||
| file_checksum: c00ccde5df5a3b78d6da668d949f58e1551c3826 | ||
| original_file_name: generator.yaml | ||
| last_modification: | ||
| reason: API generation | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,11 +12,17 @@ ignore: | |
| - "VersioningConfiguration.MFADelete" | ||
| # This subfield struct has no members... | ||
| - "NotificationConfiguration.EventBridgeConfiguration" | ||
| - CreateBucketInput.CreateBucketConfiguration.Location | ||
| - CreateBucketInput.CreateBucketConfiguration.Bucket | ||
| - LoggingEnabled.TargetObjectKeyFormat | ||
| operations: | ||
| ListDirectoryBuckets: | ||
|
||
| operation_type: | ||
| - List | ||
| resource_name: | ||
| - Bucket | ||
| resources: | ||
| Bucket: | ||
| find_operation: | ||
| custom_method_name: customFindBucket | ||
| fields: | ||
| Name: | ||
| is_primary_key: true | ||
|
|
@@ -58,6 +64,12 @@ resources: | |
| # Forcing CRD field to "uRI" to avoid breaking change following | ||
| # fix in aws-controller-k8s/pkg dependency for URI -> uri. | ||
| go_tag: json:"uRI,omitempty" | ||
| CreateBucketConfiguration.Bucket.Type: | ||
| # Override json tag to use "type" instead of "type_" to avoid underscore in CRD | ||
| go_tag: json:"type,omitempty" | ||
| CreateBucketConfiguration.Location.Type: | ||
| # Override json tag to use "type" instead of "type_" to avoid underscore in CRD | ||
| go_tag: json:"type,omitempty" | ||
| Metrics: | ||
| custom_field: | ||
| list_of: MetricsConfiguration | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you need to modify the ackgenerate tool to make these changes? If not could you rebuild the controller with an unmodified version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure what caused this change, I assumed the ack-generate tool updated some metadata and didn't think much of it. I don't think it is crucial to the implementation.
Could you maybe elaborate on how to know what the actual values should be?