-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvalues.yaml
199 lines (165 loc) · 3.83 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
# -- 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-scheduledevents-manager
tag: ""
sha: ""
tagFlavor: "-kubernetes"
pullPolicy: IfNotPresent
env: []
# DEBUG: "true"
# VERBOSE: "true"
secretsEnableTemplateFunctions: false
secrets: {}
# secretName: secretValue
resources:
limits:
cpu: 250m
memory: 150Mi
requests:
cpu: 25m
memory: 150Mi
nodeSelector:
kubernetes.io/os: linux
terminationGracePeriodSeconds: 600
affinity: {}
tolerations:
- key: "node-role.kubernetes.io/master"
effect: "NoSchedule"
operator: "Exists"
restartPolicy: Always
priorityClassName: system-node-critical
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-scheduledevents-manager
labels: {}
annotations: {}
## Customize the updateStrategy if set
updateStrategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
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: []
scheduledEvent:
approve: true
scrapeTime: "30s"
drain:
enable: true
notBefore: "12m"
kubeDrainArgs: "--force --grace-period=600 --timeout=0s --delete-emptydir-data=true --ignore-daemonsets=true"
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 (Kubernetes apiserver)
- ports:
- port: 443
protocol: TCP
# HTTP (instance metadata, via aad-pod-identity proxy)
- ports:
- port: 2579
protocol: TCP
to:
- ipBlock:
cidr: 127.0.0.1/32
# HTTP (instance metadata)
- ports:
- port: 80
protocol: TCP
to:
- ipBlock:
cidr: 169.254.169.254/32
rbac:
enabled: true
prometheus:
rule:
enabled: false
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: []