adding extraArgs for argocd-server.
This is useful if you need to change the basehref or use insecure when using ingress https://github.com/argoproj/argo-cd/blob/master/docs/ingress.md
This commit is contained in:
parent
82ab0eaa27
commit
697d0f66e6
2 changed files with 9 additions and 2 deletions
|
@ -36,7 +36,13 @@ spec:
|
|||
- name: argocd-server
|
||||
image: {{ .Values.server.image.repository }}:{{ .Values.server.image.tag }}
|
||||
imagePullPolicy: {{ .Values.server.image.pullPolicy }}
|
||||
command: [argocd-server, --staticassets, /shared/app]
|
||||
command:
|
||||
- argocd-server
|
||||
- --staticassets
|
||||
- /shared/app
|
||||
{{- range .Values.server.extraArgs }}
|
||||
- {{. | quote }}
|
||||
{{- end}}
|
||||
volumeMounts:
|
||||
- mountPath: /shared
|
||||
name: static-files
|
||||
|
|
|
@ -20,6 +20,7 @@ server:
|
|||
repository: argoproj/argocd-ui
|
||||
tag: v0.11.0
|
||||
pullPolicy: Always
|
||||
extraArgs: []
|
||||
|
||||
repoServer:
|
||||
containerPort: 8081
|
||||
|
|
Loading…
Reference in a new issue