1 # ============LICENSE_START==========================================
 
   2 # ===================================================================
 
   3 #  Copyright (c) 2020 QCT
 
   5 #  Licensed under the Apache License, Version 2.0 (the "License");
 
   6 #  you may not use this file except in compliance with the License.
 
   7 #  You may obtain a copy of the License at
 
   9 #         http://www.apache.org/licenses/LICENSE-2.0
 
  11 # Unless required by applicable law or agreed to in writing, software
 
  12 # distributed under the License is distributed on an "AS IS" BASIS,
 
  13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  14 # See the License for the specific language governing permissions and
 
  15 # limitations under the License.
 
  16 #============LICENSE_END============================================
 
  18 1. Get the application URL by running these commands:
 
  19 {{- if .Values.ingress.enabled }}
 
  20 {{- range $host := .Values.ingress.hosts }}
 
  22   http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }}
 
  25 {{- else if contains "NodePort" .Values.service.type }}
 
  26   export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "dcae-datalake-admin-ui.fullname" . }})
 
  27   export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
 
  28   echo http://$NODE_IP:$NODE_PORT
 
  29 {{- else if contains "LoadBalancer" .Values.service.type }}
 
  30      NOTE: It may take a few minutes for the LoadBalancer IP to be available.
 
  31            You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "dcae-datalake-admin-ui.fullname" . }}'
 
  32   export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "dcae-datalake-admin-ui.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
 
  33   echo http://$SERVICE_IP:{{ .Values.service.port }}
 
  34 {{- else if contains "ClusterIP" .Values.service.type }}
 
  35   export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "dcae-datalake-admin-ui.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
 
  36   echo "Visit http://127.0.0.1:8080 to use your application"
 
  37   kubectl port-forward $POD_NAME 8080:80