forked from webdevops/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
174 lines (141 loc) · 3.23 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
# -- 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-keyvault-exporter
tag: ""
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-keyvault-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: ""
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
global:
imagePullSecrets: []