fix(argo-cd): set loglevel and logformat cli args without quotes (#3223)
Signed-off-by: Samy Djemaï <53857555+SamyDjemai@users.noreply.github.com>
This commit is contained in:
parent
edbac28217
commit
d198053abe
3 changed files with 6 additions and 6 deletions
|
|
@ -3,7 +3,7 @@ appVersion: v2.14.8
|
||||||
kubeVersion: ">=1.25.0-0"
|
kubeVersion: ">=1.25.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 7.8.17
|
version: 7.8.18
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
|
@ -27,4 +27,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
description: Moved to oliver006/redis_exporter to support mutli-arch images
|
description: Remove quotation marks around loglevel and logformat CLI args
|
||||||
|
|
|
||||||
|
|
@ -70,10 +70,10 @@ spec:
|
||||||
- --argocd-repo-server={{ template "argo-cd.repoServer.fullname" . }}:{{ .Values.repoServer.service.port }}
|
- --argocd-repo-server={{ template "argo-cd.repoServer.fullname" . }}:{{ .Values.repoServer.service.port }}
|
||||||
- --secret-name={{ .Values.notifications.secret.name }}
|
- --secret-name={{ .Values.notifications.secret.name }}
|
||||||
{{- with .Values.notifications.logLevel }}
|
{{- with .Values.notifications.logLevel }}
|
||||||
- --loglevel={{ . | quote }}
|
- --loglevel={{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.notifications.logFormat }}
|
{{- with .Values.notifications.logFormat }}
|
||||||
- --logformat={{ . | quote }}
|
- --logformat={{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- range .Values.notifications.extraArgs }}
|
{{- range .Values.notifications.extraArgs }}
|
||||||
- {{ . | squote }}
|
- {{ . | squote }}
|
||||||
|
|
|
||||||
|
|
@ -73,10 +73,10 @@ spec:
|
||||||
command:
|
command:
|
||||||
- /shared/argocd-dex
|
- /shared/argocd-dex
|
||||||
{{- with .Values.dex.logLevel }}
|
{{- with .Values.dex.logLevel }}
|
||||||
- --loglevel={{ . | quote }}
|
- --loglevel={{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.dex.logFormat }}
|
{{- with .Values.dex.logFormat }}
|
||||||
- --logformat={{ . | quote }}
|
- --logformat={{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
args:
|
args:
|
||||||
- rundex
|
- rundex
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue