ms32035 commented on issue #48667: URL: https://github.com/apache/airflow/issues/48667#issuecomment-2772127420
Looks like the issue is here: https://github.com/apache/airflow/blob/main/chart/files/pod-template-file.kubernetes-helm-yaml#L96 I managed to work around it by injecting ``` k8s.V1Pod( spec=k8s.V1PodSpec( containers=[ k8s.V1Container( name="base", env=[k8s.V1EnvVar(name="AIRFLOW__CORE__EXECUTOR", value="LocalExecutor,KubernetesExecutor")], ) ], ), ) ``` into `pod_override` but that does not look like an ideal solution -- 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]
