Kustomization for installing Docker Registry on OpenShift
This repository contains kustomization for installing Docker Registry on OpenShift using the official Distribution container image.
To deploy Docker Registry on OpenShift:
$ oc apply --kustomize docker-registry/base
Obtain the registry host name:
$ oc get route docker-registry \
--namespace docker-registry \
--output go-template \
--template '{{.spec.host}}'
Log in into registry with username registry
and password 9a5866dc0e500eea9b4f23bd99766053
:
$ podman login <your_registry_host_name>