From 506b3ba90d2e9cbc57cb1bdf7964d5f6cc7086cd Mon Sep 17 00:00:00 2001 From: Amine Date: Thu, 29 Aug 2024 00:39:24 -0700 Subject: [PATCH] Update CARM feature gates in Helm values template 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 https://github.com/aws-controllers-k8s/community/issues/2031 for more information on these CARM granularity levels. --- templates/helm/values.yaml.tpl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/templates/helm/values.yaml.tpl b/templates/helm/values.yaml.tpl index 832a67c6..6ca3adc5 100644 --- a/templates/helm/values.yaml.tpl +++ b/templates/helm/values.yaml.tpl @@ -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