Uninstalling the NVIDIA Enterprise RAG LLM Operator

Enterprise RAG LLM Operator - (Latest Version)

Perform the following steps to uninstall the Operator.

  1. List and delete Helm pipeline custom resources:

    Copy
    Copied!
                

    $ kubectl get helmpipelines -A

    Example Output

    Copy
    Copied!
                

    NAMESPACE NAME STATUS rag-sample my-sample-pipeline deployed

    If a pipeline is deployed, delete the pipeline:

    Copy
    Copied!
                

    $ kubectl delete helmpipeline -n rag-sample my-sample-pipeline

  2. Delete the Operator:

    Copy
    Copied!
                

    $ helm delete -n rag-operator $(helm list -n rag-operator --filter 'rag-operator' --short)

By default, Helm does not delete custom resource definitions (CRDs). You can delete the Helm pipeline CRD with the following command:

Copy
Copied!
            

$ kubectl delete crd helmpipelines.package.nvidia.com

Refer to Uninstalling the GPU Operator in the NVIDIA GPU Operator documentation.

Previous RAG Playground Web Application
Next Connecting to a Vector Database
© Copyright © 2024, NVIDIA Corporation. Last updated on May 21, 2024.