Skip to content

Commit 746c8a4

Browse files
fjumakabir
authored andcommitted
fix: Configure Kind to use podman if specified
1 parent 4772828 commit 746c8a4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

examples/cloud-deployment/scripts/deploy.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@ done
3131
echo "Container tool: $CONTAINER_TOOL"
3232
echo ""
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
3542
if ! command -v kind &> /dev/null; then
3643
echo -e "${RED}Error: Kind is not installed${NC}"

0 commit comments

Comments
 (0)