41 lines
2.8 KiB
Plaintext
41 lines
2.8 KiB
Plaintext
1. Get the application URL by running these commands:
|
|
{{- $ctx := dict "helm" . }}
|
|
{{- $ns := include "vm.namespace" $ctx }}
|
|
{{- $fullname := include "vm.fullname" $ctx }}
|
|
{{- $name := include "vm.name" $ctx }}
|
|
{{- $release := include "vm.release" $ctx }}
|
|
{{- if .Values.route.enabled }}
|
|
{{- if .Values.route.hostnames }}
|
|
export APP_HOSTNAME={{ .Values.route.hostnames | first }}
|
|
{{- else }}
|
|
export APP_HOSTNAME=$(kubectl get --namespace {{(first .Values.route.parentRefs).namespace | default $ns }} gateway/{{ (first .Values.route.parentRefs).name }} -o jsonpath="{.spec.listeners[?(@.name=='{{ (first .Values.route.parentRefs).sectionName | default "http" }}')].hostname}")
|
|
{{- end }}
|
|
{{- if and .Values.route.rules (first .Values.route.rules).matches (first (first .Values.route.rules).matches).path.value }}
|
|
echo "Visit http://$APP_HOSTNAME{{ (first (first .Values.route.rules).matches).path.value }} to use your application"
|
|
|
|
NOTE: Your HTTPRoute depends on the listener configuration of your gateway and your HTTPRoute rules.
|
|
The rules can be set for path, method, header and query parameters.
|
|
You can check the gateway configuration with 'kubectl get --namespace {{(first .Values.route.parentRefs).namespace | default $ns }} gateway/{{ (first .Values.route.parentRefs).name }} -o yaml'
|
|
{{- end }}
|
|
{{- else if .Values.ingress.enabled }}
|
|
{{- range $host := .Values.ingress.hosts }}
|
|
{{- range .paths }}
|
|
http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- else if contains "NodePort" .Values.service.type }}
|
|
export NODE_PORT=$(kubectl get --namespace {{ $ns }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "vm.fullname" . }})
|
|
export NODE_IP=$(kubectl get nodes --namespace {{ $ns }} -o jsonpath="{.items[0].status.addresses[0].address}")
|
|
echo http://$NODE_IP:$NODE_PORT
|
|
{{- else if contains "LoadBalancer" .Values.service.type }}
|
|
NOTE: It may take a few minutes for the LoadBalancer IP to be available.
|
|
You can watch its status by running 'kubectl get --namespace {{ $ns }} svc -w {{ $fullname }}'
|
|
export SERVICE_IP=$(kubectl get svc --namespace {{ $ns }} {{ $fullname }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}")
|
|
echo http://$SERVICE_IP:{{ .Values.service.port }}
|
|
{{- else if contains "ClusterIP" .Values.service.type }}
|
|
export POD_NAME=$(kubectl get pods --namespace {{ $ns }} -l "app.kubernetes.io/name={{ $name }},app.kubernetes.io/instance={{ $release }}" -o jsonpath="{.items[0].metadata.name}")
|
|
export CONTAINER_PORT=$(kubectl get pod --namespace {{ $ns }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}")
|
|
echo "Visit http://127.0.0.1:8080 to use your application"
|
|
kubectl --namespace {{ $ns }} port-forward $POD_NAME 8080:$CONTAINER_PORT
|
|
{{- end }}
|