rcheatham-q opened a new issue, #43224: URL: https://github.com/apache/airflow/issues/43224
### Official Helm Chart version 1.15.0 (latest released) ### Apache Airflow version 2.10.2 ### Kubernetes Version 1.30.4 ### Helm Chart configuration ```yaml executor: CeleryExecutor,KubernetesExecutor ``` ### Docker Image customizations n/a ### What happened First, the JSON schema specification failed as it has a full allowlist of all possible combinations. Then, when I skipped schema verification, the deployment failed because the executor value is used as a label on at least one deployment. ### What you think should happen instead The helm chart should deploy successfully when multiple executors are specified as described in [the docs](https://airflow.apache.org/docs/apache-airflow/stable/core-concepts/executor/index.html#using-multiple-executors-concurrently). ### How to reproduce ```shell helm upgrade --install airflow apache-airflow/airflow --set executor=CeleryExecutor,KubernetesExecutor ``` and ```shell helm upgrade --install airflow apache-airflow/airflow --set executor=CeleryExecutor,KubernetesExecutor --skip-schema-validation ``` ### Anything else _No response_ ### Are you willing to submit PR? - [ ] Yes I am willing to submit a PR! ### Code of Conduct - [X] I agree to follow this project's [Code of Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md) -- 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]
