--- title: How to fix registry console UI in OpenShift 3.11 url: https://devopstales.github.io/kubernetes/how-to-fix-registry-console-ui-in-openshift-3-11/ date: 2020-07-10 keywords: ansible, openshift 3.11, openshift okd, openshift tutorial, openshift container platform, rad hat openshift --- Registry console UI in OpenShift 3.11 is broken on CentOS as it is not available on Docker Hub. <!--more--> {{< content "/filedir/openshift.html" >}} ### 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 ```