From 11a748c175d7b4e233440c39a9324d893aa47a91 Mon Sep 17 00:00:00 2001 From: Andrew Lytvynov Date: Tue, 10 Jul 2018 16:49:38 -0700 Subject: [PATCH] Always mark gke-exec-auth-plugin executable --- cluster/gce/gci/configure.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cluster/gce/gci/configure.sh b/cluster/gce/gci/configure.sh index 05e156717e8..b14a3f9eed9 100644 --- a/cluster/gce/gci/configure.sh +++ b/cluster/gce/gci/configure.sh @@ -273,7 +273,8 @@ function install-exec-auth-plugin { echo "Downloading gke-exec-auth-plugin binary" download-or-bust "${plugin_sha1}" "${plugin_url}" - mv "${KUBE_HOME}/gke-exec-auth-plugin" "${KUBE_BIN}" + mv "${KUBE_HOME}/gke-exec-auth-plugin" "${KUBE_BIN}/gke-exec-auth-plugin" + chmod a+x "${KUBE_BIN}/gke-exec-auth-plugin" } function install-kube-manifests {