Delete stateful workloads

Delete your stateful workloads using standard Kubernetes deletion methodologies.

Before you begin

To run commands against a user cluster, ensure you have the following resources:

  1. Locate the user cluster name, or ask your Platform Administrator what the cluster name is.

  2. Sign in and generate the kubeconfig file for the user cluster if you don't have one.

  3. Use the kubeconfig path of the user cluster to replace USER_CLUSTER_KUBECONFIG in these instructions.

To get the required permissions to delete stateful workloads, ask your Organization IAM Admin to grant you the Namespace Admin role.

Delete a StatefulSet resource

Delete a StatefulSet resource if you no longer have a use for its associated stateful container workloads.

  1. To delete a StatefulSet resource, run:

    kubectl --kubeconfig USER_CLUSTER_KUBECONFIG \
        delete statefulset STATEFULSET_NAME
    

    Replace the following:

    • USER_CLUSTER_KUBECONFIG: the kubeconfig file for the user cluster.

    • STATEFULSET_NAME: the name of the StatefulSet object to delete.

    When deleting a StatefulSet resource, all of its pods are also deleted. If you prefer to only delete the StatefulSet resource and not its pods, include the --cascade=orphan parameter.

  2. Delete the associated service:

    kubectl --kubeconfig USER_CLUSTER_KUBECONFIG \
        delete service SERVICE_NAME
    

    Replace the following variables:

    • USER_CLUSTER_KUBECONFIG: the kubeconfig file for the user cluster.

    • SERVICE_NAME: the name of the Service object to delete.