Skip to content

Commit 02949b1

Browse files
authored
fix(argo-cd): Default repo-server init container resources to empty (argoproj#2786)
1 parent b0d4648 commit 02949b1

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

charts/argo-cd/Chart.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: v2.11.3
33
kubeVersion: ">=1.23.0-0"
44
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
55
name: argo-cd
6-
version: 7.2.0
6+
version: 7.2.1
77
home: https://github.com/argoproj/argo-helm
88
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99
sources:
@@ -26,7 +26,5 @@ annotations:
2626
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
2727
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
2828
artifacthub.io/changes: |
29-
- kind: removed
30-
description: Remove `server.certificate.secretName`, as the expected secret name is static (argocd-server-tls)
31-
- kind: removed
32-
description: Remove `applicationSet.certificate.secretName`, as the expected secret name is static (argocd-applicationset-controller-tls)
29+
- kind: changed
30+
description: Default argocd repo-server init container replicas to empty

charts/argo-cd/templates/argocd-repo-server/deployment.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -359,10 +359,8 @@ spec:
359359
image: {{ default .Values.global.image.repository .Values.repoServer.image.repository }}:{{ default (include "argo-cd.defaultTag" .) .Values.repoServer.image.tag }}
360360
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.repoServer.image.imagePullPolicy }}
361361
name: copyutil
362-
{{- with .Values.repoServer.resources }}
363362
resources:
364-
{{- toYaml . | nindent 10 }}
365-
{{- end }}
363+
{{- toYaml .Values.repoServer.resources | nindent 10 }}
366364
{{- with .Values.repoServer.containerSecurityContext }}
367365
securityContext:
368366
{{- toYaml . | nindent 10 }}

0 commit comments

Comments
 (0)