Michel Rouly
06/15/2021, 5:13 PMmaster
, it's resulting in a CrashLoopBackoff in dagster-dagit
and dagster-daemon
on this log:
Error 1: Received unexpected config entry "params" at path root:postgres_db. Expected: "{ db_name: (String | { env: String }) hostname: (String | { env: String }) password: (String | { env: String }) port?: (Int | { env: String }) username: (String | { env: String }) }
Looks like it isn't expecting params
in the `ConfigMap`:
config:
postgres_db:
username: test
password:
env: DAGSTER_PG_PASSWORD
hostname: dagster-postgresql
db_name: test
port: 5432
params:
{}
(occurs in multiple sections in the default dagster.yaml
)rex
06/15/2021, 5:15 PMMichel Rouly
06/15/2021, 5:16 PMhelm -n dagster install dagster dagster-0.11.3.tgz -f dagster-values.yaml
where dagster-0.11.3.tgz
is from:
helm package helm/dagster
in latest master
master
branchmaster
to my branch and noticed this happening.rex
06/15/2021, 5:19 PMMichel Rouly
06/15/2021, 5:21 PMhelm -n dagster list
NAME NAMESPACE REVISION UPDATED STATUS CHART APP VERSION
dagster dagster 1 2021-06-15 13:07:55.068108 -0400 EDT deployed dagster-0.11.3 0.11.3
and the container is:
<http://docker.io/dagster/dagster-celery-k8s:0.11.3|docker.io/dagster/dagster-celery-k8s:0.11.3>
params
added to a newer release of Dagster? Guess the default app version would just need updating in that case.0.11.13
daemon
and dagit
(and possibly other containers) 😞 unless I'm missing itrex
06/15/2021, 5:26 PMMichel Rouly
06/15/2021, 5:28 PMdagit.image.tag
and dagsterDaemon.image.tag
to 0.11.13
works with the chart on master, no more CrashLoopBackoff 👍dagsterVersion
key, since there are so many components. But certainly not a critical thing.