We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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.
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
console-operator-
oc get pods -n openshift-console-operator
Scale down existing deployments of console
console
oc scale --replicas 0 deployment console --namespace openshift-console
Validate that there are no console- pods. Leave the download- pods as is.
console-
download-
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
After the pods are running, scale up the openshift-console deployment
running
openshift-console
oc scale --replicas 1 deployment console --namespace 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!