Aiden Price
11/17/2020, 9:34 AMdb-upgrade
prefer there would be an extra @
symbol.Zanie
11/17/2020, 1:33 PM- name: PREFECT_SERVER__DATABASE__CONNECTION_URL
value: <postgresql://prefect@foobar@prefect-server-postgresql.default:5432/prefect>
- name: HASURA_GRAPHQL_DATABASE_URL
value: <postgresql://prefect%40foobar@prefect-server-postgresql.default:5432/prefect>
Aiden Price
11/17/2020, 10:31 PMvalues.yaml
I've got postgresql.postgresqlUsername: prefect%40foobar
so that I can still leverage all the _helper functions. But in graphql > deployment in the initContainers.env
I changed PREFECT_SERVER__DATABASE__CONNECTION_URL
to a hardcoded <postgresql://prefect>@foobar@foobar.postgres.database.azure.com:5432/prefect
containers.env
at all so it still uses the postgresUsername
from my values.yamlZanie
11/17/2020, 11:39 PMAiden Price
11/17/2020, 11:39 PMZanie
11/17/2020, 11:42 PMAiden Price
11/18/2020, 3:28 AMreplace %40 @
line in the graphql deployment template. Worked perfectly. Thanks for your help with this.Zanie
11/18/2020, 4:01 AM