feat(argocd): Add shareProcessNamespace option to repoServer

This commit is contained in:
Kenneth Bambridge 2020-04-02 11:12:50 -07:00
parent bad9aff0aa
commit 507e46dfb6
3 changed files with 6 additions and 1 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "1.4.2"
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 2.0.3
version: 2.1.0
home: https://github.com/argoproj/argo-helm
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
keywords:

View file

@ -39,6 +39,9 @@ spec:
{{- toYaml .Values.repoServer.podLabels | nindent 8 }}
{{- end }}
spec:
{{- if .Values.repoServer.shareProcessNamespace }}
shareProcessNamespace: true
{{- end }}
{{- with .Values.global.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}

View file

@ -547,6 +547,8 @@ repoServer:
replicas: 1
shareProcessNamespace: false # Enable for zombie process cleanup
autoscaling:
enabled: false
minReplicas: 1