Commit 5b58a6cb authored by Mike Danese's avatar Mike Danese

sanitize + in KUBE_VERSION during gce upgrade

parent f8a9943d
...@@ -173,7 +173,7 @@ function upgrade-nodes() { ...@@ -173,7 +173,7 @@ function upgrade-nodes() {
# KUBELET_KEY_BASE64 # KUBELET_KEY_BASE64
function prepare-node-upgrade() { function prepare-node-upgrade() {
echo "== Preparing node upgrade (to ${KUBE_VERSION}). ==" >&2 echo "== Preparing node upgrade (to ${KUBE_VERSION}). ==" >&2
SANITIZED_VERSION=$(echo ${KUBE_VERSION} | sed s/"\."/-/g) SANITIZED_VERSION=$(echo ${KUBE_VERSION} | sed 's/[\.\+]/-/g')
detect-minion-names detect-minion-names
......
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