jedcunningham commented on a change in pull request #15627:
URL: https://github.com/apache/airflow/pull/15627#discussion_r626076478
##########
File path: chart/templates/flower/flower-deployment.yaml
##########
@@ -73,7 +73,11 @@ spec:
- name: flower
image: {{ template "flower_image" . }}
imagePullPolicy: {{ .Values.images.flower.pullPolicy }}
- args: ["bash", "-c", "airflow celery flower || airflow flower"]
+ {{- if semverCompare ">=2.0.0" .Values.airflowVersion }}
+ args: ["bash", "-c", "airflow celery flower"]
Review comment:
```suggestion
args: ["airflow", "celery", "flower"]
```
Or if we really need bash (e.g. #13526 is still a problem):
```suggestion
args: ["bash", "-c", "exec airflow celery flower"]
```
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]