potiuk commented on code in PR #32604: URL: https://github.com/apache/airflow/pull/32604#discussion_r1270330511
########## airflow/providers/celery/provider.yaml: ########## @@ -60,3 +60,256 @@ sensors: executors: - airflow.providers.celery.executors.celery_executor.CeleryExecutor - airflow.providers.celery.executors.celery_kubernetes_executor.CeleryKubernetesExecutor + +config: + celery_kubernetes_executor: + description: | + This section only applies if you are using the ``CeleryKubernetesExecutor`` in + ``[core]`` section above + options: + kubernetes_queue: + description: | + Define when to send a task to ``KubernetesExecutor`` when using ``CeleryKubernetesExecutor``. + When the queue of a task is the value of ``kubernetes_queue`` (default ``kubernetes``), + the task is executed via ``KubernetesExecutor``, + otherwise via ``CeleryExecutor`` + version_added: 2.0.0 Review Comment: Right. We should remove it simply. It makes no sense to have it here. -- 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]
