A kubectl
plugin for pushing OCI images through the Kubernetes API server.
- Build
k8scr
make build
- Move to location in
PATH
sudo mv ./build/k8scr /usr/local/bin/kubectl-k8scr
- Deploy simple in-memory registry into cluster
kubectl apply -f distribution.yaml
Optional: tail logs to observe results of next step with
kubectl logs k8scr -f
.
- Push image to registry
kubectl k8scr push crossplane/crossplane:v1.2.1
Usage: k8scr <command>
Push and pull images through the Kubernetes API server.
Flags:
-h, --help Show context-sensitive help.
--kubeconfig=STRING Override default kubeconfig path.
-n, --namespace="default" Namespace of registry Pod.
-r, --registry="k8scr" Name of registry Pod.
Commands:
push <image>
pull <image>
k8scr
uses
go-containerregistry
to push
and pull images, but passes in an
http.RoundTripper
that
reconstructs OCI
distribution
compliant requests so that they pass through the Kubernetes API server Pod
proxy endpoint, before eventually calling the underlying transport constructed
from a user's kubeconfig
. This allows for pushing and pulling directly to and
from an OCI image registry running in a Kubernetes cluster without having to
expose it publicly or privately. Any user with access to the cluster and
pods/proxy
RBAC permissions for the registry Pod
is able to push and pull.
Pretty much any of the operations
go-containerregistry
supports could also be supported here as the transport is pluggable. I'll likely
move it upstream or offer it as a stand-alone library if there is enough
interest.