mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
e2e: fix kubectl_retry to not return a stale error
While deploying Rook, there can be issues when the environment is not completely settled yet. On occasion the 1st kubectl command fails with The connection to the server ... was refused - did you specify the right host or port? This would set the 'ret' variable to a non-zero value, before the next retry of the kubectl command is done. In case the kubectl command succeeds, the 'ret' variable still contains the old non-zero value, and kubectl_retry returns the incorrect result. By setting the 'ret' variable to 0 before calling kubectl again, this problem is prevented. Signed-off-by: Niels de Vos <ndevos@redhat.com>
This commit is contained in:
parent
9160a5309e
commit
09fac4d9e2
@ -66,6 +66,10 @@ kubectl_retry() {
|
||||
echo "kubectl_retry ${*} failed, will retry in ${KUBECTL_RETRY_DELAY} seconds"
|
||||
|
||||
sleep ${KUBECTL_RETRY_DELAY}
|
||||
|
||||
# reset ret so that a next working kubectl does not cause a non-zero
|
||||
# return of the function
|
||||
ret=0
|
||||
done
|
||||
|
||||
# write output so that calling functions can consume it
|
||||
|
Loading…
Reference in New Issue
Block a user