pschoenmakers-ah commented on issue #29650: URL: https://github.com/apache/airflow/issues/29650#issuecomment-1438429597
This was indeed the root cause but it was not really clear how to resolve. In the end I got it going like this: - create a values file - do a --dry-run install this indeed points to a password error. `helm upgrade --install airflow apache-airflow/airflow -n airflow -f values.yaml --dry-run` - Edit the values.yaml replace the "~" for username: and password: with "postgres" - add an extra key "password" to the airflow-postgresql secret with value "postgres" - rerun the upgrade with the values.yaml file This brought up all the pods correctly and allowed me to change the webserverSecretKey -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
