dongjoon-hyun commented on code in PR #106: URL: https://github.com/apache/spark-kubernetes-operator/pull/106#discussion_r1731651180
########## README.md: ########## @@ -117,6 +117,33 @@ $ helm install spark-kubernetes-operator \ https://nightlies.apache.org/spark/charts/spark-kubernetes-operator-0.1.0-SNAPSHOT.tgz ``` +## Clean Up + +Check the existing Spark applications and clusters. If exists, delete them. + +``` +$ kubectl get sparkapp +No resources found in default namespace. + +$ kubectl get sparkcluster +No resources found in default namespace. +``` + +Remove HelmChart and CRDs. + +``` +$ helm uninstall spark-kubernetes-operator Review Comment: Since `Helm` officially doesn't delete the CRDs, we need to clean up manually to be up-to-date. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
