Skip to content
Snippets Groups Projects
Commit cd24746a authored by JustusBunsi's avatar JustusBunsi Committed by Derek Su
Browse files

Allow customizing helper pod

parent 549c7314
No related branches found
No related tags found
No related merge requests found
......@@ -36,8 +36,13 @@ data:
helperPod.yaml: |-
apiVersion: v1
kind: Pod
namespace: {{ default .Release.Namespace .Values.helperPod.namespaceOverride }}
metadata:
name: helper-pod
name: {{ .Values.helperPod.name }}
{{- with .Values.helperPod.annotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
priorityClassName: system-node-critical
tolerations:
......
......@@ -158,6 +158,12 @@ configmap:
set -eu
rm -rf "$VOL_DIR"
helperPod:
# Allows to run the helper pod in another namespace. Uses release namespace by default.
namespaceOverride: ""
name: "helper-pod"
annotations: {}
# Number of provisioner worker threads to call provision/delete simultaneously.
# workerThreads: 4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment