Chapter 7. Uninstalling CodeReady Workspaces


There is no dedicated function in the deploy.sh script to uninstall CodeReady Workspaces.

However, you can delete a custom resource, which deletes all the associated objects.

Note that in all the commands in this section, <OpenShift-project-name> is an OpenShift project with deployed CodeReady Workspaces (workspaces is the OpenShift project by default).

Procedure

  1. To delete CodeReady Workspaces and its components:

    $ oc delete checluster/codeready -n=<OpenShift-project-name>
    $ oc delete namespace -n=<OpenShift-project-name>

    Use selectors to delete particular deployments and associated objects.

  2. To remove all CodeReady Workspaces server-related objects:

    $ oc delete all -l=app=che -n=<OpenShift-project-name>
  3. To remove all Keycloak-related objects:

    $ oc delete all -l=app=keycloak -n=<OpenShift-project-name>
  4. To remove all PostgreSQL-related objects:

    $ oc delete all -l=app=postgres -n=<OpenShift-project-name>

    PVCs, service accounts, and role bindings should be deleted separately because the oc delete all command does not delete them.

  5. To delete CodeReady Workspaces server PVC, ServiceAccount, and RoleBinding:

    $ oc delete sa -l=app=che -n=<OpenShift-project-name>
    $ oc delete rolebinding -l=app=che -n=<OpenShift-project-name>
    $ oc delete pvc -l=app=che -n=<OpenShift-project-name>
  6. To delete Keycloak and PostgreSQL PVCs:

    $ oc delete pvc -l=app=keycloak -n=<OpenShift-project-name>
    $ oc delete pvc -l=app=postgres -n=<OpenShift-project-name>
Red Hat logoGithubRedditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

© 2024 Red Hat, Inc.