How to install Kind to study kubernetes
backend · 2024-08-19 · 0 min
install and initialize podman
brew install podman
podman machine init --cpus=4 --memory=8096 --disk=50
podman machine start
setup a kind cluster
export KIND_EXPERIMENTAL_PROVIDER=podman
kind cre...