prakass1 commented on issue #53375: URL: https://github.com/apache/airflow/issues/53375#issuecomment-3104751909
What you could be using is to create [webserverSecretKeySecretName(https://github.com/apache/airflow/blob/main/chart/values.yaml#L572) pointing to a secret you create using kubernetes containing key as webserverSecretKey and value as the output from `python3 -c 'import secrets; print(secrets.token_hex(16))'` You can create the secret in the namespaces for both worker and other services. Example below: ```yaml apiVersion: v1 kind: Secret metadata: name:airflow-webserver-secret-key type: Opaque stringData: webserverSecretKey:output from `python3 -c 'import secrets; print(secrets.token_hex(16))'` ``` To be able to provide more specific answer, you might have to provide more information for one to replicate it -- 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]
