Skip to content

Commit 7b494ac

Browse files
committed
Replace https with http
1 parent 4b4beb1 commit 7b494ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/NOTES.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ echo https://${ST2WEB_IP}/
1818

1919
{{- else if contains "ClusterIP" .Values.st2web.service.type }}
2020

21-
echo https://127.0.0.1:8443
22-
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ .Release.Name }}-st2web{{ template "enterpriseSuffix" . }} 8443:443
21+
echo http://127.0.0.1:8080
22+
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ .Release.Name }}-st2web{{ template "enterpriseSuffix" . }} 8080:80
2323

2424
{{- else if contains "NodePort" .Values.st2web.service.type }}
2525

2626
export ST2WEB_IP=$(minikube ip 2>/dev/null || kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
2727
export ST2WEB_PORT="$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ .Release.Name }}-st2web{{ template "enterpriseSuffix" . }})"
28-
echo https://${ST2WEB_IP}:${ST2WEB_PORT}/
28+
echo http://${ST2WEB_IP}:${ST2WEB_PORT}/
2929

3030
{{- end }}
3131

0 commit comments

Comments
 (0)