Commit 7f5ed541 authored by Zach Loafman's avatar Zach Loafman

Merge pull request #4106 from brendandburns/e2e2

Fix goe2e.sh (I hope)
parents 9384f01d b3014e43
...@@ -78,6 +78,10 @@ elif [[ "${KUBERNETES_PROVIDER}" == "gke" ]]; then ...@@ -78,6 +78,10 @@ elif [[ "${KUBERNETES_PROVIDER}" == "gke" ]]; then
"--auth_config=${cfg_dir}/kubernetes_auth" "--auth_config=${cfg_dir}/kubernetes_auth"
"--cert_dir=${cfg_dir}" "--cert_dir=${cfg_dir}"
) )
elif [[ "${KUBERNETES_PROVIDER}" == "gce" ]]; then
auth_config=(
"--auth_config=${HOME}/.kube/${INSTANCE_PREFIX}/kubernetes_auth"
)
else else
auth_config=() auth_config=()
fi fi
......
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