fix(temporal): switch server to sprig configMapsToMount + setConfigFilePath — dockerize path removed in server 1.30.3, config was not loaded so it fell back to Cassandra and crashed
This commit is contained in:
@@ -60,6 +60,16 @@ schema:
|
|||||||
# ── Temporal server config (PostgreSQL persistence) ──────────────────────────
|
# ── Temporal server config (PostgreSQL persistence) ──────────────────────────
|
||||||
server:
|
server:
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
# temporalio/server:1.30.0+ dropped the `dockerize` binary and switched to
|
||||||
|
# built-in sprig config templating. The chart still defaults to the legacy
|
||||||
|
# configMapsToMount: "dockerize" + setConfigFilePath: false, which produces a
|
||||||
|
# config the 1.30 server never loads — it then falls back to its embedded
|
||||||
|
# env-only template (Cassandra default) and dies with
|
||||||
|
# "Persistence.DataStores[default](value).Cassandra.Hosts: zero value".
|
||||||
|
# Switch to the sprig ConfigMap and point the server at it (chart's own
|
||||||
|
# recommendation for 1.30.0+ images; sprig mode requires setConfigFilePath).
|
||||||
|
configMapsToMount: "sprig"
|
||||||
|
setConfigFilePath: true
|
||||||
jobService:
|
jobService:
|
||||||
enabled: false
|
enabled: false
|
||||||
affinity:
|
affinity:
|
||||||
|
|||||||
Reference in New Issue
Block a user