Add archiveLogs option to Argo workflow controller config map (#32)
This commit is contained in:
parent
8e324206f8
commit
4a81cb0714
2 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,9 @@ data:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
artifactRepository:
|
artifactRepository:
|
||||||
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
{{- if or .Values.minio.install .Values.useDefaultArtifactRepo }}
|
||||||
|
{{- if .Values.artifactRepository.archiveLogs }}
|
||||||
|
archiveLogs: {{ .Values.artifactRepository.archiveLogs }}
|
||||||
|
{{- end }}
|
||||||
s3:
|
s3:
|
||||||
{{- if .Values.useStaticCredentials }}
|
{{- if .Values.useStaticCredentials }}
|
||||||
accessKeySecret:
|
accessKeySecret:
|
||||||
|
|
|
@ -79,6 +79,8 @@ ui:
|
||||||
useDefaultArtifactRepo: false
|
useDefaultArtifactRepo: false
|
||||||
useStaticCredentials: true
|
useStaticCredentials: true
|
||||||
artifactRepository:
|
artifactRepository:
|
||||||
|
# archiveLogs will archive the main container logs as an artifact
|
||||||
|
archiveLogs: false
|
||||||
s3:
|
s3:
|
||||||
# Note the `key` attribute is not the actual secret, it's the PATH to
|
# Note the `key` attribute is not the actual secret, it's the PATH to
|
||||||
# the contents in the associated secret, as defined by the `name` attribute.
|
# the contents in the associated secret, as defined by the `name` attribute.
|
||||||
|
|
Loading…
Reference in a new issue