- Remove the DevWorkspace Operator subscription
oc delete sub devworkspace-operator
- Remove the DevWorkspace Operator CSVs
oc get csv | grep devworkspace
oc delete csv devworkspace-operator.v0.25.0
oc delete csv devworkspace-operator.v0.26.0
- Re-create DevWorkspace Operator subscription with the latest version
cat <<EOF | oc apply -f -
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
name: devworkspace-operator
namespace: <namespace>
spec:
channel: fast
name: devworkspace-operator
source: redhat-operators
sourceNamespace: openshift-marketplace
installPlanApproval: Manual
startingCSV: devworkspace-operator.v0.26.0
EOF
- Approve the install plan and ensure it succeeds