Uninstall Kubeflow

Delete Kubeflow deployments and Amazon EKS clusters

Uninstall Kubeflow on AWS

First, delete all existing Kubeflow profiles.

kubectl get profile
kubectl delete profile --all

You can delete a Kubeflow deployment by running the kubectl delete command on the manifest according to the deployment option you chose. For example, to delete a vanilla installation, run the following command:

kustomize build deployments/vanilla/ | kubectl delete -f -

This command assumes that you have the repository in the same state as when you installed Kubeflow.

Cleanup steps for specific deployment options can be found in their respective installation guides.

Note: This will not delete your Amazon EKS cluster.

(Optional) Delete Amazon EKS cluster

If you created a dedicated Amazon EKS cluster for Kubeflow using eksctl, you can delete it with the following command:

eksctl delete cluster --region $CLUSTER_REGION --name $CLUSTER_NAME

Note: It is possible that parts of the CloudFormation deletion will fail depending upon modifications made post-creation. In that case, manually delete the eks-xxx role in IAM, then the ALB, the EKS target groups, and the subnets of that particular cluster. Then, retry the command to delete the nodegroups and the cluster.

For more detailed information on deletion options, see Deleting an Amazon EKS cluster.

Last modified January 7, 2023: docsearch backport 1.5 (#535) (8c282f1)