File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apiVersion : v1
22description : jaeger-operator Helm chart for Kubernetes
33name : jaeger-operator
4- version : 2.50.1
4+ version : 2.51.0
55appVersion : 1.52.0
66home : https://www.jaegertracing.io/
77icon : https://www.jaegertracing.io/img/jaeger-icon-reverse-color.svg
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ The following table lists the configurable parameters of the jaeger-operator cha
6969| ` rbac.clusterRole ` | ClusterRole will be used by operator ServiceAccount | ` false ` |
7070| ` serviceAccount.name ` | Service account name to use. If not set and create is true, a name is generated using the fullname template | ` nil ` |
7171| ` extraEnv ` | Additional environment variables passed to the operator. For example: name: LOG-LEVEL value: debug | ` [] ` |
72+ | ` replicaCount ` | Desired number of operator pods | ` 1 ` |
7273| ` resources ` | K8s pod resources | ` None ` |
7374| ` nodeSelector ` | Node labels for pod assignment | ` {} ` |
7475| ` tolerations ` | Toleration labels for pod assignment | ` [] ` |
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ metadata:
99{{ . | toYaml | indent 4 }}
1010{{- end }}
1111spec :
12- replicas : 1
12+ replicas : {{ .Values.replicaCount }}
1313 selector :
1414 matchLabels :
1515{{ include "jaeger-operator.labels" . | indent 6 }}
5959 - start
6060 - {{ printf "--metrics-port=%v" .Values.metricsPort }}
6161 - {{ printf "--webhook-bind-port=%v" .Values.webhooks.port }}
62+ {{- $replicaCount := int .Values.replicaCount }}
63+ {{- if gt $replicaCount 1 }}
64+ - --leader-elect
65+ {{- end }}
6266 env :
6367 - name : WATCH_NAMESPACE
6468 {{- if .Values.rbac.clusterRole }}
Original file line number Diff line number Diff line change @@ -75,6 +75,9 @@ extraLabels: {}
7575 # Specifies extra labels for the operator deployment:
7676 # foo: bar
7777
78+ # Specifies desired number of operator pods
79+ replicaCount : 1
80+
7881resources : {}
7982 # limits:
8083 # cpu: 100m
You can’t perform that action at this time.
0 commit comments