MR stores the keys in zookeeper. SDC stores it in cassandra I believe. I think you may need to wipe any nfs storage alos as part of undeploy as it doesn't clear down properly if I remember correctly.
I use the following script to ensure all old data is removed. #!/bin/bash kubectl delete jobs -n onap --all sleep 10 kubectl delete poddisruptionbudget -n onap --all kubectl delete pods -n onap --all --force --grace-period 0 kubectl delete services -n onap --all kubectl delete persistentvolumeclaims -n onap --all kubectl delete persistentvolumes -n onap --all kubectl delete configmaps -n onap kubectl delete kb -n onap --all kubectl delete namespaces onap sudo rm -fr /dockerdata-nfs/* sleep 5 helm undeploy onap -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#24122): https://lists.onap.org/g/onap-discuss/message/24122 Mute This Topic: https://lists.onap.org/mt/92658204/21656 Mute #jakarta:https://lists.onap.org/g/onap-discuss/mutehashtag/jakarta Mute #sdnc:https://lists.onap.org/g/onap-discuss/mutehashtag/sdnc Mute #dmaap:https://lists.onap.org/g/onap-discuss/mutehashtag/dmaap Group Owner: [email protected] Unsubscribe: https://lists.onap.org/g/onap-discuss/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
