|
1 | | -1. Get the application URL by running these commands: |
| 1 | +CHART NAME: {{ .Chart.Name }} |
| 2 | +CHART VERSION: {{ .Chart.Version }} |
| 3 | +APP VERSION: {{ .Chart.AppVersion }} |
| 4 | + |
| 5 | +** Please be patient while the chart is being deployed ** |
| 6 | + |
| 7 | +1. Access your Warren api installation: |
2 | 8 | {{- if .Values.ingress.enabled }} |
3 | | -{{- range $host := .Values.ingress.host }} |
4 | | - {{- range .paths }} |
5 | | - http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} |
| 9 | + Connect to one of the following hosts: |
| 10 | + {{ if .Values.ingress.tls }} |
| 11 | + https://{{ .Values.ingress.host }} |
| 12 | + {{- else }} |
| 13 | + http://{{ .Values.ingress.host }} |
6 | 14 | {{- end }} |
7 | | -{{- end }} |
8 | 15 | {{- else if contains "NodePort" .Values.service.type }} |
9 | 16 | export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "api.fullname" . }}) |
10 | 17 | export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") |
11 | | - echo http://$NODE_IP:$NODE_PORT |
| 18 | + echo "Warren API URL: http://$NODE_IP:$NODE_PORT" |
12 | 19 | {{- else if contains "LoadBalancer" .Values.service.type }} |
13 | 20 | NOTE: It may take a few minutes for the LoadBalancer IP to be available. |
14 | 21 | You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "api.fullname" . }}' |
15 | 22 | export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "api.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") |
16 | 23 | echo http://$SERVICE_IP:{{ .Values.service.port }} |
17 | 24 | {{- else if contains "ClusterIP" .Values.service.type }} |
18 | | - export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "api.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") |
| 25 | + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "api.name" . }},api.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") |
19 | 26 | export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") |
20 | 27 | echo "Visit http://127.0.0.1:8080 to use your application" |
21 | 28 | kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT |
|
0 commit comments