Update Kong ingress controller to version 1.4. It fixes the occasional 404 error.
[ric-plt/ric-dep.git] / helm / infrastructure / subcharts / kong / templates / NOTES.txt
1 To connect to Kong, please execute the following command
2
3
4 {{- if contains "LoadBalancer" .Values.proxy.type }}
5   HOST=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "kong.fullname" . }}-proxy -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
6   PORT=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "kong.fullname" . }}-proxy -o jsonpath='{.spec.ports[0].port}')
7 {{- else if contains "NodePort" .Values.proxy.type -}}
8   HOST=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath='{.items[0].status.addresses[0].address}')
9   PORT=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "kong.fullname" . }}-proxy -o jsonpath='{.spec.ports[0].nodePort}')
10 {{- end -}}
11 export PROXY_IP=${HOST}:${PORT}
12 curl $PROXY_IP
13
14 Once installed, please follow along the getting started guide to start using Kong:
15 https://bit.ly/k4k8s-get-started
16