blob: 66f5302a111c55527c79b2f958c284122ebcc0e6 [file] [log] [blame]
shivasubedic615a892021-08-24 13:17:07 +01001# ============LICENSE_START=======================================================
2# Copyright (C) 2021 Nordix Foundation
3# ================================================================================
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#
16# SPDX-License-Identifier: Apache-2.0
17# ============LICENSE_END=========================================================
18
191. Get the application URL by running these commands:
20{{- if .Values.ingress.enabled }}
21{{- range .Values.ingress.hosts }}
22 http://{{ . }}
23{{- end }}
24{{- else if contains "NodePort" .Values.service.type }}
25 export NODE_PORT=$(kubectl get --namespace {{ include "common.namespace" . }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "common.fullname" . }})
26 export NODE_IP=$(kubectl get nodes --namespace {{ include "common.namespace" . }} -o jsonpath="{.items[0].status.addresses[0].address}")
27 echo http://$NODE_IP:$NODE_PORT
28{{- else if contains "LoadBalancer" .Values.service.type }}
29 NOTE: It may take a few minutes for the LoadBalancer IP to be available.
30 You can watch the status of by running 'kubectl get svc -w {{ include "common.fullname" . }}'
31 export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
32 export SERVICE_PORT=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.fullname" . }} -o jsonpath='{.spec.ports[0].port}')
33 echo http://$SERVICE_IP:$SERVICE_PORT
34{{- else if contains "ClusterIP" .Values.service.type }}
35 export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ template "common.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
36 export POD_PORT=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ template "common.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].spec.containers[0].ports[0].containerPort}")
37 echo "Visit http://127.0.0.1:8080 to use your application"
38 kubectl port-forward $POD_NAME 8080:$POD_PORT
39{{- end }}