junminahn opened a new pull request, #52268: URL: https://github.com/apache/airflow/pull/52268
**This PR fixes a Kubernetes deployment error (`CreateContainerConfigError`) caused by a mismatch in the JWT secret name.** The issue stems from inconsistent prefixes used when referencing the secret: * In the deployment environment, the JWT secret is referenced using the `jwt_secret` variable derived from `.Release.Name`. * However, the actual secret was created using the `airflow.fullname` variable. This mismatch led to the deployment failing to locate the expected secret. To resolve this, the secret name has been updated to also use the `jwt_secret` variable, ensuring consistency between the secret's name and how it's referenced in the deployment. ## References - https://github.com/apache/airflow/blob/main/chart/templates/_helpers.yaml#L406 - https://github.com/apache/airflow/blob/main/chart/templates/_helpers.yaml#L105 - https://github.com/apache/airflow/blob/main/chart/templates/_helpers.yaml#L25 - https://github.com/apache/airflow/blob/main/chart/templates/secrets/jwt-secret.yaml#L29 -- 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]
