vaibhavjayas | ea9aee0 | 2018-08-31 06:22:26 +0000 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, Bell Canada |
| 2 | # |
| 3 | # This file is licensed under the CREATIVE COMMONS ATTRIBUTION 4.0 INTERNATIONAL LICENSE |
| 4 | # |
| 5 | # Full license text at https://creativecommons.org/licenses/by/4.0/legalcode |
| 6 | |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 7 | 1. Get the application URL by running these commands: |
| 8 | {{- if .Values.ingress.enabled }} |
| 9 | {{- range .Values.ingress.hosts }} |
| 10 | http://{{ . }} |
| 11 | {{- end }} |
| 12 | {{- else if contains "NodePort" .Values.service.type }} |
| 13 | export NODE_PORT=$(kubectl get --namespace {{ include "common.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.name" . }}) |
| 14 | export NODE_IP=$(kubectl get nodes --namespace {{ include "common.namespace" . }} -o jsonpath="{.items[0].status.addresses[0].address}") |
| 15 | echo http://$NODE_IP:$NODE_PORT |
| 16 | {{- else if contains "LoadBalancer" .Values.service.type }} |
| 17 | NOTE: It may take a few minutes for the LoadBalancer IP to be available. |
| 18 | You can watch the status of by running 'kubectl get svc -w {{ include "common.name" . }}' |
| 19 | export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.name" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') |
| 20 | echo http://$SERVICE_IP:{{ .Values.service.externalPort }} |
| 21 | {{- else if contains "ClusterIP" .Values.service.type }} |
Mandeep Khinda | fe527eb | 2018-10-16 09:56:34 -0400 | [diff] [blame] | 22 | export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ template "common.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") |
vaibhav_16dec | d3bc08f | 2018-03-15 07:05:10 +0000 | [diff] [blame] | 23 | echo "Visit http://127.0.0.1:8080 to use your application" |
| 24 | kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} |
| 25 | {{- end }} |