-
Bug
-
Resolution: Done
-
Major
-
fuse-7.10
-
None
-
integration-doc-2022-04-11, integration-doc-2022-05-02, integration-doc-2022-05-23
-
Please check the section "2.4.4. Upgrading the Fuse Console on OpenShift 4.x".
https://access.redhat.com/documentation/en-us/red_hat_fuse/7.10/html/fuse_on_openshift_guide/get-started-admin#upgrade-fuseconsole-on-openshift
Following commands are not correct.
Wrong example:
_oc patch myproject example-fuseconsole --type='merge' -p '{"spec":{"version":"1.7.1"}}'
_Correct excample:
oc patch -n myproject hawtio/example-fuseconsole --type='merge' -p '{"spec":{"version":"1.7.1"}}'
Wrong command:
_oc get myproject
Correct command:
oc get -n myproject hawtio example-fuseconsole