fix: whitespaces and new lines
Signed-off-by: Carlos Juan Gómez Peñalver <carlosjuangp@gmail.com>
This commit is contained in:
parent
57630d6364
commit
73177026e4
4 changed files with 11 additions and 7 deletions
|
@ -57,7 +57,7 @@ spec:
|
|||
- {{ template "argo-cd.redis.fullname" . }}:{{ .Values.redis.servicePort }}
|
||||
{{- end }}
|
||||
{{- with .Values.controller.extraArgs }}
|
||||
{{ . | toYaml | nindent 8 }}
|
||||
{{- . | toYaml | nindent 8 }}
|
||||
{{- end }}
|
||||
image: {{ default .Values.global.image.repository .Values.controller.image.repository }}:{{ default .Values.global.image.tag .Values.controller.image.tag }}
|
||||
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.controller.image.imagePullPolicy }}
|
||||
|
|
|
@ -54,8 +54,8 @@ spec:
|
|||
{{- end }}
|
||||
- --loglevel
|
||||
- {{ .Values.repoServer.logLevel }}
|
||||
{{- with .Values.controller.extraArgs }}
|
||||
{{ . | toYaml | nindent 8 }}
|
||||
{{- with .Values.repoServer.extraArgs }}
|
||||
{{- . | toYaml | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.repoServer.containerSecurityContext }}
|
||||
securityContext: {{- toYaml .Values.repoServer.containerSecurityContext | nindent 10 }}
|
||||
|
|
|
@ -62,8 +62,8 @@ spec:
|
|||
- --redis
|
||||
- {{ template "argo-cd.redis.fullname" . }}:{{ .Values.redis.servicePort }}
|
||||
{{- end }}
|
||||
{{- with .Values.controller.extraArgs }}
|
||||
{{ . | toYaml | nindent 8 }}
|
||||
{{- with .Values.server.extraArgs }}
|
||||
{{- . | toYaml | nindent 8 }}
|
||||
{{- end }}
|
||||
{{- if .Values.server.containerSecurityContext }}
|
||||
securityContext: {{- toYaml .Values.server.containerSecurityContext | nindent 10 }}
|
||||
|
|
|
@ -284,9 +284,13 @@ server:
|
|||
imagePullPolicy: # IfNotPresent
|
||||
|
||||
## Additional command line arguments to pass to argocd-server
|
||||
## --argument=value
|
||||
## - --argument=value
|
||||
## or
|
||||
## - --argument
|
||||
## - value
|
||||
extraArgs: []
|
||||
# - --insecure=true
|
||||
# - --insecure
|
||||
# - "true"
|
||||
|
||||
## Environment variables to pass to argocd-server
|
||||
##
|
||||
|
|
Loading…
Reference in a new issue