I believe that there is an issue with the following documentation:
In this example the PostgreSQL password will be set as environment variable POSTGRES_PASSWORD, but the Helm chart for PostgreSQL has set the value auth.usePasswordFiles to true, which will add an additional environment variable POSTGRES_PASSWORD_FILE.
In this case the start of pod/authentik-postgresql-0 will end up in the status CrashLoopBackOff, because both environment variables are mutually exclusive.
Instead the documentation should add the following parameter:
postgresql:
enabled: true
auth:
password: "ThisIsNotASecurePassword"
usePasswordFiles: false
I believe that there is an issue with the following documentation:
In this example the PostgreSQL password will be set as environment variable
POSTGRES_PASSWORD, but the Helm chart for PostgreSQL has set the valueauth.usePasswordFilestotrue, which will add an additional environment variablePOSTGRES_PASSWORD_FILE.In this case the start of
pod/authentik-postgresql-0will end up in the statusCrashLoopBackOff, because both environment variables are mutually exclusive.Instead the documentation should add the following parameter: