You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| controller.podAnnotations | object | `{}` | podAnnotations is an optional map of annotations to be applied to the controller Pods |
114
+
| controller.podGCDeleteDelayDuration | string | `5s` (Argo Workflows default) | The duration in seconds before the pods in the GC queue get deleted. A zero value indicates that the pods will be deleted immediately. |
115
+
| controller.podGCGracePeriodSeconds | string | `30` seconds (Kubernetes default) | Specifies the duration in seconds before a terminating pod is forcefully killed. A zero value indicates that the pod will be forcefully terminated immediately. |
114
116
| controller.podLabels | object | `{}` | Optional labels to add to the controller pods |
115
117
| controller.podSecurityContext | object | `{}` | SecurityContext to set on the controller pods |
116
118
| controller.priorityClassName | string | `""` | Leverage a PriorityClass to ensure your pods survive resource shortages. |
Copy file name to clipboardExpand all lines: charts/argo-workflows/values.yaml
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -316,6 +316,14 @@ controller:
316
316
# # volume name when mounting the secret, default to kubeconfig
317
317
# volumeName: kube-config-volume
318
318
319
+
# -- Specifies the duration in seconds before a terminating pod is forcefully killed. A zero value indicates that the pod will be forcefully terminated immediately.
320
+
# @default -- `30` seconds (Kubernetes default)
321
+
podGCGracePeriodSeconds:
322
+
323
+
# -- The duration in seconds before the pods in the GC queue get deleted. A zero value indicates that the pods will be deleted immediately.
324
+
# @default -- `5s` (Argo Workflows default)
325
+
podGCDeleteDelayDuration: ""
326
+
319
327
# mainContainer adds default config for main container that could be overriden in workflows template
320
328
mainContainer:
321
329
# -- imagePullPolicy to apply to Workflow main container. Defaults to `.Values.images.pullPolicy`.
0 commit comments