blob: 5448714b3badf344698c92807ef737d209d647ee [file] [log] [blame]
Andy Bavier1cd0a4b2021-04-26 15:24:57 -07001{{/*
2Copyright 2020-present Open Networking Foundation
3SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0
4*/}}
5
61. Get the application URL by running these commands:
7{{- if contains "NodePort" .Values.service.type }}
8 export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "edge-maintenance-agent.fullname" . }})
9 export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
10 echo http://$NODE_IP:$NODE_PORT
11{{- else if contains "LoadBalancer" .Values.service.type }}
12 NOTE: It may take a few minutes for the LoadBalancer IP to be available.
13 You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "edge-maintenance-agent.fullname" . }}'
14 export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "edge-maintenance-agent.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
15 echo http://$SERVICE_IP:{{ .Values.service.port }}
16{{- else if contains "ClusterIP" .Values.service.type }}
17 export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "edge-maintenance-agent.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
18 echo "Visit http://127.0.0.1:8080 to use your application"
19 kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:8080
20{{- end }}