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 }}
|
|
|
|
{{- 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 }}
|
2022-06-10 16:50:01 +00:00
|
|
|
{{- if or .Values.mainContainer.resources .Values.mainContainer.env .Values.mainContainer.securityContext}}
|
|
|
|
mainContainer:
|
2022-10-25 06:18:59 +00:00
|
|
|
imagePullPolicy: {{ default (.Values.images.pullPolicy) .Values.mainContainer.imagePullPolicy }}
|
2022-06-10 16:50:01 +00:00
|
|
|
{{- with .Values.mainContainer.resources }}
|
|
|
|
resources: {{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.mainContainer.env }}
|
|
|
|
env: {{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.mainContainer.securityContext }}
|
|
|
|
securityContext: {{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- if or .Values.executor.resources .Values.executor.env .Values.executor.securityContext}}
|
|
|
|
executor:
|
2022-10-25 06:18:59 +00:00
|
|
|
imagePullPolicy: {{ default (.Values.images.pullPolicy) .Values.executor.image.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 }}
|
2022-09-26 04:11:00 +00:00
|
|
|
{{- with .Values.artifactRepository.gcs }}
|
|
|
|
gcs: {{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- with .Values.artifactRepository.azure }}
|
|
|
|
azure: {{- toYaml . | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if and (not .Values.artifactRepository.gcs) (not .Values.artifactRepository.azure) }}
|
2021-05-21 12:19:05 +00:00
|
|
|
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 }}
|
2022-11-10 00:36:13 +00:00
|
|
|
{{- else }}
|
|
|
|
{{- if .Values.customArtifactRepository }}
|
|
|
|
artifactRepository: {{- toYaml .Values.customArtifactRepository | nindent 6 }}
|
|
|
|
{{- end }}
|
2022-09-26 04:11:00 +00:00
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- if .Values.controller.metricsConfig.enabled }}
|
|
|
|
metricsConfig:
|
2022-09-19 16:10:20 +00:00
|
|
|
enabled: {{ .Values.controller.metricsConfig.enabled }}
|
|
|
|
path: {{ .Values.controller.metricsConfig.path }}
|
|
|
|
port: {{ .Values.controller.metricsConfig.port }}
|
|
|
|
{{- if .Values.controller.metricsConfig.metricsTTL }}
|
|
|
|
metricsTTL: {{ .Values.controller.metricsConfig.metricsTTL }}
|
|
|
|
{{- end }}
|
|
|
|
ignoreErrors: {{ .Values.controller.metricsConfig.ignoreErrors }}
|
|
|
|
secure: {{ .Values.controller.metricsConfig.secure }}
|
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- if .Values.controller.telemetryConfig.enabled }}
|
|
|
|
telemetryConfig:
|
2022-09-19 16:10:20 +00:00
|
|
|
enabled: {{ .Values.controller.telemetryConfig.enabled }}
|
|
|
|
path: {{ .Values.controller.telemetryConfig.path }}
|
|
|
|
port: {{ .Values.controller.telemetryConfig.port }}
|
|
|
|
{{- if .Values.controller.telemetryConfig.metricsTTL }}
|
|
|
|
metricsTTL: {{ .Values.controller.telemetryConfig.metricsTTL }}
|
|
|
|
{{- end }}
|
|
|
|
ignoreErrors: {{ .Values.controller.telemetryConfig.ignoreErrors }}
|
|
|
|
secure: {{ .Values.controller.telemetryConfig.secure }}
|
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- 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 }}
|
2022-09-24 00:03:36 +00:00
|
|
|
sso:
|
|
|
|
issuer: {{ .issuer }}
|
|
|
|
clientId:
|
|
|
|
name: {{ .clientId.name }}
|
|
|
|
key: {{ .clientId.key }}
|
|
|
|
clientSecret:
|
|
|
|
name: {{ .clientSecret.name }}
|
|
|
|
key: {{ .clientSecret.key }}
|
|
|
|
redirectUrl: {{ .redirectUrl }}
|
2022-11-14 11:20:11 +00:00
|
|
|
{{- with .rbac }}
|
|
|
|
rbac:
|
|
|
|
enabled: {{ .enabled }}
|
|
|
|
{{- end }}
|
2022-09-24 00:03:36 +00:00
|
|
|
{{- if .scopes }}
|
|
|
|
scopes: {{ toYaml .scopes | nindent 8 }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .issuerAlias }}
|
|
|
|
issuerAlias: {{ .issuerAlias }}
|
|
|
|
{{- end }}
|
2022-09-27 09:53:04 +00:00
|
|
|
{{- if .sessionExpiry }}
|
2022-09-27 12:43:48 +00:00
|
|
|
sessionExpiry: {{ .sessionExpiry }}
|
2022-09-24 00:03:36 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- if .customGroupClaimName }}
|
|
|
|
customGroupClaimName: {{ .customGroupClaimName }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .userInfoPath }}
|
|
|
|
userInfoPath: {{ .userInfoPath }}
|
|
|
|
{{- end }}
|
|
|
|
{{- if .insecureSkipVerify }}
|
|
|
|
insecureSkipVerify: {{ .insecureSkipVerify }}
|
|
|
|
{{- end }}
|
2021-05-21 12:19:05 +00:00
|
|
|
{{- 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 }}
|
2022-11-26 01:08:11 +00:00
|
|
|
{{- with .Values.controller.retentionPolicy }}
|
|
|
|
retentionPolicy: {{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
2022-12-18 23:41:56 +00:00
|
|
|
{{- with .Values.emissary.images }}
|
|
|
|
images: {{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
2022-12-19 09:07:44 +00:00
|
|
|
nodeEvents:
|
|
|
|
enabled: {{ .Values.controller.nodeEvents.enabled }}
|
|
|
|
{{- with .Values.controller.kubeConfig }}
|
|
|
|
kubeConfig: {{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|