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 4772828 commit 746c8a4Copy full SHA for 746c8a4
examples/cloud-deployment/scripts/deploy.sh
@@ -31,6 +31,13 @@ done
31
echo "Container tool: $CONTAINER_TOOL"
32
echo ""
33
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
+
41
# Check if Kind is installed
42
if ! command -v kind &> /dev/null; then
43
echo -e "${RED}Error: Kind is not installed${NC}"
0 commit comments