From 73d1aedaecca2f9c4f5b1adf3b7301c004fbe434 Mon Sep 17 00:00:00 2001 From: keiSunagawa Date: Wed, 29 Sep 2021 18:07:01 +0900 Subject: [PATCH] fix repo server extraContainers values unused (#953) Signed-off-by: keiSunagawa --- charts/argo-cd/Chart.yaml | 4 ++-- charts/argo-cd/templates/argocd-repo-server/deployment.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index 4e7c318f..a68ababd 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.1.2 description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes. name: argo-cd -version: 3.22.0 +version: 3.22.1 home: https://github.com/argoproj/argo-helm icon: https://argoproj.github.io/argo-cd/assets/logo.png keywords: @@ -21,4 +21,4 @@ dependencies: condition: redis-ha.enabled annotations: artifacthub.io/changes: | - - "[Added]: Support for server.additionalApplications[].info" + - "[Fixed]: repoServer.extraContainers unused" diff --git a/charts/argo-cd/templates/argocd-repo-server/deployment.yaml b/charts/argo-cd/templates/argocd-repo-server/deployment.yaml index 7ebb8991..3c86cb8f 100755 --- a/charts/argo-cd/templates/argocd-repo-server/deployment.yaml +++ b/charts/argo-cd/templates/argocd-repo-server/deployment.yaml @@ -114,7 +114,7 @@ spec: failureThreshold: {{ .Values.repoServer.readinessProbe.failureThreshold }} resources: {{- toYaml .Values.repoServer.resources | nindent 10 }} - {{- with .Values.controller.extraContainers }} + {{- with .Values.repoServer.extraContainers }} {{- toYaml . | nindent 6 }} {{- end }} {{- if .Values.repoServer.nodeSelector }}