From 914c5eb1f17506a22100ca647129621fa2f8f090 Mon Sep 17 00:00:00 2001 From: Richard Larocque Date: Mon, 17 Nov 2014 17:05:59 -0800 Subject: [PATCH] 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. --- cluster/vagrant/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/vagrant/util.sh b/cluster/vagrant/util.sh index 7871bcf9d5f..1d827d9a094 100644 --- a/cluster/vagrant/util.sh +++ b/cluster/vagrant/util.sh @@ -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}" )