Commit 8ba169f6 authored by bgrant0607's avatar bgrant0607

Merge pull request #2983 from jbeda/local-clarify

Make it clearer how to run kubectl after bringing up a local cluster.
parents 56ee6683 e933ac57
......@@ -128,13 +128,21 @@ SCHEDULER_LOG=/tmp/kube-scheduler.log
--master="http://${API_HOST}:${API_PORT}" >"${SCHEDULER_LOG}" 2>&1 &
SCHEDULER_PID=$!
echo "Local Kubernetes cluster is running. Press Ctrl-C to shut it down."
echo "Logs: "
echo " ${APISERVER_LOG}"
echo " ${CTLRMGR_LOG}"
echo " ${KUBELET_LOG}"
echo " ${PROXY_LOG}"
echo " ${SCHEDULER_LOG}"
cat <<EOF
Local Kubernetes cluster is running. Press Ctrl-C to shut it down.
Logs:
${APISERVER_LOG}
${CTLRMGR_LOG}
${KUBELET_LOG}
${PROXY_LOG}
${SCHEDULER_LOG}
To start using your cluster, open up another terminal/tab and run:
export KUBERNETES_PROVIDER=local
cluster/kubectl.sh
EOF
cleanup()
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment