forked from wger-project/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
74 lines (72 loc) · 1.63 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
---
# App settings
app:
global:
image: wger/server:latest
imagePullPolicy: Always
annotations: {}
ingress:
enabled: false
url: fit.example.com
tls: true
annotations: {}
persistence:
enabled: false
storageClass: ""
accessModes:
- ReadWriteOnce
size: 8Gi
annotations: {}
resources:
requests:
memory: 128Mi
cpu: 100m
limits:
memory: 512Mi
cpu: 500m
environment:
- name: TIME_ZONE
value: UTC
- name: ENABLE_EMAIL
value: "False"
# PostgreSQL Settings. Only the bare minimum has been specified below.
# For more options, see https://github.com/bitnami/charts/tree/master/bitnami/postgresql
postgresql:
# Note: keep these variables present as the chart uses them for the StatefulSet
global:
postgresql:
postgresqlDatabase: wger
postgresqlUsername: wger
postgresqlPassword: wger
servicePort: 5432
resources:
requests:
memory: 128Mi
cpu: 100m
limits:
memory: 512Mi
cpu: 300m
persistence:
enabled: false
mountPath: /bitnami/postgresql
storageClass: ""
accessModes:
- ReadWriteOnce
size: 8Gi
# Redis Settings. Only the bare minimum has been specified below.
# For more options, see https://github.com/bitnami/charts/tree/master/bitnami/redis
redis:
# Note: keep these variables present as the chart uses them for the StatefulSet
auth:
password: wger
enabled: false
sentinel: true
master:
containerPort: 6379
persistence:
enabled: false
path: /data
storageClass: ""
accessModes:
- ReadWriteOnce
size: 8Gi