generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 271
Open
Labels
area/documentationIssues or PRs related to documentation and examplesIssues or PRs related to documentation and examplesservice/s3Indicates issues or PRs that are related to s3-controller.Indicates issues or PRs that are related to s3-controller.
Description
Description:
The current schema for the ACK S3 controller allows setting tags under spec.tagging.tagSet, where each tag is defined as a key-value pair. However, according to the ACK documentation at https://aws-controllers-k8s.github.io/community/docs/user-docs/ack-tags/, tags should be specified under spec.tags.
The schema should be updated to reflect this structure to align with the documentation.
This inconsistency may confuse users attempting to apply tags based on the provided documentation, especially when building automation around this field.
Expected Schema:
spec:
tags:
- key: string
value: string
Current Schema:
spec:
tagging:
tagSet:
- key: string
value: string
Metadata
Metadata
Assignees
Labels
area/documentationIssues or PRs related to documentation and examplesIssues or PRs related to documentation and examplesservice/s3Indicates issues or PRs that are related to s3-controller.Indicates issues or PRs that are related to s3-controller.