Fix typo of "attempts" in vsphere util.sh during checks.

This commit is contained in:
Neil Hanlon 2016-03-10 13:05:19 -05:00
parent 1460f24746
commit df7f55f616

View File

@ -236,7 +236,7 @@ function kube-check {
let effective_timeout=($timeout/$sleepstep) let effective_timeout=($timeout/$sleepstep)
attempt=0 attempt=0
echo echo
printf "This may take several minutes. Bound to $effective_timeout attemmps" printf "This may take several minutes. Bound to $effective_timeout attempts"
while true; do while true; do
local rc=0 local rc=0
output=$(kube-ssh ${nodeip} "${cmd}") || rc=1 output=$(kube-ssh ${nodeip} "${cmd}") || rc=1
@ -274,7 +274,7 @@ function remote-pgrep {
max_attempt=60 max_attempt=60
printf "This may take several minutes. Bound to $max_attempt attemmps" printf "This may take several minutes. Bound to $max_attempt attempts"
attempt=0 attempt=0
while true; do while true; do