-
Notifications
You must be signed in to change notification settings - Fork 14
/
values.yaml
284 lines (233 loc) · 6.59 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
# -- String to partially override fullname template (will maintain the release name)
nameOverride: ""
# -- String to fully override fullname template
fullnameOverride: ""
namespaceOverride: ""
image:
registry: docker.io
repository: webdevops/azure-metrics-exporter
tag: ""
sha: ""
pullPolicy: IfNotPresent
replicas: 1
minReadySeconds: 10
terminationGracePeriodSeconds: 60
env: {}
# DEBUG: "true"
# VERBOSE: "true"
extraEnv: []
# - name: REDIS_PASSWORD
# valueFrom:
# secretKeyRef:
# key: redis-password
# name: redis-config-0.0.2
secretsEnableTemplateFunctions: false
secrets: {}
# secretName: secretValue
resources:
limits:
cpu: 500m
memory: 200Mi
requests:
cpu: 100m
memory: 200Mi
nodeSelector:
kubernetes.io/os: linux
affinity: {}
tolerations: []
restartPolicy: Always
priorityClassName: ""
config: ""
startupProbe:
tcpSocket:
port: http-metrics
initialDelaySeconds: 15
periodSeconds: 10
failureThreshold: 5
livenessProbe:
tcpSocket:
port: http-metrics
initialDelaySeconds: 15
periodSeconds: 30
failureThreshold: 5
readinessProbe:
tcpSocket:
port: http-metrics
initialDelaySeconds: 15
periodSeconds: 30
failureThreshold: 5
serviceAccount:
create: true
name: azure-metrics-exporter
labels: {}
annotations: {}
## Customize the strategy if set
strategy: {}
podLabels: {}
podAnnotations: {}
securityContext:
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
supplementalGroups: [1000]
runAsNonRoot: true
seccompProfile:
type: RuntimeDefault
containerSecurityContext:
readOnlyRootFilesystem: true
runAsNonRoot: true
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
# -- registry secret names as an array
imagePullSecrets: []
service:
type: ClusterIP
port: 8080
targetPort: 8080
appProtocol: http
nodePort:
portName: http-metrics
annotations: {}
labels: {}
netpol:
enabled: true
policyTypes:
- Ingress
- Egress
ingress: []
egress:
# DNS
- ports:
- port: 53
protocol: TCP
- ports:
- port: 53
protocol: UDP
# HTTPS (Azure REST api)
- ports:
- port: 443
protocol: TCP
prometheus:
monitor:
enabled: false
jobLabel: ""
additionalAnnotations: {}
additionalLabels: {}
scheme: http
basicAuth: {}
bearerTokenFile:
tlsConfig: {}
## proxyUrl: URL of a proxy that should be used for scraping.
##
proxyUrl: ""
relabelings: []
metricRelabelings: []
interval: ""
scrapeTimeout: ""
## SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.
##
sampleLimit: 0
## TargetLimit defines a limit on the number of scraped targets that will be accepted.
##
targetLimit: 0
## Per-scrape limit on number of labels that will be accepted for a sample. Only valid in Prometheus versions 2.27.0 and newer.
##
labelLimit: 0
## Per-scrape limit on length of labels name that will be accepted for a sample. Only valid in Prometheus versions 2.27.0 and newer.
##
labelNameLengthLimit: 0
## Per-scrape limit on length of labels value that will be accepted for a sample. Only valid in Prometheus versions 2.27.0 and newer.
##
labelValueLengthLimit: 0
namespaceSelector: {}
## azure metrics probe scrapes
metricProbes:
jobLabel: ""
scheme: http
path: /probe/metrics/list
basicAuth: {}
bearerTokenFile:
tlsConfig: {}
## proxyUrl: URL of a proxy that should be used for scraping.
##
proxyUrl: ""
relabelings: []
metricRelabelings: []
interval: ""
scrapeTimeout: ""
## SampleLimit defines per-scrape limit on number of scraped samples that will be accepted.
##
sampleLimit: 0
## TargetLimit defines a limit on the number of scraped targets that will be accepted.
##
targetLimit: 0
## Per-scrape limit on number of labels that will be accepted for a sample. Only valid in Prometheus versions 2.27.0 and newer.
##
labelLimit: 0
## Per-scrape limit on length of labels name that will be accepted for a sample. Only valid in Prometheus versions 2.27.0 and newer.
##
labelNameLengthLimit: 0
## Per-scrape limit on length of labels value that will be accepted for a sample. Only valid in Prometheus versions 2.27.0 and newer.
##
labelValueLengthLimit: 0
# global probe params (will be merged with probes[].params)
# and can act as defaults
params: {}
probes: []
# - name: appgateway
# params:
# name: ["azure_metrics_appgateway"]
# resourceType: ["Microsoft.Network/applicationGateways"]
# metric:
# - Throughput
# - UnhealthyHostCount
# - HealthyHostCount
# - TotalRequests
# - AvgRequestCountPerHealthyHost
# - FailedRequests
# - ResponseStatus
# - CurrentConnections
# - NewConnectionsPerSecond
# - CapacityUnits
# - FixedBillableCapacityUnits
# - EstimatedBilledCapacityUnits
# - ComputeUnits
# - BackendResponseStatus
# - BytesSent
# - BytesReceived
# - ClientRtt
# - BackendConnectTime
# - BackendFirstByteResponseTime
# - BackendLastByteResponseTime
# interval: [PT1M]
# timespan: [PT1M]
# aggregation: [average, total]
# Enable vertical pod autoscaler support
verticalPodAutoscaler:
enabled: false
# Recommender responsible for generating recommendation for the object.
# List should be empty (then the default recommender will generate the recommendation)
# or contain exactly one recommender.
# recommenders:
# - name: custom-recommender-performance
# List of resources that the vertical pod autoscaler can control. Defaults to cpu and memory
controlledResources: []
# Specifies which resource values should be controlled: RequestsOnly or RequestsAndLimits.
# controlledValues: RequestsAndLimits
# Define the max allowed resources for the pod
maxAllowed: {}
# cpu: 200m
# memory: 100Mi
# Define the min allowed resources for the pod
minAllowed: {}
# cpu: 200m
# memory: 100Mi
updatePolicy:
# Specifies minimal number of replicas which need to be alive for VPA Updater to attempt pod eviction
# minReplicas: 1
# Specifies whether recommended updates are applied when a Pod is started and whether recommended updates
# are applied during the life of a Pod. Possible values are "Off", "Initial", "Recreate", and "Auto".
updateMode: Auto
global:
imagePullSecrets: []