From 11271adeba4015464425c409fb3ea53b7e7f84fd Mon Sep 17 00:00:00 2001 From: QuantumEnigmaa Date: Mon, 25 Nov 2024 11:44:04 +0100 Subject: [PATCH 1/2] Helm : fix alermanager-statefulset serviceAccountName field Signed-off-by: QuantumEnigmaa --- operations/helm/charts/mimir-distributed/CHANGELOG.md | 1 + .../templates/alertmanager/alertmanager-statefulset.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/operations/helm/charts/mimir-distributed/CHANGELOG.md b/operations/helm/charts/mimir-distributed/CHANGELOG.md index ec2820bc9d..40996c7387 100644 --- a/operations/helm/charts/mimir-distributed/CHANGELOG.md +++ b/operations/helm/charts/mimir-distributed/CHANGELOG.md @@ -29,6 +29,7 @@ Entries should include a reference to the Pull Request that introduced the chang ## main / unreleased +* [BUGFIX] Update `serviceAccountName` in the `alertmanager-statefulset` template. * [CHANGE] Update rollout-operator version to 0.20.0. #9995 * [FEATURE] Add support for GEM's federation-frontend. See the `federation_frontend` section in the values file. #9673 * [ENHANCEMENT] Add support for setting type and internal traffic policy for Kubernetes service. Set `internalTrafficPolicy=Cluster` by default in all services with type `ClusterIP`. #9619 diff --git a/operations/helm/charts/mimir-distributed/templates/alertmanager/alertmanager-statefulset.yaml b/operations/helm/charts/mimir-distributed/templates/alertmanager/alertmanager-statefulset.yaml index ae996634ab..f0308d319b 100644 --- a/operations/helm/charts/mimir-distributed/templates/alertmanager/alertmanager-statefulset.yaml +++ b/operations/helm/charts/mimir-distributed/templates/alertmanager/alertmanager-statefulset.yaml @@ -70,7 +70,7 @@ spec: {{- with .Values.alertmanager.schedulerName }} schedulerName: {{ . | quote }} {{- end }} - serviceAccountName: {{ template "mimir.serviceAccountName" . }} + serviceAccountName: {{ template "mimir.alertmanager.serviceAccountName" . }} {{- if .Values.alertmanager.priorityClassName }} priorityClassName: {{ .Values.alertmanager.priorityClassName }} {{- end }} From 9e8ad04a8f396302d2e7c581cf90d50033a4193d Mon Sep 17 00:00:00 2001 From: QuantumEnigmaa Date: Mon, 25 Nov 2024 11:49:46 +0100 Subject: [PATCH 2/2] update changelog with PR reference --- operations/helm/charts/mimir-distributed/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations/helm/charts/mimir-distributed/CHANGELOG.md b/operations/helm/charts/mimir-distributed/CHANGELOG.md index 40996c7387..e7aa135e40 100644 --- a/operations/helm/charts/mimir-distributed/CHANGELOG.md +++ b/operations/helm/charts/mimir-distributed/CHANGELOG.md @@ -29,7 +29,7 @@ Entries should include a reference to the Pull Request that introduced the chang ## main / unreleased -* [BUGFIX] Update `serviceAccountName` in the `alertmanager-statefulset` template. +* [BUGFIX] Update `serviceAccountName` in the `alertmanager-statefulset` template. #10016 * [CHANGE] Update rollout-operator version to 0.20.0. #9995 * [FEATURE] Add support for GEM's federation-frontend. See the `federation_frontend` section in the values file. #9673 * [ENHANCEMENT] Add support for setting type and internal traffic policy for Kubernetes service. Set `internalTrafficPolicy=Cluster` by default in all services with type `ClusterIP`. #9619