-
Notifications
You must be signed in to change notification settings - Fork 1
/
values.yaml
57 lines (53 loc) · 871 Bytes
/
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
dreamfactory:
ingress:
enabled: true
ingressClass: ""
annotations: {}
hosts:
- example.dreamfactory.com
tls: true
pathType: Prefix
image:
repository: dreamfactorysoftware/dreamfactory
tag: latest
replicaCount: 2
service:
type: ClusterIP
port: 80
resources:
limits:
cpu: 2
memory: 2Gi
requests:
cpu: 1
memory: 1Gi
mysql:
image:
repository: mysql
tag: "8.0"
auth:
rootPassword: "your_secure_password"
persistence:
enabled: true
size: 10Gi
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 250m
memory: 256Mi
redis:
image:
repository: redis
tag: "6.2"
replicaCount: 1
service:
port: 6379
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 50m
memory: 64Mi