Delete your stateless workloads using standard Kubernetes deletion methodologies.
Before you begin
To run commands against a user cluster, ensure you have the following resources:
Locate the user cluster name, or ask your Platform Administrator what the cluster name is.
Sign in and generate the kubeconfig file for the user cluster if you don't have one.
Use the kubeconfig path of the user cluster to replace
USER_CLUSTER_KUBECONFIG
in these instructions.
To get the required permissions to delete stateless workloads, ask your Organization IAM Admin to grant you the Namespace Admin role.
Delete a deployment
To delete a Deployment
object, run:
kubectl --kubeconfig USER_CLUSTER_KUBECONFIG \
delete deployment DEPLOYMENT_NAME
Replace the following:
USER_CLUSTER_KUBECONFIG
: the kubeconfig file for the user cluster.DEPLOYMENT_NAME
: the name of the deployment to delete.