Skip to content

Commit

Permalink
Update CARM feature gates in Helm values template
Browse files Browse the repository at this point in the history
This patchh updates the feature gates configuration in the Helm values
template:

- Removes the `CARMv2` feature gate
- Adds two new feature gates:
  - `ServiceLevelCARM`: Enables Service level granularity for CARM
  - `TeamLevelCARM`: Enables Team level granularity for CARM

Both new feature gates are set to `false` by default.

See aws-controllers-k8s/community#2031 for more
information on these CARM granularity levels.
  • Loading branch information
a-hilaly committed Aug 29, 2024
1 parent c30e068 commit 506b3ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion templates/helm/values.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,7 @@ leaderElection:
# can be individually enabled ("true") or disabled ("false") by adding key/value
# pairs below.
featureGates:
CARMv2: false
# Enables the Service level granularity for CARM. See https://github.com/aws-controllers-k8s/community/issues/2031
ServiceLevelCARM: false
# Enables the Team level granularity for CARM. See https://github.com/aws-controllers-k8s/community/issues/2031
TeamLevelCARM: false

0 comments on commit 506b3ba

Please sign in to comment.