Ryan Sattler
11/25/2021, 3:40 AMError: secret "prefect-server-postgresql" not found
. I thought this secret would be created automatically? Am I supposed to create it manually and if so how?This is the password for
# `postgresqlUsername` and will be set within the secret at
# the key `postgresql-password`
kubectl create secret generic prefect-server-postgresql --from-literal=postgresql-password=mypassword
and that got a bit further though the auth is failing (investigating why)Kevin Kho
11/25/2021, 4:12 AMRyan Sattler
11/25/2021, 5:15 AMAnna Geller
11/25/2021, 9:16 AMRyan Sattler
11/25/2021, 9:28 PMAnna Geller
11/25/2021, 9:48 PM# existingSecret configures which secret should be referenced
# for access to the database. If null and `useSubChart` is
# enabled, the secret will be generated. If using an external
# postgres service, this value should be explicitly set to
# the name of a Kubernetes secret. This secret must be a
# key-value pair containing the key `postgresql-password`.
# e.g.: kubectl create secret generic prefect-postgresql-pwd
# --from-literal='postgresql-password=YOUR_POSTGRES_PWD'
# Helm chart value: existingSecret: prefect-postgresql-pwd
existingSecret: null
Ryan Sattler
11/25/2021, 10:02 PM<helm-release-name>-postgresql
postgresqlPassword
should be removed as it is not used as far as I can tellAnna Geller
11/25/2021, 10:07 PM<helm-release-name>-postgresql
? I understood as long as you reference the name, it should work?
existingSecret: prefect-postgresql-pwd
Ryan Sattler
11/25/2021, 10:20 PM