EliMor commented on issue #17489: URL: https://github.com/apache/airflow/issues/17489#issuecomment-894841242
Hi people! I thought it was strange that it was encoded as '+' as well!! Here's a more clear example... If I have in my values.yaml file: ``` metadataConnection: user: airflow pass: top secret password protocol: postgresql host: fakedb.us-west-2.rds.amazonaws.com port: 5432 db: postgres sslmode: disable ``` Here's how we get rendered in the Secret ``` postgresql://airflow:top+secret+passw...@fakedb.us-west-2.rds.amazonaws.com:5432/postgres?sslmode=disable ``` This will result in a connection error unless I manually update the secret to: ``` postgresql://airflow:top secret passw...@fakedb.us-west-2.rds.amazonaws.com:5432/postgres?sslmode=disable ``` Strange no?! No big on my end to just not have spaces. :D -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org