peridot/infrastructure/dev-helm/temporal/values/values.postgresql.yaml

67 lines
1.6 KiB
YAML
Raw Normal View History

2022-07-07 20:11:50 +00:00
server:
config:
persistence:
default:
driver: "sql"
sql:
2024-03-11 19:20:43 +00:00
driver: "postgres12"
2022-07-07 20:11:50 +00:00
host: _HOST_
port: 5432
database: temporal
user: _USERNAME_
password: _PASSWORD_
2024-03-11 19:20:43 +00:00
# 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
2022-07-07 20:11:50 +00:00
maxConns: 20
maxConnLifetime: "1h"
2024-03-11 19:20:43 +00:00
# tls:
# enabled: true
# enableHostVerification: true
# serverName: _HOST_ # this is strictly required when using serverless CRDB offerings
2022-07-07 20:11:50 +00:00
visibility:
driver: "sql"
sql:
2024-03-11 19:20:43 +00:00
driver: "postgres12"
2022-07-07 20:11:50 +00:00
host: _HOST_
port: 5432
database: temporal_visibility
user: _USERNAME_
password: _PASSWORD_
2024-03-11 19:20:43 +00:00
# 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
2022-07-07 20:11:50 +00:00
maxConns: 20
maxConnLifetime: "1h"
2024-03-11 19:20:43 +00:00
# tls:
# enabled: true
# enableHostVerification: true
# serverName: _HOST_ # this is strictly required when using serverless CRDB offerings
2022-07-07 20:11:50 +00:00
cassandra:
enabled: false
mysql:
enabled: false
postgresql:
enabled: true
2024-03-11 19:20:43 +00:00
prometheus:
enabled: true
grafana:
enabled: true
elasticsearch:
enabled: true
2022-07-07 20:11:50 +00:00
schema:
setup:
enabled: false
update:
enabled: false