blob: d465ccf19780898a2eebe69fa2694f9613381f46 [file] [log] [blame]
Andy Bavier177f29f2020-08-12 14:42:00 -07001{{/*
2Copyright 2020-present Open Networking Foundation
Scott Baker4cad5ee2022-06-09 14:17:35 -07003SPDX-License-Identifier: Apache-2.0
Andy Bavier177f29f2020-08-12 14:42:00 -07004*/}}
5
61. Get the application URL by running these commands:
7{{- if .Values.ingress.enabled }}
8{{- range $host := .Values.ingress.hosts }}
9 {{- range .paths }}
10 http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }}
11 {{- end }}
12{{- end }}
13{{- else if contains "NodePort" .Values.service.type }}
14 export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "edge-monitoring-server.fullname" . }})
15 export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
16 echo http://$NODE_IP:$NODE_PORT
17{{- else if contains "LoadBalancer" .Values.service.type }}
18 NOTE: It may take a few minutes for the LoadBalancer IP to be available.
19 You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "edge-monitoring-server.fullname" . }}'
20 export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "edge-monitoring-server.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
21 echo http://$SERVICE_IP:{{ .Values.service.port }}
22{{- else if contains "ClusterIP" .Values.service.type }}
23 export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "edge-monitoring-server.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
24 echo "Visit http://127.0.0.1:8080 to use your application"
25 kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:80
26{{- end }}