File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
examples/cloud-deployment/scripts Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ while [[ $# -gt 0 ]]; do
2727 esac
2828done
2929
30+ # Configure Kind to use podman if specified
31+ if [ " $CONTAINER_TOOL " = " podman" ]; then
32+ export KIND_EXPERIMENTAL_PROVIDER=podman
33+ fi
34+
3035echo -e " ${YELLOW} This will delete all resources in the a2a-demo namespace and the Kind cluster${NC} "
3136read -p " Are you sure you want to continue? (y/N) " -n 1 -r
3237echo " "
Original file line number Diff line number Diff line change 3131echo " Container tool: $CONTAINER_TOOL "
3232echo " "
3333
34+ # Configure Kind to use podman if specified
35+ if [ " $CONTAINER_TOOL " = " podman" ]; then
36+ export KIND_EXPERIMENTAL_PROVIDER=podman
37+ echo " Configured Kind to use podman provider"
38+ echo " "
39+ fi
40+
3441# Check if Kind is installed
3542if ! command -v kind & > /dev/null; then
3643 echo -e " ${RED} Error: Kind is not installed${NC} "
You can’t perform that action at this time.
0 commit comments