feat: extraArgs allows same flag multiple times

Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
This commit is contained in:
Carlos Juan Gómez Peñalver 2020-02-19 21:36:15 +00:00
parent 8b2fe04ee6
commit d4c9011e17
3 changed files with 7 additions and 2 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: 1.8.7
version: 2.0.0
home: https://github.com/argoproj/argo-helm
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
keywords:

View file

@ -15,7 +15,7 @@ This chart currently installs the non-HA version of ArgoCD.
### 1.8.0 to 2.0.0
`controller.extraArgs`, `repoServer.extraArgs` and `server.extraArgs` are now arrays of strings intead of a map
`controller.extraArgs`, `repoServer.extraArgs` and `server.extraArgs` are not arrays of strings intead of a map
What was
```

View file

@ -58,8 +58,13 @@ spec:
{{- end }}
- --loglevel
- {{ .Values.repoServer.logLevel }}
<<<<<<< HEAD
{{- with .Values.repoServer.extraArgs }}
{{- . | toYaml | nindent 8 }}
=======
{{- with .Values.controller.extraArgs }}
{{ . | toYaml | nindent 8 }}
>>>>>>> feat: extraArgs allows same flag multiple times
{{- end }}
{{- if .Values.repoServer.containerSecurityContext }}
securityContext: {{- toYaml .Values.repoServer.containerSecurityContext | nindent 10 }}