From 8f2c29635c3a021834a93715fe9420b7cc970b31 Mon Sep 17 00:00:00 2001 From: Hui Kang Date: Thu, 10 Sep 2020 20:53:46 +0000 Subject: [PATCH] Fix minor comment in a script The variable API_HOST is defined below the comment Signed-off-by: Hui Kang --- 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 3bfc83ab5c7..5c323c933d3 100755 --- a/hack/local-up-cluster.sh +++ b/hack/local-up-cluster.sh @@ -62,7 +62,7 @@ EVICTION_PRESSURE_TRANSITION_PERIOD=${EVICTION_PRESSURE_TRANSITION_PERIOD:-"1m"} # This script uses docker0 (or whatever container bridge docker is currently using) # and we don't know the IP of the DNS pod to pass in as --cluster-dns. # To set this up by hand, set this flag and change DNS_SERVER_IP. -# Note also that you need API_HOST (defined above) for correct DNS. +# Note also that you need API_HOST (defined below) for correct DNS. KUBE_PROXY_MODE=${KUBE_PROXY_MODE:-""} ENABLE_CLUSTER_DNS=${KUBE_ENABLE_CLUSTER_DNS:-true} ENABLE_NODELOCAL_DNS=${KUBE_ENABLE_NODELOCAL_DNS:-false}