diff options
author | Alexis de Talhouƫt <alexis.de_talhouet@bell.ca> | 2018-10-24 15:05:31 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-24 15:05:31 +0000 |
commit | 7290253b8ddeda359c5dc38ea1a1c43588a4af85 (patch) | |
tree | 15988913e763d9a153fe5d6182f3929aa9148f95 /kubernetes/common/dgbuilder/templates/NOTES.txt | |
parent | a2f1699038a9438d2654f6175245304e4de34d86 (diff) | |
parent | fe527eb5891f4b774a023df2313575e78a6ce9fe (diff) |
Merge "fixing clusterIP service type errors"
Diffstat (limited to 'kubernetes/common/dgbuilder/templates/NOTES.txt')
-rw-r--r-- | kubernetes/common/dgbuilder/templates/NOTES.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/common/dgbuilder/templates/NOTES.txt b/kubernetes/common/dgbuilder/templates/NOTES.txt index a70ad108e1..27db4f3535 100644 --- a/kubernetes/common/dgbuilder/templates/NOTES.txt +++ b/kubernetes/common/dgbuilder/templates/NOTES.txt @@ -19,7 +19,7 @@ export SERVICE_IP=$(kubectl get svc --namespace {{ include "common.namespace" . }} {{ include "common.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') echo http://$SERVICE_IP:{{ .Values.service.externalPort }} {{- else if contains "ClusterIP" .Values.service.type }} - export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ template "so.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + export POD_NAME=$(kubectl get pods --namespace {{ include "common.namespace" . }} -l "app={{ template "common.name" . }},release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") echo "Visit http://127.0.0.1:8080 to use your application" kubectl port-forward $POD_NAME 8080:{{ .Values.service.internalPort }} {{- end }} |