File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ apiVersion: v2
22name : edgedb
33description : A Helm chart for self hosting EdgeDB
44type : application
5- version : 0.1.43
5+ version : 0.1.44
66appVersion : " 5.6"
Original file line number Diff line number Diff line change 3030 initContainers :
3131 {{- if .Values.postgres.enabled }}
3232 - name : wait-for-postgres
33- image : postgres:15 -alpine # Using postgres image for pg_isready tool
33+ image : postgres:16 -alpine # Using postgres image for pg_isready tool
3434 env :
3535 - name : EDGEDB_SERVER_BACKEND_DSN
3636 {{- if kindIs "string" .Values.postgres.dsn }}
4141 command : ['sh', '-c']
4242 args :
4343 - |
44- until pg_isready -d "$EDGEDB_POSTGRES_DSN "; do
44+ until pg_isready -d "$EDGEDB_SERVER_BACKEND_DSN "; do
4545 echo "Waiting for postgres..."
4646 sleep 2
4747 done
7070 {{- if not .Values.postgres.dsn }}
7171 {{- fail "You must provide a postgres dsn value if postgres is enabled" }}
7272 {{- end }}
73- - name : EDGEDB_POSTGRES_DSN
73+ - name : EDGEDB_SERVER_BACKEND_DSN
7474 {{- if kindIs "string" .Values.postgres.dsn }}
7575 value : {{ .Values.postgres.dsn }}
7676 {{- else }}
You can’t perform that action at this time.
0 commit comments