From 221a200428fca4f2bcdbf93cfe2bdc9e27eb3101 Mon Sep 17 00:00:00 2001 From: David Hoese <david.hoese@ssec.wisc.edu> Date: Fri, 14 Aug 2020 07:08:58 -0500 Subject: [PATCH] Fix missing kubeconfig on rabbitmq deploy --- helpers/deploy_rabbitmq.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/deploy_rabbitmq.sh b/helpers/deploy_rabbitmq.sh index 47b16dc..3dcda61 100755 --- a/helpers/deploy_rabbitmq.sh +++ b/helpers/deploy_rabbitmq.sh @@ -31,7 +31,7 @@ helm upgrade -v 2 --install --kubeconfig $kubeconfig -f ${values_base}/values-ge # do a little waiting for the rabbitmq pod to be ready so future stages # don't fail to communicate with it echo "Start waiting for rabbitmq: $(date +%Y%m%dT%H%M%S)" -kubectl2 wait -n $ns pod/geosphere-rabbit-rabbitmq-0 --timeout 120s --for=condition=Ready +kubectl2 wait --kubeconfig $kubeconfig -n $ns pod/geosphere-rabbit-rabbitmq-0 --timeout 120s --for=condition=Ready status=$? echo "Done waiting for rabbitmq: $(date +%Y%m%dT%H%M%S) : $status" exit $status -- GitLab