forked from seriohub/velero-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
426 lines (411 loc) · 10 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
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
#
# Global
#
global:
# -- Namespace of velero installation
veleroNamespace: velero
# -- Kubernetes Cluster Domain
kubernetesClusterDomain: cluster.local
#
# API
#
api:
apiServer:
image:
# -- Image Registry
registry: docker.io
# -- Image Repository
repository: dserio83/velero-api
# -- Image Tag
tag: 0.1.14
imagePullPolicy: IfNotPresent
# -- SecurityContext for Pod
podSecurityContext:
enabled: false
seccompProfile:
type: RuntimeDefault
# -- SecurityContext for Container
securityContext:
enabled: false
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 65534
# -- Operator nodeSelector
nodeSelector: {}
# -- Operator tolerations
tolerations: []
# -- Operator affinity
affinity: {}
# -- Resources for the Operator
resources: {}
# requests:
# cpu: 50m
# memory: 128Mi
# limits:
# cpu: 500m
# memory: 512Mi
# -- VolumeMounts
volumeMounts:
# - name: velero-api
# mountPath: /usr/local/bin
# -- Volumes
volumes:
# - name: velero-api
# emptyDir: {}
ports:
- name: velero-api
port: 80
protocol: TCP
targetPort: api
replicas: 1
type: ClusterIP
#
# API Config
#
apiConfig:
# -- Token validity after the creation (minutes)
apiTokenExpirationMin: "60"
# -- Token validity after the creation (days)
apiTokenRefreshExpirationDays: "7"
# -- Enabled/Disabled the fastapi documentation user interfaces
apiEnableDocumentation: "1"
# -- Socket bind port
apiEndpointPort: "8001"
# -- Socket bind host
apiEndpointUrl: 0.0.0.0
# -- Custom security rate limiter: 60 seconds max requests 10
apiRateLimiterCustom1: Security:xxx:60:20
# -- Rate limiter: 60 seconds max requests 10
apiRateLimiterL1: "60:20"
# -- AWS_ACCESS_KEY_ID
awsAccessKeyId: <AWS_ACCESS_KEY_ID>
# -- AWS_SECRET_ACCESS_KEY
awsSecretAccessKey: <AWS_SECRET_ACCESS_KEY>
# -- Debug level info
debugLevel: info
# -- Destination folder when executing velero backup download
downloadTmpFolder: /tmp/velero-api
# -- Enabled if is deployed in a cluster
k8SInClusterMode: "True"
# -- Allowed origin
origins1: '*'
# -- Velero restic password
resticPassword: static-passw0rd
# -- If True user can have a weak password, otherwise is required a strong password
securityDisableUsersPwdRate: "1"
# -- Path where create the SQL-Lite database used for storing the users credentials
securityPathDatabase: ./data
# Optional: Secret key used for JWT creation
# securityTokenKey: <your-token>
# -- Path where to extract the velero executable file
veleroCliDestPath: /usr/local/bin
# -- Path where the compressed velero client archives are located
veleroCliPath: ./velero-client
# -- Path where the user can store manually the binary file
veleroCliPathCustom: ./velero-client-binary
# -- Name of the velero client release to be used
veleroCliVersion: v1.12.2
# Storage Configuration
storage:
# -- Enable persistence for API
enabled: false
# -- StorageClassName
storageClassName: ""
# -- Storage AccessMode
accessModes:
- ReadWriteOnce
# -- Storage requested resources
resources:
requests:
storage: 100Mi
#
# API Service Account
#
apiSa:
serviceAccount:
annotations: {}
#
# UI Image
#
ui:
ports:
- name: velero-ui
port: 80
protocol: TCP
targetPort: run
replicas: 1
type: ClusterIP
webServer:
image:
# -- Image Registry
registry: docker.io
# -- Image Repository
repository: dserio83/velero-ui
# -- Image Tag
tag: 0.1.12
# -- Image pull policy
imagePullPolicy: IfNotPresent
# -- SecurityContext for Pod
podSecurityContext:
enabled: false
seccompProfile:
type: RuntimeDefault
# -- SecurityContext for Container
securityContext:
enabled: false
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 65534
# -- Operator nodeSelector
nodeSelector: {}
# -- Operator tolerations
tolerations: []
# -- Operator affinity
affinity: {}
# -- Resources for the Operator
resources: {}
# requests:
# cpu: 50m
# memory: 128Mi
# limits:
# cpu: 500m
# memory: 512Mi
# -- VolumeMounts
volumeMounts:
# - name: velero-api
# mountPath: /usr/local/bin
# -- Volumes
volumes:
# - name: velero-api
# emptyDir: {}
#
# UI Config
#
uiConfig:
# -- Milliseconds delay for datatable update after each operation
nextPublicRefreshDatatableAfter: "1500"
# -- Polling task in progress updates in milliseconds
nextPublicRefreshRecent: "5000"
# -- Url to http velero-api project
nextPublicVeleroApiUrl: http://10.10.0.100
# -- Url to ws velero-api project
nextPublicVeleroApiWs: ws://10.10.0.100
#
# UI Nodeport
#
uiNp:
# -- Enable or disable nodeport
enabled: true
# -- Any ip address of your cluster
ip: ""
# -- API port
apiPort: "30001"
# -- UI port
uiPort: "30002"
#
# UI Ingress
#
uiIngress:
# -- Enable or disable ingress
enabled: false
# -- Ingress class name
ingressClassName: nginx
# -- Velero ui host
host: velero.your-cluster-domain
metadata:
annotations:
# cert-manager.io/cluster-issuer: "letsencrypt-prod"
tls:
enabled: true
spec:
tls:
# - hosts:
# - velero-ui.domain.com
# secretName: velero-ui-tls
#
# Service Account
#
k8SReadOnlyServiceAccount:
serviceAccount:
annotations: {}
#
# Watchdog Cron
#
report:
failedJobsHistoryLimit: 0
# -- Cron for full report
schedule: 0 8 * * *
successfulJobsHistoryLimit: 0
veleroWatchdogReport:
image:
# -- Image Registry
registry: docker.io
# -- Image Repository
repository: dserio83/velero-watchdog
# -- Image Tag
tag: 0.1.6
imagePullPolicy: IfNotPresent
# -- SecurityContext for Pod
podSecurityContext:
enabled: false
seccompProfile:
type: RuntimeDefault
# -- SecurityContext for Container
securityContext:
enabled: false
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 65534
# -- Operator nodeSelector
nodeSelector: {}
# -- Operator tolerations
tolerations: []
# -- Operator affinity
affinity: {}
# -- Resources for the Operator
resources: {}
# requests:
# cpu: 50m
# memory: 128Mi
# limits:
# cpu: 500m
# memory: 512Mi
# -- VolumeMounts
volumeMounts:
# - name: velero-api
# mountPath: /usr/local/bin
# -- Volumes
volumes:
# - name: velero-api
# emptyDir: {}
#
# Watchdog Daemon
#
watchdog:
replicas: 1
veleroMonitoring:
image:
# -- Image Registry
registry: docker.io
# -- Image Repository
repository: dserio83/velero-watchdog
# -- Image Tag
tag: 0.1.6
imagePullPolicy: IfNotPresent
# -- SecurityContext for Pod
podSecurityContext:
enabled: false
seccompProfile:
type: RuntimeDefault
# -- SecurityContext for Container
securityContext:
enabled: false
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
readOnlyRootFilesystem: true
runAsNonRoot: true
runAsUser: 65534
# -- Operator nodeSelector
nodeSelector: {}
# -- Operator tolerations
tolerations: []
# -- Operator affinity
affinity: {}
# -- Resources for the Operator
resources:
limits:
cpu: 500m
memory: 1256Mi
requests:
cpu: 250m
memory: 256Mi
# -- VolumeMounts
volumeMounts:
# - name: velero-api
# mountPath: /usr/local/bin
# -- Volumes
volumes:
# - name: velero-api
# emptyDir: {}
#
# Watchdog Cluster IP
#
watchdogClusterip:
port: 8001
targetPort: 8001
#
# Watchdog Config
#
watchdogConfig:
# -- Socket bind host
apiEndpointURL: "0.0.0.0"
# -- Socket bind port
apiEndPointPort: "8001"
# -- View debugging information.
debug: "False"
# -- Debug level information.
debugLevel: "Info"
# -- Enable watcher for backups without schedule or last backup for each schedule
backupEnable: "True"
# -- Enable watcher for schedule
scheduleEnable: "True"
# -- Number of days to backup expiration below which to display a warning about the backup
expiresDaysWarning: "29"
# -- Enable in cluster mode
k8SInclusterMode: "True"
# -- Name of the namespace where vmware-tanzu/velero is deployed
k8sVeleroNamespace: "velero"
# -- Force the cluster name and it appears in the message
processClusterName: <cluster-name>
# -- Cycle time (seconds)
processCycleSec: "300"
# -- Skip notification new completed backup
notificationSkipCompleted: "True"
# -- Skip notification new in progress backup
notificationSkipInProgress: "True"
# -- Skip notification backup removed
notificationSkipRemoved: "True"
# -- Skip notification backup deleting
notificationSkipDeleting: "True"
# -- User name account
emailAccount: <email>
# -- Enable email notification
emailEnable: "False"
# -- Email password account
emailPassword: <pwd>
# -- Email recipients semicolon separated
emailRecipients: <recipients>
# -- SMTP port
emailSmtpPort: <smtp-port>
# -- SMTP server
emailSmtpServer: <smtp-server>
# -- Telegram chat id where send the notifications
telegramChatId: <chat-id>
# -- Enable telegram notification
telegramEnable: "False"
# -- Token for access to Telegram bot via Http API
telegramToken: <token>
# -- Add a prefix to backup items in reports
reportBackupItemPrefix: ""
# -- Add a prefix to schedule items in reports
reportScheduleItemPrefix: ""
# -- Channel id where sens the notification
slackChannel: <channel-id>
# -- Enable Slack notification
slackEnable: "False"
# -- Token for access to Slack via Http API
slackToken: <token>