We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1124dc2 commit c2a2117Copy full SHA for c2a2117
charts/testkube-runner/templates/deployment.yaml
@@ -163,6 +163,10 @@ spec:
163
securityContext: {{ include "testkube-runner.containerSecurityContext" . | nindent 12 }}
164
env:
165
# Runner configuration
166
+ {{- if not .Values.runner.enabled }}
167
+ - name: "DISABLE_RUNNER"
168
+ value: "true"
169
+ {{- end }}
170
{{- if .Values.runner.secretRef.name }}
171
- name: "TESTKUBE_PRO_AGENT_ID"
172
valueFrom:
charts/testkube-runner/values.yaml
@@ -10,6 +10,8 @@ global:
10
enabled: false
11
12
runner:
13
+ ## Enable or disable the runner
14
+ enabled: true
15
## Agent ID
16
id: ""
17
## Organization ID
0 commit comments