-
Notifications
You must be signed in to change notification settings - Fork 0
/
value.yml
1969 lines (1969 loc) · 44 KB
/
value.yml
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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
additionalPrometheusRulesMap: {}
alertmanager:
alertmanagerSpec:
additionalConfig: {}
additionalConfigString: ""
additionalPeers: []
affinity: {}
alertmanagerConfigMatcherStrategy: {}
alertmanagerConfigNamespaceSelector: {}
alertmanagerConfigSelector: {}
alertmanagerConfiguration: {}
automountServiceAccountToken: true
clusterAdvertiseAddress: false
clusterGossipInterval: ""
clusterPeerTimeout: ""
clusterPushpullInterval: ""
configMaps: []
containers: []
externalUrl: null
forceEnableClusterMode: false
image:
registry: quay.io
repository: prometheus/alertmanager
sha: ""
tag: v0.27.0
initContainers: []
listenLocal: false
logFormat: logfmt
logLevel: info
minReadySeconds: 0
nodeSelector: {}
paused: false
podAntiAffinity: ""
podAntiAffinityTopologyKey: kubernetes.io/hostname
podMetadata: {}
portName: http-web
priorityClassName: ""
replicas: 1
resources: {}
retention: 120h
routePrefix: /
scheme: ""
secrets: []
securityContext:
fsGroup: 2000
runAsGroup: 2000
runAsNonRoot: true
runAsUser: 1000
seccompProfile:
type: RuntimeDefault
storage: {}
tlsConfig: {}
tolerations: []
topologySpreadConstraints: []
useExistingSecret: false
volumeMounts: []
volumes: []
web: {}
annotations: {}
apiVersion: v2
config:
global:
resolve_timeout: 5m
inhibit_rules:
- equal:
- namespace
- alertname
source_matchers:
- severity = critical
target_matchers:
- severity =~ warning|info
- equal:
- namespace
- alertname
source_matchers:
- severity = warning
target_matchers:
- severity = info
- equal:
- namespace
source_matchers:
- alertname = InfoInhibitor
target_matchers:
- severity = info
- target_matchers:
- alertname = InfoInhibitor
receivers:
- name: "null"
route:
group_by:
- namespace
group_interval: 5m
group_wait: 30s
receiver: "null"
repeat_interval: 12h
routes:
- matchers:
- alertname = "Watchdog"
receiver: "null"
templates:
- /etc/alertmanager/config/*.tmpl
enabled: true
extraSecret:
annotations: {}
data: {}
ingress:
annotations: {}
enabled: false
hosts: []
labels: {}
paths: []
tls: []
ingressPerReplica:
annotations: {}
enabled: false
hostDomain: ""
hostPrefix: ""
labels: {}
paths: []
tlsSecretName: ""
tlsSecretPerReplica:
enabled: false
prefix: alertmanager
podDisruptionBudget:
enabled: false
maxUnavailable: ""
minAvailable: 1
secret:
annotations: {}
service:
additionalPorts: []
annotations: {}
clusterIP: ""
externalIPs: []
externalTrafficPolicy: Cluster
labels: {}
loadBalancerIP: ""
loadBalancerSourceRanges: []
nodePort: 30903
port: 9093
sessionAffinity: None
sessionAffinityConfig:
clientIP:
timeoutSeconds: 10800
targetPort: 9093
type: ClusterIP
serviceAccount:
annotations: {}
automountServiceAccountToken: true
create: true
name: ""
serviceMonitor:
additionalEndpoints: []
additionalLabels: {}
bearerTokenFile: null
enableHttp2: true
interval: ""
labelLimit: 0
labelNameLengthLimit: 0
labelValueLengthLimit: 0
metricRelabelings: []
proxyUrl: ""
relabelings: []
sampleLimit: 0
scheme: ""
selfMonitor: true
targetLimit: 0
tlsConfig: {}
servicePerReplica:
annotations: {}
enabled: false
externalTrafficPolicy: Cluster
loadBalancerSourceRanges: []
nodePort: 30904
port: 9093
targetPort: 9093
type: ClusterIP
stringConfig: ""
templateFiles: {}
tplConfig: false
cleanPrometheusOperatorObjectNames: false
commonLabels: {}
coreDns:
enabled: true
service:
enabled: true
port: 9153
targetPort: 9153
serviceMonitor:
additionalLabels: {}
enabled: true
interval: ""
jobLabel: jobLabel
labelLimit: 0
labelNameLengthLimit: 0
labelValueLengthLimit: 0
metricRelabelings: []
port: http-metrics
proxyUrl: ""
relabelings: []
sampleLimit: 0
selector: {}
targetLimit: 0
crds:
enabled: true
global:
imagePullSecrets: []
imageRegistry: ""
rbac:
create: true
createAggregateClusterRoles: false
pspAnnotations: {}
pspEnabled: false
customRules: {}
defaultRules:
additionalAggregationLabels: []
additionalRuleAnnotations: {}
additionalRuleGroupAnnotations:
alertmanager: {}
configReloaders: {}
etcd: {}
general: {}
k8sContainerCpuUsageSecondsTotal: {}
k8sContainerMemoryCache: {}
k8sContainerMemoryRss: {}
k8sContainerMemorySwap: {}
k8sContainerResource: {}
k8sPodOwner: {}
kubeApiserverAvailability: {}
kubeApiserverBurnrate: {}
kubeApiserverHistogram: {}
kubeApiserverSlos: {}
kubeControllerManager: {}
kubePrometheusGeneral: {}
kubePrometheusNodeRecording: {}
kubeProxy: {}
kubeSchedulerAlerting: {}
kubeSchedulerRecording: {}
kubeStateMetrics: {}
kubelet: {}
kubernetesApps: {}
kubernetesResources: {}
kubernetesStorage: {}
kubernetesSystem: {}
network: {}
node: {}
nodeExporterAlerting: {}
nodeExporterRecording: {}
prometheus: {}
prometheusOperator: {}
additionalRuleGroupLabels:
alertmanager: {}
configReloaders: {}
etcd: {}
general: {}
k8sContainerCpuUsageSecondsTotal: {}
k8sContainerMemoryCache: {}
k8sContainerMemoryRss: {}
k8sContainerMemorySwap: {}
k8sContainerResource: {}
k8sPodOwner: {}
kubeApiserverAvailability: {}
kubeApiserverBurnrate: {}
kubeApiserverHistogram: {}
kubeApiserverSlos: {}
kubeControllerManager: {}
kubePrometheusGeneral: {}
kubePrometheusNodeRecording: {}
kubeProxy: {}
kubeSchedulerAlerting: {}
kubeSchedulerRecording: {}
kubeStateMetrics: {}
kubelet: {}
kubernetesApps: {}
kubernetesResources: {}
kubernetesStorage: {}
kubernetesSystem: {}
network: {}
node: {}
nodeExporterAlerting: {}
nodeExporterRecording: {}
prometheus: {}
prometheusOperator: {}
additionalRuleLabels: {}
annotations: {}
appNamespacesTarget: .*
create: true
disabled: {}
keepFiringFor: ""
labels: {}
rules:
alertmanager: true
configReloaders: true
etcd: true
general: true
k8sContainerCpuUsageSecondsTotal: true
k8sContainerMemoryCache: true
k8sContainerMemoryRss: true
k8sContainerMemorySwap: true
k8sContainerMemoryWorkingSetBytes: true
k8sContainerResource: true
k8sPodOwner: true
kubeApiserverAvailability: true
kubeApiserverBurnrate: true
kubeApiserverHistogram: true
kubeApiserverSlos: true
kubeControllerManager: true
kubePrometheusGeneral: true
kubePrometheusNodeRecording: true
kubeProxy: true
kubeSchedulerAlerting: true
kubeSchedulerRecording: true
kubeStateMetrics: true
kubelet: true
kubernetesApps: true
kubernetesResources: true
kubernetesStorage: true
kubernetesSystem: true
network: true
node: true
nodeExporterAlerting: true
nodeExporterRecording: true
prometheus: true
prometheusOperator: true
windows: true
runbookUrl: https://runbooks.prometheus-operator.dev/runbooks
extraManifests: []
fullnameOverride: ""
global:
imagePullSecrets: []
imageRegistry: ""
rbac:
create: true
createAggregateClusterRoles: false
pspAnnotations: {}
pspEnabled: false
grafana:
additionalDataSources: []
admin:
existingSecret: ""
passwordKey: admin-password
userKey: admin-user
adminPassword: prom-operator
adminUser: admin
affinity: {}
alerting: {}
assertNoLeakedSecrets: true
automountServiceAccountToken: true
autoscaling:
behavior: {}
enabled: false
maxReplicas: 5
minReplicas: 1
targetCPU: "60"
targetMemory: ""
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
seccompProfile:
type: RuntimeDefault
createConfigmap: true
dashboardProviders: {}
dashboards: {}
dashboardsConfigMaps: {}
datasources: {}
defaultDashboardsEditable: true
defaultDashboardsEnabled: true
defaultDashboardsTimezone: utc
deleteDatasources: []
deploymentStrategy:
type: RollingUpdate
dnsConfig: {}
dnsPolicy: null
downloadDashboards:
env: {}
envFromSecret: ""
envValueFrom: {}
resources: {}
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
seccompProfile:
type: RuntimeDefault
downloadDashboardsImage:
pullPolicy: IfNotPresent
registry: docker.io
repository: curlimages/curl
sha: ""
tag: 7.85.0
enableKubeBackwardCompatibility: false
enableServiceLinks: true
enabled: true
env: {}
envFromConfigMaps: []
envFromSecret: ""
envFromSecrets: []
envRenderSecret: {}
envValueFrom: {}
extraConfigmapMounts: []
extraContainerVolumes: []
extraContainers: ""
extraEmptyDirMounts: []
extraExposePorts: []
extraInitContainers: []
extraLabels: {}
extraObjects: []
extraSecretMounts: []
extraVolumeMounts: []
extraVolumes: []
forceDeployDashboards: false
forceDeployDatasources: false
global:
imagePullSecrets: []
imageRegistry: ""
rbac:
create: true
createAggregateClusterRoles: false
pspAnnotations: {}
pspEnabled: false
gossipPortName: gossip
grafana.ini:
analytics:
check_for_updates: true
grafana_net:
url: https://grafana.net
log:
mode: console
paths:
data: /var/lib/grafana/
logs: /var/log/grafana
plugins: /var/lib/grafana/plugins
provisioning: /etc/grafana/provisioning
server:
domain: '{{ if (and .Values.ingress.enabled .Values.ingress.hosts) }}{{ .Values.ingress.hosts
| first }}{{ else }}''''{{ end }}'
headlessService: false
hostAliases: []
image:
pullPolicy: IfNotPresent
pullSecrets: []
registry: docker.io
repository: grafana/grafana
sha: ""
tag: ""
imageRenderer:
affinity: {}
autoscaling:
behavior: {}
enabled: false
maxReplicas: 5
minReplicas: 1
targetCPU: "60"
targetMemory: ""
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
seccompProfile:
type: RuntimeDefault
deploymentStrategy: {}
enabled: false
env:
HTTP_HOST: 0.0.0.0
envValueFrom: {}
grafanaProtocol: http
grafanaSubPath: ""
hostAliases: []
image:
pullPolicy: Always
registry: docker.io
repository: grafana/grafana-image-renderer
sha: ""
tag: latest
networkPolicy:
extraIngressSelectors: []
limitEgress: false
limitIngress: true
nodeSelector: {}
podAnnotations: {}
podPortName: http
priorityClassName: ""
replicas: 1
resources: {}
revisionHistoryLimit: 10
securityContext: {}
service:
appProtocol: ""
enabled: true
port: 8081
portName: http
targetPort: 8081
serviceAccountName: ""
serviceMonitor:
enabled: false
interval: 1m
labels: {}
path: /metrics
relabelings: []
scheme: http
scrapeTimeout: 30s
targetLabels: []
tlsConfig: {}
tolerations: []
ingress:
annotations: {}
enabled: false
extraPaths: []
hosts: []
labels: {}
path: /
pathType: Prefix
tls: []
initChownData:
enabled: true
image:
pullPolicy: IfNotPresent
registry: docker.io
repository: library/busybox
sha: ""
tag: 1.31.1
resources: {}
securityContext:
capabilities:
add:
- CHOWN
runAsNonRoot: false
runAsUser: 0
seccompProfile:
type: RuntimeDefault
ldap:
config: ""
enabled: false
existingSecret: ""
lifecycleHooks: {}
livenessProbe:
failureThreshold: 10
httpGet:
path: /api/health
port: 3000
initialDelaySeconds: 60
timeoutSeconds: 30
namespaceOverride: ""
networkPolicy:
allowExternal: true
egress:
blockDNSResolution: false
enabled: false
ports: []
to: []
enabled: false
explicitNamespacesSelector: {}
ingress: true
nodeSelector: {}
notifiers: {}
persistence:
accessModes:
- ReadWriteOnce
enabled: false
extraPvcLabels: {}
finalizers:
- kubernetes.io/pvc-protection
inMemory:
enabled: false
size: 10Gi
type: pvc
plugins: []
podDisruptionBudget: {}
podPortName: grafana
rbac:
create: true
extraClusterRoleRules: []
extraRoleRules: []
namespaced: false
pspEnabled: false
pspUseAppArmor: false
readinessProbe:
httpGet:
path: /api/health
port: 3000
replicas: 1
resources: {}
revisionHistoryLimit: 10
securityContext:
fsGroup: 472
runAsGroup: 472
runAsNonRoot: true
runAsUser: 472
service:
annotations: {}
appProtocol: ""
enabled: true
labels: {}
loadBalancerClass: ""
loadBalancerIP: ""
loadBalancerSourceRanges: []
port: 80
portName: http-web
targetPort: 3000
type: ClusterIP
serviceAccount:
autoMount: true
automountServiceAccountToken: false
create: true
labels: {}
name: null
nameTest: null
serviceMonitor:
enabled: true
interval: ""
labels: {}
metricRelabelings: []
path: /metrics
relabelings: []
scheme: http
scrapeTimeout: 30s
targetLabels: []
tlsConfig: {}
sidecar:
alerts:
enabled: false
env: {}
extraMounts: []
initAlerts: false
label: grafana_alert
labelValue: ""
reloadURL: http://localhost:3000/api/admin/provisioning/alerting/reload
resource: both
script: null
searchNamespace: null
sizeLimit: {}
skipReload: false
watchMethod: WATCH
dashboards:
SCProvider: true
annotations: {}
defaultFolderName: null
enableNewTablePanelSyntax: false
enabled: true
env: {}
extraMounts: []
folder: /tmp/dashboards
folderAnnotation: null
label: grafana_dashboard
labelValue: "1"
multicluster:
etcd:
enabled: false
global:
enabled: false
provider:
allowUiUpdates: false
disableDelete: false
folder: ""
foldersFromFilesStructure: false
name: sidecarProvider
orgid: 1
type: file
reloadURL: http://localhost:3000/api/admin/provisioning/dashboards/reload
resource: both
script: null
searchNamespace: ALL
sizeLimit: {}
skipReload: false
watchMethod: WATCH
datasources:
alertmanager:
enabled: true
handleGrafanaManagedAlerts: false
implementation: prometheus
uid: alertmanager
annotations: {}
createPrometheusReplicasDatasources: false
defaultDatasourceEnabled: true
enabled: true
env: {}
envValueFrom: {}
exemplarTraceIdDestinations: {}
httpMethod: POST
initDatasources: false
isDefaultDatasource: true
label: grafana_datasource
labelValue: "1"
reloadURL: http://localhost:3000/api/admin/provisioning/datasources/reload
resource: both
script: null
searchNamespace: null
sizeLimit: {}
skipReload: false
uid: prometheus
watchMethod: WATCH
enableUniqueFilenames: false
image:
registry: quay.io
repository: kiwigrid/k8s-sidecar
sha: ""
tag: 1.26.1
imagePullPolicy: IfNotPresent
livenessProbe: {}
notifiers:
enabled: false
env: {}
initNotifiers: false
label: grafana_notifier
labelValue: ""
reloadURL: http://localhost:3000/api/admin/provisioning/notifications/reload
resource: both
script: null
searchNamespace: null
sizeLimit: {}
skipReload: false
watchMethod: WATCH
plugins:
enabled: false
env: {}
initPlugins: false
label: grafana_plugin
labelValue: ""
reloadURL: http://localhost:3000/api/admin/provisioning/plugins/reload
resource: both
script: null
searchNamespace: null
sizeLimit: {}
skipReload: false
watchMethod: WATCH
readinessProbe: {}
resources: {}
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
seccompProfile:
type: RuntimeDefault
smtp:
existingSecret: ""
passwordKey: password
userKey: user
testFramework:
enabled: true
image:
registry: docker.io
repository: bats/bats
tag: v1.4.1
imagePullPolicy: IfNotPresent
securityContext: {}
tolerations: []
topologySpreadConstraints: []
useStatefulSet: false
kube-state-metrics:
affinity: {}
annotations: {}
autosharding:
enabled: false
collectors:
- certificatesigningrequests
- configmaps
- cronjobs
- daemonsets
- deployments
- endpoints
- horizontalpodautoscalers
- ingresses
- jobs
- leases
- limitranges
- mutatingwebhookconfigurations
- namespaces
- networkpolicies
- nodes
- persistentvolumeclaims
- persistentvolumes
- poddisruptionbudgets
- pods
- replicasets
- replicationcontrollers
- resourcequotas
- secrets
- services
- statefulsets
- storageclasses
- validatingwebhookconfigurations
- volumeattachments
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
containers: []
customLabels: {}
customResourceState:
config: {}
enabled: false
extraArgs: []
extraManifests: []
global:
imagePullSecrets: []
imageRegistry: ""
rbac:
create: true
createAggregateClusterRoles: false
pspAnnotations: {}
pspEnabled: false
hostNetwork: false
image:
pullPolicy: IfNotPresent
registry: registry.k8s.io
repository: kube-state-metrics/kube-state-metrics
sha: ""
tag: ""
imagePullSecrets: []
initContainers: []
kubeRBACProxy:
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
enabled: false
extraArgs: []
image:
pullPolicy: IfNotPresent
registry: quay.io
repository: brancz/kube-rbac-proxy
sha: ""
tag: v0.14.0
resources: {}
volumeMounts: []
kubeTargetVersionOverride: ""
kubeconfig:
enabled: false
secret: null
livenessProbe:
failureThreshold: 3
httpGet:
httpHeaders: []
scheme: http
initialDelaySeconds: 5
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
metricAllowlist: []
metricAnnotationsAllowList: []
metricDenylist: []
metricLabelsAllowlist: []
namespaceOverride: ""
namespaces: ""
namespacesDenylist: ""
networkPolicy:
enabled: false
flavor: kubernetes
nodeSelector: {}
podAnnotations: {}
podDisruptionBudget: {}
podSecurityPolicy:
additionalVolumes: []
annotations: {}
enabled: false
prometheus:
monitor:
additionalLabels: {}
annotations: {}
bearerTokenFile: ""
bearerTokenSecret: {}
enabled: true
honorLabels: true
interval: ""
jobLabel: ""
labelLimit: 0
labelNameLengthLimit: 0
labelValueLengthLimit: 0
metricRelabelings: []
namespace: ""
namespaceSelector: []
podTargetLabels: []
proxyUrl: ""
relabelings: []
sampleLimit: 0
scheme: ""
scrapeTimeout: ""
selectorOverride: {}
targetLabels: []
targetLimit: 0
tlsConfig: {}
prometheusScrape: true
rbac:
create: true
extraRules: []
useClusterRole: true
readinessProbe:
failureThreshold: 3
httpGet:
httpHeaders: []
scheme: http
initialDelaySeconds: 5
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
releaseLabel: true
releaseNamespace: false
replicas: 1
resources: {}
revisionHistoryLimit: 10
securityContext:
enabled: true
fsGroup: 65534
runAsGroup: 65534
runAsNonRoot: true
runAsUser: 65534
seccompProfile:
type: RuntimeDefault
selectorOverride: {}
selfMonitor:
enabled: false
service:
annotations: {}
clusterIP: ""
loadBalancerIP: ""
loadBalancerSourceRanges: []
nodePort: 0
port: 8080
type: ClusterIP
serviceAccount:
annotations: {}
create: true
imagePullSecrets: []
name: null
tolerations: []
topologySpreadConstraints: []
verticalPodAutoscaler:
controlledResources: []
enabled: false
maxAllowed: {}
minAllowed: {}
volumeMounts: []
volumes: []
kubeApiServer:
enabled: true
serviceMonitor:
additionalLabels: {}
interval: ""
jobLabel: component
labelLimit: 0
labelNameLengthLimit: 0
labelValueLengthLimit: 0
metricRelabelings:
- action: drop
regex: apiserver_request_duration_seconds_bucket;(0.15|0.2|0.3|0.35|0.4|0.45|0.6|0.7|0.8|0.9|1.25|1.5|1.75|2|3|3.5|4|4.5|6|7|8|9|15|25|40|50)
sourceLabels:
- __name__
- le
proxyUrl: ""
relabelings: []
sampleLimit: 0
selector:
matchLabels:
component: apiserver
provider: kubernetes
targetLimit: 0
tlsConfig:
insecureSkipVerify: false
serverName: kubernetes
kubeControllerManager:
enabled: true
endpoints: []
service:
enabled: true
port: null
targetPort: null
serviceMonitor:
additionalLabels: {}
enabled: true
https: null
insecureSkipVerify: null
interval: ""
jobLabel: jobLabel
labelLimit: 0
labelNameLengthLimit: 0
labelValueLengthLimit: 0
metricRelabelings: []
port: http-metrics
proxyUrl: ""
relabelings: []
sampleLimit: 0
selector: {}
serverName: null
targetLimit: 0
kubeDns:
enabled: false
service:
dnsmasq:
port: 10054
targetPort: 10054