blob: acb7dd94b3ceffb8977731a95f31c7affe31522e [file] [log] [blame]
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04001# Copyright © 2017 Amdocs, Bell Canada
Nishukumar376ba1e2018-08-03 09:17:23 +00002# Modifications Copyright © 2018 AT&T,VMware
Ikram Ikramullah40b120b2018-05-01 11:35:40 -04003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
161. Get the application URL by running these commands:
17{{- if .Values.ingress.enabled }}
18{{- range .Values.ingress.hosts }}
19 http://{{ . }}
20{{- end }}
21{{- else if contains "NodePort" .Values.service.type }}
22 export NODE_PORT=$(kubectl get --namespace {{ include "common.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.fullname" . }})
23 export NODE_IP=$(kubectl get nodes --namespace {{ include "common.namespace" . }} -o jsonpath="{.items[0].status.addresses[0].address}")
24 echo http://$NODE_IP:$NODE_PORT
25{{- else if contains "LoadBalancer" .Values.service.type }}
26 NOTE: It may take a few minutes for the LoadBalancer IP to be available.
27 You can watch the status of by running 'kubectl get svc -w {{ include "common.fullname" . }}'
28 export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
29 echo http://$SERVICE_IP:{{ .Values.service.externalPort }}
30{{- else if contains "ClusterIP" .Values.service.type }}
Mandeep Khindafe527eb2018-10-16 09:56:34 -040031 export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ template "common.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
Ikram Ikramullah40b120b2018-05-01 11:35:40 -040032 echo "Visit http://127.0.0.1:8080 to use your application"
33 kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }}
34{{- end }}