Skip to content

Commit

Permalink
chore: downgrade to Zitadel v2.61.1 (#833)
Browse files Browse the repository at this point in the history
There appears to be a regression with Zitadel v2.62.0 where the configuration 
is not being read properly. For now we can go to v2.61.1 and see if a fix is
released for the problem.

As part of this change, the config string values are being quoted as
recommended by the Zitadel docs.
  • Loading branch information
patheard authored Sep 17, 2024
1 parent 099a5b2 commit 678ebca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion idp/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/zitadel/zitadel:v2.62.0@sha256:9f35236d97629915ab023764b50c21e95f7a06b768b4364629193d9f1119b6fb
FROM ghcr.io/zitadel/zitadel:v2.61.1@sha256:4f49d262cd6eea2786df87a5370164daae7aa2f7f243217ca39adc38e4a464db

# Copy configuration and certificates
COPY ./*.yaml ./certificate.crt ./private.key /app/
10 changes: 5 additions & 5 deletions idp/docker/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
# https://zitadel.com/docs/self-hosting/manage/configure#runtime-configuration-file

Log:
Level: info
Level: 'info'

Port: 8080
ExternalPort: 443
ExternalSecure: true
TLS:
Enabled: true
KeyPath: /app/private.key
CertPath: /app/certificate.crt
KeyPath: '/app/private.key'
CertPath: '/app/certificate.crt'

Database:
postgres:
Port: 5432
User:
SSL:
Mode: require
Mode: 'require'
Admin:
SSL:
Mode: require
Mode: 'require'

0 comments on commit 678ebca

Please sign in to comment.