feat(argo-workflows): Adding initialDelay param to controller configmap (#926)
* Adding initialDelay param to controller configmap Signed-off-by: Brian Derdiarian <brianderdiarian@gmail.com> * Fixing change log Signed-off-by: Brian Derdiarian <brianderdiarian@gmail.com> * Ticking up chart version Signed-off-by: Brian Derdiarian <brianderdiarian@gmail.com> Signed-off-by: brianderdiarian <brianderdiarian@gmail.com> Co-authored-by: Vlad Losev <vladlosev@users.noreply.github.com>
This commit is contained in:
parent
a801d55710
commit
7274e3a094
3 changed files with 7 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.5.1
|
version: 0.5.2
|
||||||
appVersion: "v3.1.8"
|
appVersion: "v3.1.8"
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
|
@ -15,4 +15,4 @@ maintainers:
|
||||||
- name: benjaminws
|
- name: benjaminws
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Add controller containerRuntimeExecutors param to configmap"
|
- "[Added]: Add controller initialDelay param to configmap"
|
||||||
|
|
|
@ -24,6 +24,9 @@ data:
|
||||||
{{- with .Values.controller.namespaceParallelism }}
|
{{- with .Values.controller.namespaceParallelism }}
|
||||||
namespaceParallelism: {{ . }}
|
namespaceParallelism: {{ . }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with .Values.controller.initialDelay }}
|
||||||
|
initialDelay: {{ . }}
|
||||||
|
{{- end }}
|
||||||
{{- if or .Values.executor.resources .Values.executor.env .Values.executor.securityContext}}
|
{{- if or .Values.executor.resources .Values.executor.env .Values.executor.securityContext}}
|
||||||
executor:
|
executor:
|
||||||
{{- with .Values.executor.resources }}
|
{{- with .Values.executor.resources }}
|
||||||
|
|
|
@ -44,6 +44,8 @@ controller:
|
||||||
parallelism:
|
parallelism:
|
||||||
# Limits the maximum number of incomplete workflows in a namespace
|
# Limits the maximum number of incomplete workflows in a namespace
|
||||||
namespaceParallelism:
|
namespaceParallelism:
|
||||||
|
# Resolves ongoing, uncommon AWS EKS bug: https://github.com/argoproj/argo-workflows/pull/4224
|
||||||
|
initialDelay:
|
||||||
# podAnnotations is an optional map of annotations to be applied to the controller Pods
|
# podAnnotations is an optional map of annotations to be applied to the controller Pods
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
# Optional labels to add to the controller pods
|
# Optional labels to add to the controller pods
|
||||||
|
|
Loading…
Reference in a new issue