SamWheating commented on issue #61268: URL: https://github.com/apache/airflow/issues/61268#issuecomment-3837990819
Can confirm that #53983 appears to work as expected in the rc. Rendered the chart locally and confirmed that the `spec.schedulerName` was correctly set in the pod template and the celery worker statefulset: ```bash > helm template https://dist.apache.org/repos/dist/dev/airflow/helm-chart/1.19.0rc2/airflow-1.19.0.tgz --set workers.schedulerName=mycoolscheduler --set executor=CeleryKubernetesExecutor ... pod_template_file.yaml: |- --- apiVersion: v1 kind: Pod metadata: name: placeholder-name labels: tier: airflow component: worker release: release-name annotations: cluster-autoscaler.kubernetes.io/safe-to-evict: "false" spec: ... schedulerName: mycoolscheduler ... # Source: airflow/templates/workers/worker-deployment.yaml apiVersion: apps/v1 kind: StatefulSet ... spec: schedulerName: mycoolscheduler ``` -- 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]
