2021-05-21 12:19:05 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: {{ template "argo-workflows.controller.fullname" . }}-configmap
|
|
|
|
labels:
|
|
|
|
{{- include "argo-workflows.labels" (dict "context" . "component" .Values.controller.name "name" "cm") | nindent 4 }}
|
|
|
|
data:
|
|
|
|
config: |
|
|
|
|
{{- if .Values.controller.instanceID.enabled }}
|
2021-07-20 18:10:29 +00:00
|
|
|
{{- if .Values.controller.instanceID.useReleaseName }}
|
2021-05-21 12:19:05 +00:00
|
|
|
instanceID: {{ .Release.Name }}
|
2021-07-20 18:10:29 +00:00
|
|
|
{{- else }}
|
2021-05-21 12:19:05 +00:00
|
|
|
instanceID: {{ .Values.controller.instanceID.explicitID }}
|
2021-07-20 18:10:29 +00:00
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- end }}
|
|
|
|
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
2021-09-13 16:21:04 +00:00
|
|
|
{{- with .Values.controller.containerRuntimeExecutors }}
|
|
|
|
containerRuntimeExecutors:
|
|
|
|
{{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- if .Values.controller.parallelism }}
|
|
|
|
parallelism: {{ .Values.controller.parallelism }}
|
|
|
|
{{- end }}
|
2021-11-22 09:32:27 +00:00
|
|
|
{{- if .Values.controller.resourceRateLimit }}
|
|
|
|
resourceRateLimit: {{ toYaml .Values.controller.resourceRateLimit | nindent 6 }}
|
|
|
|
{{- end }}
|
2021-08-27 12:59:29 +00:00
|
|
|
{{- with .Values.controller.namespaceParallelism }}
|
|
|
|
namespaceParallelism: {{ . }}
|
|
|
|
{{- end }}
|
2021-09-15 22:27:03 +00:00
|
|
|
{{- with .Values.controller.initialDelay }}
|
|
|
|
initialDelay: {{ . }}
|
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- if or .Values.executor.resources .Values.executor.env .Values.executor.securityContext}}
|
|
|
|
executor:
|
2021-10-19 15:34:58 +00:00
|
|
|
imagePullPolicy: {{ .Values.images.pullPolicy }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- with .Values.executor.resources }}
|
|
|
|
resources: {{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.executor.env }}
|
|
|
|
env: {{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.executor.securityContext }}
|
|
|
|
securityContext: {{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.useDefaultArtifactRepo }}
|
|
|
|
artifactRepository:
|
|
|
|
{{- if .Values.artifactRepository.archiveLogs }}
|
|
|
|
archiveLogs: {{ .Values.artifactRepository.archiveLogs }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.artifactRepository.gcs }}
|
|
|
|
gcs:
|
|
|
|
{{ toYaml .Values.artifactRepository.gcs | indent 8}}
|
|
|
|
{{- else }}
|
|
|
|
s3:
|
|
|
|
{{- if .Values.useStaticCredentials }}
|
|
|
|
accessKeySecret:
|
|
|
|
key: {{ .Values.artifactRepository.s3.accessKeySecret.key }}
|
|
|
|
name: {{ .Values.artifactRepository.s3.accessKeySecret.name }}
|
|
|
|
secretKeySecret:
|
|
|
|
key: {{ .Values.artifactRepository.s3.secretKeySecret.key }}
|
|
|
|
name: {{ .Values.artifactRepository.s3.secretKeySecret.name }}
|
|
|
|
{{- end }}
|
|
|
|
bucket: {{ .Values.artifactRepository.s3.bucket }}
|
|
|
|
endpoint: {{ .Values.artifactRepository.s3.endpoint }}
|
|
|
|
insecure: {{ .Values.artifactRepository.s3.insecure }}
|
|
|
|
{{- if .Values.artifactRepository.s3.keyFormat }}
|
|
|
|
keyFormat: {{ .Values.artifactRepository.s3.keyFormat | quote }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.artifactRepository.s3.region }}
|
|
|
|
region: {{ .Values.artifactRepository.s3.region }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.artifactRepository.s3.roleARN }}
|
|
|
|
roleARN: {{ .Values.artifactRepository.s3.roleARN }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .Values.artifactRepository.s3.useSDKCreds }}
|
|
|
|
useSDKCreds: {{ .Values.artifactRepository.s3.useSDKCreds }}
|
|
|
|
{{- end }}
|
2022-03-12 17:55:33 +00:00
|
|
|
{{- with .Values.artifactRepository.s3.encryptionOptions }}
|
|
|
|
encryptionOptions:
|
|
|
|
{{- toYaml . | nindent 10 }}
|
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- end}}
|
|
|
|
{{- if .Values.controller.metricsConfig.enabled }}
|
|
|
|
metricsConfig:
|
|
|
|
{{ toYaml .Values.controller.metricsConfig | indent 6}}{{- end }}
|
|
|
|
{{- if .Values.controller.telemetryConfig.enabled }}
|
|
|
|
telemetryConfig:
|
|
|
|
{{ toYaml .Values.controller.telemetryConfig | indent 6}}{{- end }}
|
|
|
|
{{- if .Values.controller.persistence }}
|
|
|
|
persistence:
|
|
|
|
{{ toYaml .Values.controller.persistence | indent 6 }}{{- end }}
|
|
|
|
{{- if .Values.controller.workflowDefaults }}
|
|
|
|
workflowDefaults:
|
|
|
|
{{ toYaml .Values.controller.workflowDefaults | indent 6 }}{{- end }}
|
|
|
|
{{- with .Values.server.sso }}
|
|
|
|
sso: {{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.controller.workflowRestrictions }}
|
|
|
|
workflowRestrictions: {{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.controller.links }}
|
|
|
|
links: {{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
2022-05-25 09:30:08 +00:00
|
|
|
{{- with .Values.controller.navColor }}
|
|
|
|
navColor: {{ . }}
|
|
|
|
{{- end }}
|