-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
appsettings.json
44 lines (44 loc) · 1.07 KB
/
appsettings.json
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
{
"Logging": {
"Console": {
"FormatterName": "simple",
"FormatterOptions": {
"TimestampFormat": "HH:mm:ss.fff ",
"UseUtcTimestamp": true
}
}
},
"KCert": {
"Namespace": "kcert",
"IngressName": "kcert",
"SecretName": "kcert",
"ServiceName": "kcert",
"ServicePort": 80,
"WatchIngresses": true,
"WatchConfigMaps": true,
"ShowRenewButton": false,
"NamespaceConstraints": null,
"InitialSleepOnFailure": 30
},
"Acme": {
"DirUrl": "https://acme-staging-v02.api.letsencrypt.org/directory",
"ValidationWaitTimeSeconds": 10,
"ValidationNumRetries": 5,
"RenewalCheckTimeHours": 6,
"RenewalThresholdDays": 30,
"AutoRenewal": true
},
"ChallengeIngress": {
"UseClassName": true,
"ClassName": "nginx",
"UseAnnotations": false,
"Annotations": {
"kubernetes.io/ingress.class": "nginx"
},
"IngressLabelValue": "managed",
"UseLabels": false,
"Labels": null,
"MaxPropagationWaitTimeSeconds": 300,
"PropagationCheckIntervalMilliseconds": 5000
}
}