Clean up
On this page
Delete the model resources, clusters, and finally the control plane.
Delete model resources
Delete model resources before clusters. Deleting a cluster first leaves the deployments reconciling against infrastructure that no longer exists.
bash
kubectl delete md --all -n ml-team
kubectl delete ms --all -n ml-teamWait for all model replicas to finish:
bash
kubectl get modelreplica -n ml-team --watchDelete the clusters
Delete all clusters with foreground cascading deletion. The serving stack on each workload cluster must uninstall while that cluster’s API server is still reachable. Foreground deletion holds each cluster object until its stack finishes. Background deletion can orphan cloud resources.
bash
kubectl delete ic --all --cascade=foregroundWait until all clusters are deleted:
bash
kubectl get ic --watchDelete the control plane
Delete the kind cluster:
bash
kind delete cluster --name modelplane