diff --git a/ai-core/temporal/helm-values.yaml b/ai-core/temporal/helm-values.yaml index c7c6716..cb8dee9 100644 --- a/ai-core/temporal/helm-values.yaml +++ b/ai-core/temporal/helm-values.yaml @@ -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