From 174548659f7037db6dd638eb4a6260820030af60 Mon Sep 17 00:00:00 2001 From: Peter Hunt Date: Thu, 29 Oct 2020 17:17:53 -0400 Subject: [PATCH] hack/local-up-cluster.sh: fix API_PORT commit kubernetes/kubernetes@cfc2b33 causes a local cluster to not come up because it sets the default insecure port to 8080, which is no longer valid Signed-off-by: Peter Hunt --- hack/local-up-cluster.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/local-up-cluster.sh b/hack/local-up-cluster.sh index bb370c96c20..353d97ec784 100755 --- a/hack/local-up-cluster.sh +++ b/hack/local-up-cluster.sh @@ -207,7 +207,7 @@ fi # Shut down anyway if there's an error. set +e -API_PORT=${API_PORT:-8080} +API_PORT=${API_PORT:-0} API_SECURE_PORT=${API_SECURE_PORT:-6443} # WARNING: For DNS to work on most setups you should export API_HOST as the docker0 ip address,