You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/05/13 09:40:31 UTC

[airflow] branch master updated: Chart: Rename `dashboard` to `Webserver` in Installation Notes (#15808)

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 5581631  Chart: Rename `dashboard` to `Webserver` in Installation Notes (#15808)
5581631 is described below

commit 5581631172f03223211dd9c330a16101f76b4676
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Thu May 13 10:40:19 2021 +0100

    Chart: Rename `dashboard` to `Webserver` in Installation Notes (#15808)
    
    Before:
    
    ```
    Your release is named airflow.
    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/airflow-webserver 8080:8080 --namespace airflow
    Flower dashboard:         kubectl port-forward svc/airflow-flower 5555:5555 --namespace airflow
    ```
    
    After:
    ```
    Your release is named airflow.
    You can now access your service(s) by executing the following command(s) and visiting the corresponding port at localhost in your browser:
    
    Airflow Webserver:        kubectl port-forward svc/airflow-webserver 8080:8080 --namespace airflow
    Flower dashboard:         kubectl port-forward svc/airflow-flower 5555:5555 --namespace airflow
    ```
---
 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 1894421..9fa5e4e 100644
--- a/chart/templates/NOTES.txt
+++ b/chart/templates/NOTES.txt
@@ -21,9 +21,9 @@ under the License.
 Your release is named {{ .Release.Name }}.
 
 {{- if .Values.ingress.enabled }}
-You can now access your dashboard(s) by following defined Ingress urls:
+You can now access your service(s) by following defined Ingress urls:
 
-Airflow dashboard:     http{{ if .Values.ingress.web.tls.enabled }}s{{ end }}://{{ .Values.ingress.web.host }}{{ .Values.ingress.web.path }}/
+Airflow Webserver:     http{{ if .Values.ingress.web.tls.enabled }}s{{ end }}://{{ .Values.ingress.web.host }}{{ .Values.ingress.web.path }}/
 {{- if or (eq .Values.executor "CeleryExecutor") (eq .Values.executor "CeleryKubernetesExecutor") }}
 Flower dashboard:      http{{ if .Values.ingress.flower.tls.enabled }}s{{ end }}://{{ .Values.ingress.flower.host }}{{ .Values.ingress.flower.path }}/
 {{- end }}