forked from seriohub/velero-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues-override.yaml
89 lines (82 loc) · 1.69 KB
/
values-override.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
#
# Global
#
global:
veleroNamespace: velero
# kubernetesClusterDomain: my-cluster
#
# API Config
#
apiConfig:
#
awsAccessKeyId: <awsAccessKeyId>
awsSecretAccessKey: <awsSecretAccessKey>
# debugLevel: debug
veleroCliVersion: v1.12.2
# apiTokenExpirationMin: "30"
# apiTokenRefreshExpirationDays: "7"
storage:
enabled: false
storageClassName: <your-storage-class-name>
#
# You can use nodeport or ingress according to your needs
#
#
# Nodeport
#
uiNp:
enabled: false
ip: "10.10.0.100" # any ip address of your cluster
apiPort: "30001"
uiPort: "30002"
#
# Ingress
#
uiIngress:
enabled: false
# ingressClassName: nginx
host: velero.<your-domain>
tls:
enabled: false
# metadata:
# annotations:
# cert-manager.io/cluster-issuer: "letsencrypt-prod"
# spec:
# tls:
# - hosts:
# - velero-ui.domain.com
# secretName: velero-ui-tls
#
# Watchdog Cron
#
report:
schedule: 0 8 * * *
#
# Watchdog Daemon
#
watchdogConfig:
# config
k8SInclusterMode: "True"
# k8sVeleroNamespace: "velero"
processClusterName: <your-cluster-name>
# processCycleSec: 300
# expiresDaysWarning: 29
notificationSkipCompleted: "False"
# notificationSkipInProgress: "True"
# notificationSkipRemoved: "True"
# notificationSkipDeleting: "True"
# email
emailEnable: "False"
emailAccount: <your-email>
emailPassword: <your-password>
emailRecipients: <email-recipents-comma-saparted>
emailSmtpPort: <smtp-port>
emailSmtpServer: <smtp-server>
# slack
slackEnable: "False"
slackChannel: <channel-id>
slackToken: <token>
# telegram
telegramEnable: "False"
telegramChatId: "<telegram-chat-id>"
telegramToken: "<telegram-token>"