-
Notifications
You must be signed in to change notification settings - Fork 7
/
prod-values.yaml
51 lines (44 loc) · 965 Bytes
/
prod-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
ingress:
enabled: true
#className: "traefik"
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/ingress.class: traefik
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.tls: 'true'
hosts:
- host: chartproxy.container-registry.com
paths:
- path: /
pathType: Prefix
tls:
- secretName: chartproxy-tls
hosts:
- chartproxy.container-registry.com
resources:
limits:
memory: 1024Mi
requests:
cpu: 100m
memory: 256Mi
# persistence
persistence:
enabled: false
size: 5Gi
# storageClass: "-"
accessMode: ReadWriteOnce
annotations: {}
# custom app values
app:
debug: false
useTLS: false
cache_ttl: 3600
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80
nodeSelector: {}
tolerations: []
affinity: {}