allow setting log config for rollouts

Signed-off-by: drfaust92 <ilia.lazebnik@gmail.com>
This commit is contained in:
drfaust92 2023-12-13 17:20:53 +02:00
parent b49e7d9897
commit dde333c174
3 changed files with 5 additions and 5 deletions

View file

@ -18,5 +18,5 @@ annotations:
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: changed
- kind: feat
description: Allow setting log config for rollouts

View file

@ -47,7 +47,7 @@ spec:
- --metricsport={{ .Values.controller.containerPorts.metrics }}
- "--loglevel"
- "{{ .Values.controller.logging.level }}"
- "--log-format"
- "--logformat"
- "{{ .Values.controller.logging.format }}"
{{- if not .Values.clusterInstall }}
- --namespaced

View file

@ -46,9 +46,9 @@ spec:
imagePullPolicy: {{ .Values.dashboard.image.pullPolicy }}
args:
- "--loglevel"
- "{{ .Values.controller.logging.level }}"
- "--log-format"
- "{{ .Values.controller.logging.format }}"
- "{{ .Values.dashboard.logging.level }}"
- "--logformat"
- "{{ .Values.dashboard.logging.format }}"
{{- with .Values.dashboard.extraArgs }}
{{- toYaml . | nindent 8 }}
{{- end }}