Add the ability to change the namespace that the controller watches for workflows
This commit is contained in:
parent
e3371f333f
commit
0bc6afdc0d
2 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,9 @@ data:
|
|||
{{- end }}
|
||||
{{- end }}
|
||||
containerRuntimeExecutor: {{ .Values.controller.containerRuntimeExecutor }}
|
||||
{{- if .Values.controller.namespace }}
|
||||
namespace: {{ .Values.controller.namespace }}
|
||||
{{- end }}
|
||||
{{- if or .Values.executor.resources .Values.executor.env .Values.executor.securityContext}}
|
||||
executor:
|
||||
{{- with .Values.executor.resources }}
|
||||
|
|
|
@ -36,6 +36,8 @@ controller:
|
|||
image:
|
||||
# Overrides .images.tag if defined.
|
||||
tag: ""
|
||||
# namespace is a label selector filter to limit the controller's watch to a specific namespace
|
||||
# namespace:
|
||||
# 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 a new issue