hussein-awala commented on code in PR #30423:
URL: https://github.com/apache/airflow/pull/30423#discussion_r1155183138
##########
chart/templates/secrets/redis-secrets.yaml:
##########
@@ -22,6 +22,7 @@
# when we need them. We will always deploy them defensively to make the
executor
# update path actually work.
+{{- if or (eq .Values.executor "CeleryExecutor") (eq .Values.executor
"CeleryKubernetesExecutor") }}
Review Comment:
why not adding this to the existing condition instead of adding a new one?
```
{{- if and (or (eq .Values.executor "CeleryExecutor") (eq .Values.executor
"CeleryKubernetesExecutor")) .Values.redis.enabled (not
.Values.redis.passwordSecretName) }}
```
--
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]