jlynch1 commented on issue #58982: URL: https://github.com/apache/airflow/issues/58982#issuecomment-3649586619
I had a similar problem with `airflow-api-secret-key` and `airflow-jwt-secret` and used the names as in the charts in this folder `https://github.com/apache/airflow/tree/main/chart/templates/secrets` it seems that as I hadnt created these the very first time I deployed the chart, helm created the secrets and helm now thinks it is managing the secrets and deletes them on every helm update, and if you have them named in your helm values (like below) it wont create the secrets again - and hence are not found. ``` webserverSecretKeySecretName: webserver-key apiSecretKeySecretName: airflow-api-secret-key jwtSecretName: airflow-jwt-secret ``` what resolved the issue for me was doing an uninstall of the helm chart (without keeping history - the default), deploying the secrets and then install the helm chart and the problem went away. -- 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]
