This is an automated email from the ASF dual-hosted git repository.
kaxilnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 4146aba Fix chart: parameterize namespace (#10213)
4146aba is described below
commit 4146abaf0af2ffb52e4bc1346907b1f3c2280902
Author: Muller Hsu <[email protected]>
AuthorDate: Fri Aug 7 18:14:53 2020 +0800
Fix chart: parameterize namespace (#10213)
Replace fixed namespace "airflow" with variable {{ .Release.Namespace }}
---
chart/templates/NOTES.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/chart/templates/NOTES.txt b/chart/templates/NOTES.txt
index c4e65cf..7eb9d84 100644
--- a/chart/templates/NOTES.txt
+++ b/chart/templates/NOTES.txt
@@ -22,8 +22,8 @@ Your release is named {{ .Release.Name }}.
You can now access your dashboard(s) by executing the following command(s) and
visiting the corresponding port at localhost in your browser:
-Airflow dashboard: kubectl port-forward svc/{{ .Release.Name
}}-webserver {{ .Values.ports.airflowUI }}:{{ .Values.ports.airflowUI }}
--namespace airflow
+Airflow dashboard: kubectl port-forward svc/{{ .Release.Name
}}-webserver {{ .Values.ports.airflowUI }}:{{ .Values.ports.airflowUI }}
--namespace {{ .Release.Namespace }}
{{- if eq .Values.executor "CeleryExecutor"}}
-Flower dashboard: kubectl port-forward svc/{{ .Release.Name }}-flower
{{ .Values.ports.flowerUI }}:{{ .Values.ports.flowerUI }} --namespace airflow
+Flower dashboard: kubectl port-forward svc/{{ .Release.Name }}-flower
{{ .Values.ports.flowerUI }}:{{ .Values.ports.flowerUI }} --namespace {{
.Release.Namespace }}
{{- end }}