Merge "[UUI] Service Mesh Compliance for UUI"
[oom.git] / kubernetes / common / dgbuilder / templates / NOTES.txt
1 # Copyright © 2018 AT&T, 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
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.fullname" . }})
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.fullname" . }}'
19   export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
20   echo http://$SERVICE_IP:{{ .Values.service.externalPort }}
21 {{- else if contains "ClusterIP" .Values.service.type }}
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}")
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 }}