-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
59 lines (54 loc) · 1.28 KB
/
values.yaml
File metadata and controls
59 lines (54 loc) · 1.28 KB
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
bots:
- name: bot1
domain: bot1.example.com
postgresUser: botuser1
postgresDB: botdb1
dbPassword: "changeme1" # Pre-populated / managed by the Job
encryptionKey: "changeme1" # Pre-populated / managed by the Job
ingress:
enabled: true
- name: bot2
domain: bot2.example.com
postgresUser: botuser2
postgresDB: botdb2
dbPassword: "changeme2" # Pre-populated / managed by the Job
encryptionKey: "changeme2" # Pre-populated / managed by the Job
ingress:
enabled: true
botDefaults:
# Values that will be applied to bots unless otherwise specified
bot:
image: ghcr.io/elliotbraem/efizzybot:fe498dcbfed9692a2eaae900c3da066596e6af97
replicaCount: 1
servicePort: 8080
resources:
requests:
cpu: 200m
memory: 512Mi
limits:
cpu: 500m
memory: 1Gi
scheduler:
image: your-registry/scheduler-image:latest
replicaCount: 1
servicePort: 8081
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 300m
memory: 512Mi
rss:
image: your-registry/rss-image:latest
replicaCount: 1
servicePort: 8082
resources:
requests:
cpu: 100m
memory: 256Mi
limits:
cpu: 300m
memory: 512Mi
postgres:
image: postgres:13.3