-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrasactl-values.yml
64 lines (54 loc) · 1.13 KB
/
rasactl-values.yml
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
#rasax:
# service:
# type: "LoadBalancer"
rasa:
versions:
rasaWorker:
enabled: true
rasaProduction:
enabled: true
disableTelemetry: true
app:
name: "ghcr.io/lefameuxbeding/polyhx-hackatown-2022/action-server"
tag: "main"
extraEnvs:
- name: DB_PASSWD
valueFrom:
secretKeyRef:
name: ovh-db-secret
key: password
- name: GOOGLE_APPLICATION_CREDENTIALS
value: "/app/montreai-gcp.json"
extraVolumeMounts:
- name: "gcp-credentials"
mountPath: "/app/montreai-gcp.json"
subPath: "montreai-gcp.json"
readOnly: true
extraVolumes:
- name: "gcp-credentials"
secret:
secretName: gcp-credentials
nginx:
service:
port: 80
ingress:
enabled: true
annotations:
"cert-manager.io/cluster-issuer": "letsencrypt-prod"
hosts:
- host: montreai.tech
paths:
- /
tls:
- secretName: rasa-x-tls
hosts:
- montreai.tech
images:
imagePullSecrets:
- name: "gh-registry-secret"
# postgresql:
# install: false
#global:
# postgresql:
# postgresqlUsername: "rasa"
# servicePort: 20184