-
Notifications
You must be signed in to change notification settings - Fork 1
/
kube-lego.tpl.yaml
65 lines (54 loc) · 1.38 KB
/
kube-lego.tpl.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
## kube-lego configuration
## Ref: https://github.com/jetstack/kube-lego
##
config:
## Email address to use for registration with Let's Encrypt
##
# LEGO_EMAIL: my@email.tld
LEGO_EMAIL: foo@bar.mail
## Let's Encrypt API endpoint
## Production: https://acme-v01.api.letsencrypt.org/directory
## Staging: https://acme-staging.api.letsencrypt.org/directory
##
LEGO_URL: https://acme-v01.api.letsencrypt.org/directory
## kube-lego port
##
LEGO_PORT: 8080
## Specify which ingress class to watch
##
# LEGO_SUPPORTED_INGRESS_CLASS: nginx
## Specify which ingress provider should be watched
## nginx and gce are the only two options presently
##
# LEGO_SUPPORTED_INGRESS_PROVIDER: nginx
## Specify what ingress class should something be
## if no ingress class is specified
##
# LEGO_DEFAULT_INGRESS_CLASS: nginx
## kube-lego image
##
image:
repository: jetstack/kube-lego
tag: 0.1.5
pullPolicy: IfNotPresent
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
## Annotations to be added to pods
##
podAnnotations: {}
replicaCount: 1
## kube-lego resource limits & requests
## Ref: https://kubernetes.io/docs/user-guide/compute-resources/
##
resources: {}
# limits:
# cpu: 20m
# memory: 8Mi
# requests:
# cpu: 20m
# memory: 8Mi
rbac:
create: true
serviceAccountName: default