We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 746c8a4 commit 1753e9aCopy full SHA for 1753e9a
examples/cloud-deployment/scripts/cleanup.sh
@@ -27,6 +27,11 @@ while [[ $# -gt 0 ]]; do
27
esac
28
done
29
30
+# Configure Kind to use podman if specified
31
+if [ "$CONTAINER_TOOL" = "podman" ]; then
32
+ export KIND_EXPERIMENTAL_PROVIDER=podman
33
+fi
34
+
35
echo -e "${YELLOW}This will delete all resources in the a2a-demo namespace and the Kind cluster${NC}"
36
read -p "Are you sure you want to continue? (y/N) " -n 1 -r
37
echo ""
0 commit comments