From 390bf695d0a49f33a010f9cb014672b4a8d618ce Mon Sep 17 00:00:00 2001 From: Jeev B Date: Wed, 3 Mar 2021 11:05:00 -0800 Subject: [PATCH] Expose kubernetes dashboard (#126) Signed-off-by: Jeev B Signed-off-by: Ketan Umare --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 13788b029..2bea05cd7 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ # Flyte sandbox configuration variables FLYTE_PROXY_PORT := 30081 +K8S_DASHBOARD_PROXY_PORT := 30082 MINIO_PROXY_PORT := 30084 FLYTE_SANDBOX_NAME := flyte-sandbox @@ -43,6 +44,7 @@ start: ## Start a local Flyte sandbox -e FLYTE_AWS_ENDPOINT=http://localhost:30084/ \ -v $(CURDIR):/usr/src \ -p $(FLYTE_PROXY_PORT):30081 \ + -p $(K8S_DASHBOARD_PROXY_PORT):30082 \ -p $(MINIO_PROXY_PORT):30084 \ ghcr.io/flyteorg/flyte-sandbox:dind > /dev/null $(call RUN_IN_SANDBOX, wait-for-flyte.sh)