about summary refs log tree commit diff
path: root/k8s/rest-api/templates/NOTES.txt
diff options
context:
space:
mode:
Diffstat (limited to 'k8s/rest-api/templates/NOTES.txt')
-rw-r--r--k8s/rest-api/templates/NOTES.txt8
1 files changed, 1 insertions, 7 deletions
diff --git a/k8s/rest-api/templates/NOTES.txt b/k8s/rest-api/templates/NOTES.txt
index 343c764..fa5e840 100644
--- a/k8s/rest-api/templates/NOTES.txt
+++ b/k8s/rest-api/templates/NOTES.txt
@@ -1,11 +1,5 @@
 1. Get the application URL by running these commands:
-{{- 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 }}
+{{- if contains "NodePort" .Values.service.type }}
   export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "rest-api.fullname" . }})
   export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
   echo http://$NODE_IP:$NODE_PORT