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>pull/933/head argo-workflows-0.5.2
parent
a801d55710
commit
7274e3a094
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
name: argo-workflows
|
||||
description: A Helm chart for Argo Workflows
|
||||
type: application
|
||||
version: 0.5.1
|
||||
version: 0.5.2
|
||||
appVersion: "v3.1.8"
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo-workflows/master/docs/assets/argo.png
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
|
@ -15,4 +15,4 @@ maintainers:
|
|||
- name: benjaminws
|
||||
annotations:
|
||||
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 }}
|
||||
namespaceParallelism: {{ . }}
|
||||
{{- end }}
|
||||
{{- with .Values.controller.initialDelay }}
|
||||
initialDelay: {{ . }}
|
||||
{{- end }}
|
||||
{{- if or .Values.executor.resources .Values.executor.env .Values.executor.securityContext}}
|
||||
executor:
|
||||
{{- with .Values.executor.resources }}
|
||||
|
|
|
@ -44,6 +44,8 @@ controller:
|
|||
parallelism:
|
||||
# Limits the maximum number of incomplete workflows in a namespace
|
||||
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: {}
|
||||
# Optional labels to add to the controller pods
|
||||
|
|
Loading…
Reference in New Issue