-
Notifications
You must be signed in to change notification settings - Fork 28
Home
The following steps describe how anyone could get their hands on the developer console / perspective on an OpenShift 4 cluster.
OpenShift Console is managed by a CVO operator named console-operator
.
Clone the repo locally https://github.com/sbose78/install-devconsole and run
oc apply -f unmanage.yaml
Scale down existing deployments of console-operator
oc scale --replicas 0 deployment console-operator --namespace openshift-console-operator
Validate that there are no console-operator-
pods
oc get pods -n openshift-console-operator
Scale down existing deployments of console
oc scale --replicas 0 deployment console --namespace openshift-console
Validate that there are no console-
pods. Leave the download-
pods as is.
oc get pods -n openshift-console
Update the console-operator
deployment
oc apply -f redeploy-console-operator.yaml
Validate that the console-operator
deployment has scaled up to 1
oc get pods -n openshift-console-operator
After the pods are running
, scale up the openshift-console
deployment
oc scale --replicas 1 deployment console --namespace openshift-console
Validate that the console-operator
deployment has scaled up to 1
oc get pods -n openshift-console
oc apply -f http://operatorhubio-operator-hub.devtools-dev.ext.devshift.net/installopenshift4/devconsole.v0.1.0.yaml
The above steps are being validated and refined as part of https://jira.coreos.com/browse/ODC-347 . Please provide your feedback!