-
Notifications
You must be signed in to change notification settings - Fork 351
/
Copy pathvalues.yaml
110 lines (88 loc) · 2.26 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# Default values for jaeger-operator.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
repository: jaegertracing/jaeger-operator
tag: 1.61.0
pullPolicy: IfNotPresent
imagePullSecrets: []
certs:
issuer:
create: true
name: ""
certificate:
create: true
namespace: ""
secretName: ""
# Specify the cert-manager issuer kind to use an existing cert-manager
# issuer; typically Issuer or ClusterIssuer
# This field will be ignored if issuer.create is true
issuerKind: Issuer
webhooks:
mutatingWebhook:
create: true
validatingWebhook:
create: true
port: 9443
service:
annotations: {}
create: true
name: ""
jaeger:
# Specifies whether Jaeger instance should be created
create: false
# namespace where Jaeger resource should be created default to .Release.Namespace
namespace:
spec: {}
rbac:
# Specifies whether RBAC resources should be created
create: true
pspEnabled: false
clusterRole: false
service:
type: ClusterIP
# Specify a specific node port when type is NodePort
# nodePort: 32500
# Annotations for service
annotations: {}
serviceAccount:
# Specifies whether a ServiceAccount should be created
create: true
# The name of the ServiceAccount to use.
# If not set and create is true, a name is generated using the fullname template
name:
# Annotations for serviceAccount
annotations: {}
extraArgs: {}
# Specifies extra command line arguments arguments passed to the operator:
# foo: bar
# Specifies extra environment variables passed to the operator:
extraEnv: []
# Specifies log-level for the operator:
# - name: LOG-LEVEL
# value: debug
serviceExtraLabels: {}
# Specifies extra labels for the operator-metric service:
# foo: bar
extraLabels: {}
# Specifies extra labels for the operator deployment:
# foo: bar
# Specifies desired number of operator pods
replicaCount: 1
resources: {}
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
nodeSelector: {}
tolerations: []
topologySpreadConstraints: []
affinity: {}
securityContext: {}
containerSecurityContext: {}
priorityClassName:
# Specifies weather host network should be used
hostNetwork: false
metricsPort: 8383