Delete the TimesTen Operator

You can uninstall the TimesTen Operator from your namespace.

  1. Confirm the TimesTen Operator is running.
    kubectl get pods
    The output is similar to the following:
    NAME                              READY   STATUS    RESTARTS   AGE
    timesten-operator-55c6f99-2djfr   1/1     Running   0          3h1m
  2. List the release.
     helm list
    The output is similar to the following:
    
    NAME            NAMESPACE       REVISION        UPDATED                                 STATUS          CHART                   APP VERSION
    ttoper          default         3               2024-08-05 16:11:37.408437395 +0000 UTC deployed        ttoperator-2211270.1.0  22.1.1.27.0

    The ttoper release exists in your namespace.

  3. Uninstall.
    helm uninstall ttoper

    The output is similar to the following:

    release "ttoper" uninstalled
  4. Confirm the TimesTen Operator Pod is deleted.
    kubectl get pods
    The output is similar to the following:
    No resources found in default namespace.
  5. Confirm the TimesTen Operator Deployment is deleted.
    kubectl get deployment timesten-operator
    The output is similar to the following:
    Error from server (NotFound): deployments.apps "timesten-operator" not found
You successfully deleted The TimesTen Operator. It is no longer running in your namespace.