fix: temporal helm values schema syntax
This commit is contained in:
parent
64bb19097d
commit
91002279ff
|
|
@ -27,37 +27,34 @@ server:
|
|||
defaultStore: default
|
||||
visibilityStore: default
|
||||
numHistoryShards: 4
|
||||
datastores:
|
||||
default:
|
||||
driver: "sql"
|
||||
sql:
|
||||
plugin: postgres12
|
||||
databaseName: temporal
|
||||
connectAddr: agentic-os-pg-rw.platform-data.svc.cluster.local:5432
|
||||
connectProtocol: tcp
|
||||
user: agentic_os
|
||||
# Reference the injected env var; Temporal server reads TEMPORAL_DB_PASSWORD
|
||||
# via its own env interpolation when password is left empty here.
|
||||
password: "${TEMPORAL_DB_PASSWORD}"
|
||||
maxConns: 20
|
||||
maxIdleConns: 20
|
||||
maxConnLifetime: "1h"
|
||||
tls:
|
||||
enabled: false
|
||||
visibility:
|
||||
driver: "sql"
|
||||
sql:
|
||||
plugin: postgres12
|
||||
databaseName: temporal_visibility
|
||||
connectAddr: agentic-os-pg-rw.platform-data.svc.cluster.local:5432
|
||||
connectProtocol: tcp
|
||||
user: agentic_os
|
||||
password: "${TEMPORAL_DB_PASSWORD}"
|
||||
maxConns: 20
|
||||
maxIdleConns: 20
|
||||
maxConnLifetime: "1h"
|
||||
tls:
|
||||
enabled: false
|
||||
default:
|
||||
driver: "sql"
|
||||
sql:
|
||||
pluginName: "postgres12"
|
||||
databaseName: "temporal"
|
||||
connectAddr: "agentic-os-pg-rw.platform-data.svc.cluster.local:5432"
|
||||
connectProtocol: "tcp"
|
||||
user: "agentic_os"
|
||||
password: "${TEMPORAL_DB_PASSWORD}"
|
||||
maxConns: 20
|
||||
maxIdleConns: 20
|
||||
maxConnLifetime: "1h"
|
||||
tls:
|
||||
enabled: false
|
||||
visibility:
|
||||
driver: "sql"
|
||||
sql:
|
||||
pluginName: "postgres12"
|
||||
databaseName: "temporal_visibility"
|
||||
connectAddr: "agentic-os-pg-rw.platform-data.svc.cluster.local:5432"
|
||||
connectProtocol: "tcp"
|
||||
user: "agentic_os"
|
||||
password: "${TEMPORAL_DB_PASSWORD}"
|
||||
maxConns: 20
|
||||
maxIdleConns: 20
|
||||
maxConnLifetime: "1h"
|
||||
tls:
|
||||
enabled: false
|
||||
metrics:
|
||||
enabled: true
|
||||
# Prometheus scrape annotations added to temporal pods
|
||||
|
|
|
|||
Loading…
Reference in New Issue