×

You can remove logging from your OKD cluster by removing installed Operators and related custom resources (CRs).

Uninstalling the logging

You can stop aggregating logs by deleting the Red Hat OpenShift Logging Operator and the ClusterLogging custom resource (CR).

Prerequisites
  • You have administrator permissions.

  • You have access to the Administrator perspective of the OKD web console.

Procedure
  1. Go to the AdministrationCustom Resource Definitions page, and click ClusterLogging.

  2. On the Custom Resource Definition Details page, click Instances.

  3. Click the options menu kebab next to the instance, and click Delete ClusterLogging.

  4. Go to the AdministrationCustom Resource Definitions page.

  5. Click the options menu kebab next to ClusterLogging, and select Delete Custom Resource Definition.

    Deleting the ClusterLogging CR does not remove the persistent volume claims (PVCs). To delete the remaining PVCs, persistent volumes (PVs), and associated data, you must take further action. Releasing or deleting PVCs can delete PVs and cause data loss.

  6. If you have created a ClusterLogForwarder CR, click the options menu kebab next to ClusterLogForwarder, and then click Delete Custom Resource Definition.

  7. Go to the OperatorsInstalled Operators page.

  8. Click the options menu kebab next to the Red Hat OpenShift Logging Operator, and then click Uninstall Operator.

  9. Optional: Delete the openshift-logging project.

    Deleting the openshift-logging project deletes everything in that namespace, including any persistent volume claims (PVCs). If you want to preserve logging data, do not delete the openshift-logging project.

    1. Go to the HomeProjects page.

    2. Click the options menu kebab next to the openshift-logging project, and then click Delete Project.

    3. Confirm the deletion by typing openshift-logging in the dialog box, and then click Delete.

Deleting logging PVCs

To keep persistent volume claims (PVCs) for reuse with other pods, keep the labels or PVC names that you need to reclaim the PVCs. If you do not want to keep the PVCs, you can delete them. If you want to recover storage space, you can also delete the persistent volumes (PVs).

Prerequisites
  • You have administrator permissions.

  • You have access to the Administrator perspective of the OKD web console.

Procedure
  1. Go to the StoragePersistent Volume Claims page.

  2. Click the options menu kebab next to each PVC, and select Delete Persistent Volume Claim.

Uninstalling Loki

Prerequisites
  • You have administrator permissions.

  • You have access to the Administrator perspective of the OKD web console.

  • If you have not already removed the Red Hat OpenShift Logging Operator and related resources, you have removed references to LokiStack from the ClusterLogging custom resource.

Procedure
  1. Go to the AdministrationCustom Resource Definitions page, and click LokiStack.

  2. On the Custom Resource Definition Details page, click Instances.

  3. Click the options menu kebab next to the instance, and then click Delete LokiStack.

  4. Go to the AdministrationCustom Resource Definitions page.

  5. Click the options menu kebab next to LokiStack, and select Delete Custom Resource Definition.

  6. Delete the object storage secret.

  7. Go to the OperatorsInstalled Operators page.

  8. Click the options menu kebab next to the Loki Operator, and then click Uninstall Operator.

  9. Optional: Delete the openshift-operators-redhat project.

    Do not delete the openshift-operators-redhat project if other global Operators are installed in this namespace.

    1. Go to the HomeProjects page.

    2. Click the options menu kebab next to the openshift-operators-redhat project, and then click Delete Project.

    3. Confirm the deletion by typing openshift-operators-redhat in the dialog box, and then click Delete.

Uninstalling Elasticsearch

Prerequisites
  • You have administrator permissions.

  • You have access to the Administrator perspective of the OKD web console.

  • If you have not already removed the Red Hat OpenShift Logging Operator and related resources, you must remove references to Elasticsearch from the ClusterLogging custom resource.

Procedure
  1. Go to the AdministrationCustom Resource Definitions page, and click Elasticsearch.

  2. On the Custom Resource Definition Details page, click Instances.

  3. Click the options menu kebab next to the instance, and then click Delete Elasticsearch.

  4. Go to the AdministrationCustom Resource Definitions page.

  5. Click the options menu kebab next to Elasticsearch, and select Delete Custom Resource Definition.

  6. Delete the object storage secret.

  7. Go to the OperatorsInstalled Operators page.

  8. Click the options menu kebab next to the OpenShift Elasticsearch Operator, and then click Uninstall Operator.

  9. Optional: Delete the openshift-operators-redhat project.

    Do not delete the openshift-operators-redhat project if other global Operators are installed in this namespace.

    1. Go to the HomeProjects page.

    2. Click the options menu kebab next to the openshift-operators-redhat project, and then click Delete Project.

    3. Confirm the deletion by typing openshift-operators-redhat in the dialog box, and then click Delete.

Deleting Operators from a cluster using the CLI

Cluster administrators can delete installed Operators from a selected namespace by using the CLI.

Prerequisites
  • Access to an OKD cluster using an account with cluster-admin permissions.

  • oc command installed on workstation.

Procedure
  1. Ensure the latest version of the subscribed operator (for example, serverless-operator) is identified in the currentCSV field.

    $ oc get subscription.operators.coreos.com serverless-operator -n openshift-serverless -o yaml | grep currentCSV
    Example output
      currentCSV: serverless-operator.v1.28.0
  2. Delete the subscription (for example, serverless-operator):

    $ oc delete subscription.operators.coreos.com serverless-operator -n openshift-serverless
    Example output
    subscription.operators.coreos.com "serverless-operator" deleted
  3. Delete the CSV for the Operator in the target namespace using the currentCSV value from the previous step:

    $ oc delete clusterserviceversion serverless-operator.v1.28.0 -n openshift-serverless
    Example output
    clusterserviceversion.operators.coreos.com "serverless-operator.v1.28.0" deleted