-
Notifications
You must be signed in to change notification settings - Fork 393
Helm chart should allow conditionally creating the service accounts #6250
Copy link
Copy link
Open
Labels
kind/enhancementAn entirely new featureAn entirely new featurekind/proposalIndicates maintainers have not yet committed to a feature requestIndicates maintainers have not yet committed to a feature requestneeds/areaIssue or PR needs to be labeled to indicate what parts of the code base are affectedIssue or PR needs to be labeled to indicate what parts of the code base are affectedneeds/priorityPriority has not yet been determined; a good signal that maintainers aren't fully committedPriority has not yet been determined; a good signal that maintainers aren't fully committed
Description
Metadata
Metadata
Assignees
Labels
kind/enhancementAn entirely new featureAn entirely new featurekind/proposalIndicates maintainers have not yet committed to a feature requestIndicates maintainers have not yet committed to a feature requestneeds/areaIssue or PR needs to be labeled to indicate what parts of the code base are affectedIssue or PR needs to be labeled to indicate what parts of the code base are affectedneeds/priorityPriority has not yet been determined; a good signal that maintainers aren't fully committedPriority has not yet been determined; a good signal that maintainers aren't fully committed
Type
Fields
Give feedbackNo fields configured for issues without a type.
Pre-submission checklist
Proposed Feature
The helm chart should support the standard pattern used by most of other helm charts to conditionally disable the creation of the services accounts, specially the one for the controller which might require the role ARN annotation and as a user I would like to create it dynamically to avoid hardcoding a role ARN in the
values.yamlfile.This requires a simple change in the service account template here
I would be open contributing to apply this changes.
Motivation and Use Case
In IRSA setups the
ServiceAccountcould be created outside the helm chart in a dynamic way with the correcteks.amazonaws.com/role-arnannotation without having to actually hardcode the role ARN. The Helm chart should only consume that SA, not own it.Alternatives Considered
No response