Chmod the right file in cluster/vagrant/util.sh

Most of platforms use ~/.kubernetes_auth, but Vagrant is different.
This commit fixes one instance where a setup script did not take this
difference into account.
This commit is contained in:
Richard Larocque 2014-11-17 17:05:59 -08:00
parent 38ccb26fe0
commit 914c5eb1f1

View File

@ -62,7 +62,7 @@ function kube-up {
}
EOF
chmod 0600 ~/.kubernetes_auth "${HOME}/${kube_cert}" \
chmod 0600 ~/.kubernetes_vagrant_auth "${HOME}/${kube_cert}" \
"${HOME}/${kube_key}" "${HOME}/${ca_cert}"
)