From 849b53bbe2d27ed7983878c7b55b8d2a740af471 Mon Sep 17 00:00:00 2001 From: Navendu Pottekkat Date: Tue, 7 Dec 2021 18:40:07 +0530 Subject: [PATCH] add sleep to wait till the application is deployed Signed-off-by: Navendu Pottekkat --- .github/workflows/scripts/osm_deploy.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/scripts/osm_deploy.sh b/.github/workflows/scripts/osm_deploy.sh index 2598c0b..722fba3 100644 --- a/.github/workflows/scripts/osm_deploy.sh +++ b/.github/workflows/scripts/osm_deploy.sh @@ -20,6 +20,9 @@ osm install \ kubectl create namespace bookstore osm namespace add bookstore kubectl apply -f https://raw.githubusercontent.com/openservicemesh/osm/release-v0.11/docs/example/manifests/apps/bookstore.yaml + +sleep 100 + kubectl get deployments -n bookstore kubectl get pods -n bookstore