Commit 11193402 authored by Manfred Geiler's avatar Manfred Geiler

fixed missing $

parent 96d34c11
......@@ -107,7 +107,7 @@ function detect-minions () {
KUBE_MINION_IP_ADDRESSES=()
for (( i=0; i<${#MINION_NAMES[@]}; i++)); do
local minion_ip
if [[ "ENABLE_MINION_PUBLIC_IP" == "true" ]]; then
if [[ "$ENABLE_MINION_PUBLIC_IP" == "true" ]]; then
minion_ip=$(get_instance_public_ip ${MINION_NAMES[$i]})
else
minion_ip=$(get_instance_private_ip ${MINION_NAMES[$i]})
......
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