File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed
Expand file tree Collapse file tree 4 files changed +13
-1
lines changed 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.52 .0
4+ version : 2.53 .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 @@ -68,6 +68,7 @@ The following table lists the configurable parameters of the jaeger-operator cha
6868| ` rbac.pspEnabled ` | Pod security policy for pod will be created and included in rbac role | ` false ` |
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 ` |
71+ | ` extraArgs ` | Additional command line arguments arguments passed to the operator | ` {} ` |
7172| ` extraEnv ` | Additional environment variables passed to the operator. For example: name: LOG-LEVEL value: debug | ` [] ` |
7273| ` replicaCount ` | Desired number of operator pods | ` 1 ` |
7374| ` resources ` | K8s pod resources | ` None ` |
Original file line number Diff line number Diff line change 6363 {{- if gt $replicaCount 1 }}
6464 - --leader-elect
6565 {{- end }}
66+ {{- range $key, $value := .Values.extraArgs }}
67+ {{- if $value }}
68+ - --{{ $key }}={{ $value }}
69+ {{- else }}
70+ - --{{ $key }}
71+ {{- end }}
72+ {{- end }}
6673 env :
6774 - name : WATCH_NAMESPACE
6875 {{- if .Values.rbac.clusterRole }}
Original file line number Diff line number Diff line change @@ -61,6 +61,10 @@ serviceAccount:
6161 # Annotations for serviceAccount
6262 annotations : {}
6363
64+ extraArgs : {}
65+ # Specifies extra command line arguments arguments passed to the operator:
66+ # foo: bar
67+
6468# Specifies extra environment variables passed to the operator:
6569extraEnv : []
6670 # Specifies log-level for the operator:
You can’t perform that action at this time.
0 commit comments