How to fix registry console UI in OpenShift 3.11

Page content

Registry console UI in OpenShift 3.11 is broken on CentOS as it is not available on Docker Hub.

Parts of the Openshift series

Export running deployment to yaml

oc project default
oc get --export   dc/registry-console -o yaml > registry_console.yaml

Patch and deploy the yaml

sed -i -e "s|image:.*|image: docker.io/timbordemann/cockpit-kubernetes:latest|" registry_console.yaml
oc apply -f registry_console.yaml

Config for new install

openshift_cockpit_deployer_image=docker.io/timbordemann/cockpit-kubernetes:latest