danielhoherd commented on issue #26971:
URL: https://github.com/apache/airflow/issues/26971#issuecomment-1273526445
Verified that `executor=CeleryExecutor` shows up in the airflow deployment
by default:
```
$ helm list -n aftest
NAME NAMESPACE REVISION UPDATED
STATUS CHART APP VERSION
airflow aftest 1 2022-10-10 11:51:10.148779
-0400 EDT deployed airflow-1.7.0 2.4.1
$ k -n aftest get deployment airflow-scheduler --show-labels
NAME READY UP-TO-DATE AVAILABLE AGE LABELS
airflow-scheduler 1/1 1 1 4m2s
app.kubernetes.io/managed-by=Helm,chart=airflow-1.7.0,component=scheduler,executor=CeleryExecutor,heritage=Helm,release=airflow,tier=airflow
```
Also verified with `KubernetesExecutor`:
```
$ helm upgrade -n aftest airflow . --set executor=KubernetesExecutor
...lots of output...
$ k -n aftest get deployment airflow-scheduler --show-labels
NAME READY UP-TO-DATE AVAILABLE AGE LABELS
airflow-scheduler 1/1 1 1 7m46s
app.kubernetes.io/managed-by=Helm,chart=airflow-1.7.0,component=scheduler,executor=KubernetesExecutor,heritage=Helm,release=airflow,tier=airflow
```
--
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]