HoustonPutman commented on issue #212: URL: https://github.com/apache/lucene-solr-operator/issues/212#issuecomment-777699251
So yes, this is actually expected behavior. If you want to delete your SolrCloud after deleting the Solr Operator, you will need to remove the finalizer from the SolrCloud. Otherwise the SolrCloud will never be able to be deleted. ```bash kubectl patch solrcloud <name> --type='json' -p='[{"op": "remove", "path": "/metadata/finalizers"}]' ``` That should do the trick. But I would recommend just deleting the SolrCloud objects before deleting the Solr Operator. It's the easiest way to go, and the PVCs will be handled correctly! ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org