Skip to content

Commit 1753e9a

Browse files
fjumakabir
authored andcommitted
fix: Configure Kind to use podman if specified for clean up too
1 parent 746c8a4 commit 1753e9a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

examples/cloud-deployment/scripts/cleanup.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ while [[ $# -gt 0 ]]; do
2727
esac
2828
done
2929

30+
# Configure Kind to use podman if specified
31+
if [ "$CONTAINER_TOOL" = "podman" ]; then
32+
export KIND_EXPERIMENTAL_PROVIDER=podman
33+
fi
34+
3035
echo -e "${YELLOW}This will delete all resources in the a2a-demo namespace and the Kind cluster${NC}"
3136
read -p "Are you sure you want to continue? (y/N) " -n 1 -r
3237
echo ""

0 commit comments

Comments
 (0)