From 53e23d12e004a8cd7b8d80b1c0eaf99f832abfb7 Mon Sep 17 00:00:00 2001 From: Tarun Khandelwal Date: Wed, 10 Dec 2025 11:18:58 +0530 Subject: [PATCH] fix: Add topology service volume mounts to sidekiq main container --- charts/gitlab/charts/sidekiq/templates/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/gitlab/charts/sidekiq/templates/deployment.yaml b/charts/gitlab/charts/sidekiq/templates/deployment.yaml index 346ea66e97..9cdfa90b75 100644 --- a/charts/gitlab/charts/sidekiq/templates/deployment.yaml +++ b/charts/gitlab/charts/sidekiq/templates/deployment.yaml @@ -179,7 +179,6 @@ spec: mountPath: /srv/gitlab/config/secrets.yml subPath: rails-secrets/secrets.yml readOnly: true - {{- include "gitlab.topologyService.volumeMounts" (dict "context" $ "secretsVolumeName" "sidekiq-secrets") | nindent 10 }} resources: {{- toYaml $.Values.init.resources | nindent 12 }} {{- include "gitlab.image.pullSecrets" $imageCfg | indent 6 }} @@ -238,6 +237,7 @@ spec: name: http-metrics {{- end }} volumeMounts: + {{- include "gitlab.topologyService.volumeMounts" (dict "context" $ "secretsVolumeName" "sidekiq-secrets") | nindent 10 }} {{- tpl (default "" .extraVolumeMounts) $ | nindent 10 }} {{- include "gitlab.extraVolumeMounts" $ | nindent 10 }} {{- if $metricsEnabled }} -- GitLab