Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions try-margo/margo-installer/setup_margo_sandobox_client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@ if [ $? -ne 0 ]; then
exit 1
fi

echo "Starting docker-compose agent.."
sudo -E bash device-agent.sh docker start-docker
if [ $? -ne 0 ]; then
echo "Failed to start docker-compose agent."
exit 1
fi

kubectl -n default get pods
kubectl -n default wait --timeout=1m --for=condition=ready pod -l app=workload-fleet-management-client-pod
if [ $? -ne 0 ]; then
Expand Down
Loading