feat: extraArgs allows same flag multiple times
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
This commit is contained in:
parent
8b2fe04ee6
commit
d4c9011e17
3 changed files with 7 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
```
|
||||
|
|
|
@ -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 }}
|
||||
|
|
Loading…
Reference in a new issue