Local Registry
With kind v0.6.0 there is a new config feature containerdConfigPatches
that canbe leveraged to configure insecure registries.The following recipe leverages this to enable a local registry.
Create A Cluster And Registry
The following shell script will create a local docker registry and a kind clusterwith it enabled.
#!/bin/sh
set -o errexit
# desired cluster name; default is "kind"
KIND_CLUSTER_NAME="${KIND_CLUSTER_NAME:-kind}"
# create registry container unless it already exists
reg_name='kind-registry'
reg_port='5000'
running="$(docker inspect -f '{{.State.Running}}' "${reg_name}" 2>/dev/null || true)"
if [ "${running}" != 'true' ]; then
docker run \
-d --restart=always -p "${reg_port}:5000" --name "${reg_name}" \
registry:2
fi
# create a cluster with the local registry enabled in containerd
cat <<EOF | kind create cluster --name "${KIND_CLUSTER_NAME}" --config=-
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
containerdConfigPatches:
- |-
[plugins."io.containerd.grpc.v1.cri".registry.mirrors."registry:${reg_port}"]
endpoint = ["http://registry:${reg_port}"]
EOF
# add the registry to /etc/hosts on each node
ip_fmt='{{.NetworkSettings.IPAddress}}'
cmd="echo $(docker inspect -f "${ip_fmt}" "${reg_name}") registry >> /etc/hosts"
for node in $(kind get nodes --name "${KIND_CLUSTER_NAME}"); do
docker exec "${node}" sh -c "${cmd}"
done
Using The Registry
The registry can be used like this.
- First we'll pull an image
docker pull gcr.io/google-samples/hello-app:1.0
- Then we'll tag the image to use the local registry
docker tag gcr.io/google-samples/hello-app:1.0 localhost:5000/hello-app:1.0
- Then we'll push it to the registry
docker push localhost:5000/hello-app:1.0
- And now we can use the image
kubectl create deployment hello-server —image=registry:5000/hello-app:1.0
If you build your own image and tag it likelocalhost:5000/image:foo
and then useit in kubernetes asregistry:5000/image:foo
.
Note: you may update your local hosts file as well, for example by adding
127.0.0.1 registry
in your laptop's/etc/hosts
, so you can reference it in a consistent way by simply usingregistry:5000
.