add option for --insecure flag with argocd-server, Signed-off-by: Didrik Finnøy djfinnoy@protonmail.com
Signed-off-by: Didrik Finnøy <djfinnoy@protonmail.com>
This commit is contained in:
parent
3ba4cdb1ca
commit
1609e818ed
2 changed files with 5 additions and 0 deletions
|
@ -43,6 +43,9 @@ spec:
|
||||||
command:
|
command:
|
||||||
- argocd-server
|
- argocd-server
|
||||||
- --staticassets
|
- --staticassets
|
||||||
|
{{- if .Values.server.insecure }}
|
||||||
|
- --insecure
|
||||||
|
{{- end }}
|
||||||
- /shared/app
|
- /shared/app
|
||||||
- --repo-server
|
- --repo-server
|
||||||
- {{ template "argo-cd.repoServer.fullname" . }}:{{ .Values.repoServer.service.port }}
|
- {{ template "argo-cd.repoServer.fullname" . }}:{{ .Values.repoServer.service.port }}
|
||||||
|
|
|
@ -373,6 +373,8 @@ server:
|
||||||
tag: # defaults to global.image.tag
|
tag: # defaults to global.image.tag
|
||||||
imagePullPolicy: # IfNotPresent
|
imagePullPolicy: # IfNotPresent
|
||||||
|
|
||||||
|
insecure: false # use --insecure flag with argocd-server
|
||||||
|
|
||||||
## Additional command line arguments to pass to argocd-server
|
## Additional command line arguments to pass to argocd-server
|
||||||
##
|
##
|
||||||
extraArgs: []
|
extraArgs: []
|
||||||
|
|
Loading…
Reference in a new issue