Podman setup to use tilt

Prerequisites

  1. Install Podman: Instruction can be found here
  2. Emulate docker cli with Podman: Instructions can be found here

1. Create Podman machine

$ podman machine init
$ podman machine start

2. Configure podman to use local registry

$ podman machine ssh
$ sudo vi /etc/containers/registries.conf

## at the end of the file add below content

[[registry]]
location = "localhost:5001"
insecure = true

Restart Podman machine

podman machine stop
podman machine start

3. Create a kind cluster

$ make kind-cluster