blob: d7c50a9e20069e8ed054fe4f7218ae0a81198d1b [file] [log] [blame]
Nishukumar376ba1e2018-08-03 09:17:23 +00001# Copyright © 2018 AT&T, Amdocs, Bell Canada Intellectual Property. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
Priyanka90e0e262018-03-21 06:44:25 +0000141. Get the application URL by running these commands:
15{{- if .Values.ingress.enabled }}
16{{- range .Values.ingress.hosts }}
17 http://{{ . }}
18{{- end }}
19 NOTE: It may take a few minutes for the LoadBalancer IP to be available.
20 You can watch the status of by running 'kubectl get svc -w {{ include "common.name" . }}'
21 export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.name" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
22 echo http://$SERVICE_IP:{{ .Values.service.externalPort }}
23 export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ .Chart.Name }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
24 echo "Visit http://127.0.0.1:8080 to use your application"
25 kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }}
26{{- end }}