-
Notifications
You must be signed in to change notification settings - Fork 366
/
Copy pathvalues.postgresql.yaml
82 lines (71 loc) · 2.52 KB
/
values.postgresql.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
75
76
77
78
79
80
81
82
server:
config:
persistence:
default:
driver: "sql"
sql:
driver: "postgres12"
host: _HOST_
port: 5432
database: temporal
user: _USERNAME_
password: _PASSWORD_
# for a production deployment use this instead of `password` and provision the secret beforehand e.g. with a sealed secret
# it has a single key called `password`
# existingSecret: temporal-default-store
maxConns: 20
maxConnLifetime: "1h"
# tls:
# enabled: true
# enableHostVerification: true
# serverName: _HOST_ # this is strictly required when using serverless CRDB offerings
# caFile: /path/to/certs/<CA-file> # Here we assumed that caFile, certFile, keyFile are stored in one secret mounted as 'secret-with-certs' (see: server.additionalVolumes and server.additionalVolumeMounts sections).
# certFile: /path/to/certs/<client-cert-file>
# keyFile: /path/to/certs/<client-key-file>
visibility:
driver: "sql"
sql:
driver: "postgres12"
host: _HOST_
port: 5432
database: temporal_visibility
user: _USERNAME_
password: _PASSWORD_
# for a production deployment use this instead of `password` and provision the secret beforehand e.g. with a sealed secret
# it has a single key called `password`
# existingSecret: temporal-visibility-store
maxConns: 20
maxConnLifetime: "1h"
# tls:
# enabled: true
# enableHostVerification: true
# serverName: _HOST_ # this is strictly required when using serverless CRDB offerings
# caFile: /path/to/certs/<CA-file> # Here we assumed that caFile, certFile, keyFile are stored in one secret mounted as 'secret-with-certs' (see: server.additionalVolumes and server.additionalVolumeMounts sections).
# certFile: /path/to/certs/<client-cert-file>
# keyFile: /path/to/certs/<client-key-file>
# additionalVolumes:
# - name: secret-with-certs
# secret:
# secretName: secret-with-certs
# additionalVolumeMounts:
# - name: secret-with-certs
# mountPath: /path/to/certs/
cassandra:
enabled: false
mysql:
enabled: false
postgresql:
enabled: true
prometheus:
enabled: true
grafana:
enabled: true
elasticsearch:
enabled: true
schema:
createDatabase:
enabled: true
setup:
enabled: false
update:
enabled: false