Prateekinlinux | 445a18e | 2018-08-01 06:48:33 +0000 | [diff] [blame] | 1 | # Copyright © 2018 Amdocs, Bell Canada |
| 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. |
jasmineWen | 66f6a3b | 2018-04-03 17:48:41 +0000 | [diff] [blame] | 14 | 1. Get the application URL by running these commands: |
| 15 | {{- if .Values.ingress.enabled }} |
| 16 | {{- range .Values.ingress.hosts }} |
| 17 | http://{{ . }} |
| 18 | {{- end }} |
| 19 | {{- else if contains "NodePort" .Values.service.type }} |
| 20 | export NODE_PORT=$(kubectl get --namespace {{ include "common.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.fullname" . }}) |
| 21 | export NODE_IP=$(kubectl get nodes --namespace {{ include "common.namespace" . }} -o jsonpath="{.items[0].status.addresses[0].address}") |
| 22 | echo http://$NODE_IP:$NODE_PORT |
| 23 | {{- else if contains "LoadBalancer" .Values.service.type }} |
| 24 | NOTE: It may take a few minutes for the LoadBalancer IP to be available. |
| 25 | You can watch the status of by running 'kubectl get svc -w {{ include "common.fullname" . }}' |
| 26 | export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') |
| 27 | echo http://$SERVICE_IP:{{ .Values.service.externalPort }} |
| 28 | {{- else if contains "ClusterIP" .Values.service.type }} |
| 29 | export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ template "common.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") |
| 30 | echo "Visit http://127.0.0.1:8080 to use your application" |
| 31 | kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} |
| 32 | {{- end }} |