run the following set of commands to delete all resources associated with the kubeflow deployment:
//Delete the deployment via deployment manager
gcloud deployment-manager --project=${PROJECT} deployments delete
${DEPLOYMENT_NAME}
//Delete your Cloud Storage bucket when you’ve finished with it:
gsutil rm -r gs://${BUCKET_NAME}
Delete the container images uploaded to Container Registry:
// Find the digest id for each container image:
gcloud container images list-tags gcr.io/${PROJECT}/${DEPLOYMENT_NAME}-train
gcloud container images list-tags gcr.io/${PROJECT}/${DEPLOYMENT_NAME}-web-ui
// Delete each image:
gcloud container images delete gcr.io/$PROJECT/${DEPLOYMENT_NAME}-
train:$DIGEST_ID
gcloud container images delete gcr.io/$PROJECT/${DEPLOYMENT_NAME}-web-
ui:$DIGEST_ID