Skip to content

Instantly share code, notes, and snippets.

@AndreySemechkov
Created August 28, 2023 21:23
Show Gist options
  • Save AndreySemechkov/057de9b1b8e185a912da3f57d251ec0b to your computer and use it in GitHub Desktop.
Save AndreySemechkov/057de9b1b8e185a912da3f57d251ec0b to your computer and use it in GitHub Desktop.
Use podman built images with kind load by pushing latest image to local kind cluster as an oci-archive. Overcoming docker oriented defaults
echo "Pushing latest image to local kind cluster"
export KIND_EXPERIMENTAL_PROVIDER=podman
podman save <IMAGE> --format oci-archive -o ~/<IMAGE>
# loading to kind cluster named home-cluster
kind load image-archive ~/<IMAGE> --name home-cluster
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment