We need to let tilt know that this is a local dev context so that it won't try to push images to DockerHub.
kubectl config current-contextCreate a k3d cluster with a built-in registry
k3d cluster create todo --registry-create todo-registryGet Port # for the registry
docker ps -f name=todo-registryPush images to local registry
docker tag tilt-api:latest todo-registry.localhost:53645/tilt-api:latestdocker push todo-registry.localhost:53645/tilt-api:latestAdd the port # to line 2 of your k8s/Tiltfile
Spin up your dev env!
tilt upk3d cluster listk3d registry list