You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/11/11 02:41:44 UTC

[skywalking-showcase] branch main updated: Add hint to expose UI port

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git


The following commit(s) were added to refs/heads/main by this push:
     new 1948adb  Add hint to expose UI port
1948adb is described below

commit 1948adb47bc43c1049bf23b67651db35224c03aa
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Thu Nov 11 10:41:32 2021 +0800

    Add hint to expose UI port
---
 deploy/platform/kubernetes/Makefile | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/deploy/platform/kubernetes/Makefile b/deploy/platform/kubernetes/Makefile
index 5943d47..aeb6b4f 100644
--- a/deploy/platform/kubernetes/Makefile
+++ b/deploy/platform/kubernetes/Makefile
@@ -38,6 +38,13 @@ $(deploy_resources): deploy.%.resources: %
 
 .PHONY: deploy
 deploy: $(deploy_features)
+	@echo
+	@echo "Now wait the Pods to be ready and use the following command to expose the port of SkyWalking UI"
+	@echo
+	@echo "  $$ kubectl port-forward svc/rocket-bot 8080:8080 --namespace $(NAMESPACE)"
+	@echo
+	@echo "Then open your browser and navigate to http://localhost:8080"
+	@echo
 
 # Undeploy
 undeploy_features := $(foreach r,$(features),undeploy.$(r))