Delete the TimesTen Operator

To stop running the TimesTen Operator in your namespace, you uninstall the ttoperator release that your previously installed.

  1. List the releases.
     helm list

    Output.

    NAME            NAMESPACE       REVISION        UPDATED                                 STATUS          CHART                   APP VERSION
    samplettop      mynamespace     3               2023-10-24 22:31:06.530832896 +0000 UTC deployed        ttoperator-2211190.1.0  22.1.1.19.0
    ttcrd           mynamespace     3               2023-10-24 23:31:06.530832896 +0000 UTC deployed        ttcrd-2211190.1.0       22.1.1.19.0

    The samplettop release is installed in your namespace. The chart is ttoperator.

  2. Uninstall the samplettop release. This operation stops the running of the TimesTen Operator and deletes the TimesTen Operator Deployment.
    helm uninstall samplettop

    Output.

    release "samplettop" uninstalled

    The samplettop release is uninstalled.

  3. Confirm the TimesTen Operator Pod is deleted.
    kubectl get pod timesten-operator-65ddf9cfbb-cplhl

    Output.

    Error from server (NotFound): pods "timesten-operator-65ddf9cfbb-cplhl" not found
  4. Confirm the TimesTen Operator Deployment is deleted.
    kubectl get deployment timesten-operator

    Output.

    Error from server (NotFound): deployments.apps "timesten-operator" not found
The TimesTen Operator is no longer running in your namespace. The TimesTen Operator Deployment that is used to run the TimesTen Operator is deleted.