Skip to content

Commit

Permalink
Merge pull request kubevirt#4373 from crobinso/cluster-sync-serial
Browse files Browse the repository at this point in the history
Serialize `make cluster-sync` build + deploy steps
  • Loading branch information
kubevirt-bot authored Oct 21, 2020
2 parents 9ed0772 + e95cc9b commit 440be9d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ cluster-clean:
cluster-deploy: cluster-clean
./hack/cluster-deploy.sh

cluster-sync: cluster-build cluster-deploy
cluster-sync:
$(MAKE) cluster-build
$(MAKE) cluster-deploy

builder-build:
./hack/builder/build.sh
Expand Down
2 changes: 1 addition & 1 deletion hack/cluster-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ for node in ${nodes[@]}; do
done
done

echo "Done"
echo "Done $0"
2 changes: 1 addition & 1 deletion hack/cluster-clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@ done

sleep 2

echo "Done"
echo "Done $0"
2 changes: 1 addition & 1 deletion hack/cluster-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ until _kubectl wait -n kubevirt kv kubevirt --for condition=Available --timeout
sleep 1m
done

echo "Done"
echo "Done $0"

0 comments on commit 440be9d

Please sign in to comment.