fix: temporal helm values sql fields
This commit is contained in:
parent
91002279ff
commit
efc9d66195
|
|
@ -30,10 +30,10 @@ server:
|
|||
default:
|
||||
driver: "sql"
|
||||
sql:
|
||||
pluginName: "postgres12"
|
||||
databaseName: "temporal"
|
||||
connectAddr: "agentic-os-pg-rw.platform-data.svc.cluster.local:5432"
|
||||
connectProtocol: "tcp"
|
||||
driver: "postgres12"
|
||||
database: "temporal"
|
||||
host: "agentic-os-pg-rw.platform-data.svc.cluster.local"
|
||||
port: 5432
|
||||
user: "agentic_os"
|
||||
password: "${TEMPORAL_DB_PASSWORD}"
|
||||
maxConns: 20
|
||||
|
|
@ -44,10 +44,10 @@ server:
|
|||
visibility:
|
||||
driver: "sql"
|
||||
sql:
|
||||
pluginName: "postgres12"
|
||||
databaseName: "temporal_visibility"
|
||||
connectAddr: "agentic-os-pg-rw.platform-data.svc.cluster.local:5432"
|
||||
connectProtocol: "tcp"
|
||||
driver: "postgres12"
|
||||
database: "temporal_visibility"
|
||||
host: "agentic-os-pg-rw.platform-data.svc.cluster.local"
|
||||
port: 5432
|
||||
user: "agentic_os"
|
||||
password: "${TEMPORAL_DB_PASSWORD}"
|
||||
maxConns: 20
|
||||
|
|
|
|||
Loading…
Reference in New Issue