We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ce63b1 commit 6d8aae1Copy full SHA for 6d8aae1
charts/k6-operator/templates/deployment.yaml
@@ -11,7 +11,7 @@ metadata:
11
annotations:
12
{{- include "k6-operator.customAnnotations" . | default "" | nindent 4 }}
13
spec:
14
- replicas: 1
+ replicas: {{ .Values.manager.replicaCount }}
15
selector:
16
matchLabels:
17
{{- include "k6-operator.selectorLabels" . | nindent 6 }}
charts/k6-operator/values.yaml
@@ -39,6 +39,8 @@ authProxy:
39
readinessProbe: {}
40
41
manager:
42
+ # manager.replicaCount -- number of controller-manager replicas to run (default: 1)
43
+ replicaCount: 1
44
serviceAccount:
45
# manager.serviceAccount.name -- kubernetes service account for the k6 manager
46
name: k6-operator-controller
0 commit comments