Hi Thamlur, The problem with undeploy plugin (or helm del for that matter) is that not all k8s resources are removed in the process.
The error above relates to k8s persistent volumes left behind, which causes the redeploy to fail. The short answer is to use "kubectl" to get all persistentvolumeclaims and persistentvolumes for all 3 DMaaP components (dmaap-dr, dmaap-mr, dmaap-bc). kubectl get persistentvolumeclaims -n onap | grep dmaap kubectl get persistentvolumes -n onap | grep dmaap Then "kubectl delete" them manually before redeploying. There may also be some other dmaap resources that need to be deleted. (secrets, configmaps, storageclasses, jobs) Also, it's probably best to delete all dmaap data from the dockerdata-nfs pre redploy. The original post refers to Casablanca, but are you deploying with latest OOM branch? Regards, Fiachra -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#17885): https://lists.onap.org/g/onap-discuss/message/17885 Mute This Topic: https://lists.onap.org/mt/28285118/21656 Group Owner: [email protected] Unsubscribe: https://lists.onap.org/g/onap-discuss/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
