From dc5f5c274c3786e5e374ecdfdb08664256e86e9e Mon Sep 17 00:00:00 2001 From: Marcus Griep Date: Sat, 18 May 2024 23:39:51 -0600 Subject: [PATCH] fix: add appropriate selector and label for worker pods (#506) --- helm-charts/mend-renovate-ee/templates/worker-deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helm-charts/mend-renovate-ee/templates/worker-deployment.yaml b/helm-charts/mend-renovate-ee/templates/worker-deployment.yaml index dadac35..f2540f7 100644 --- a/helm-charts/mend-renovate-ee/templates/worker-deployment.yaml +++ b/helm-charts/mend-renovate-ee/templates/worker-deployment.yaml @@ -14,6 +14,7 @@ spec: matchLabels: app.kubernetes.io/name: {{ include "mend-renovate.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} + app: {{ include "mend-renovate.name" . }}-worker strategy: type: Recreate template: @@ -21,6 +22,7 @@ spec: labels: app.kubernetes.io/name: {{ include "mend-renovate.name" . }} app.kubernetes.io/instance: {{ .Release.Name }} + app: {{ include "mend-renovate.name" . }}-worker {{- with .Values.renovateWorker.labels.pods }} {{- toYaml . | nindent 8 }} {{- end }}