Hi Sundara, You can save secrets before you delete them using standard K8s commands: kubectl get secret onap-sdnc-keystore-password --export -o yaml > onap-sdnc-keystore-password.yaml and then applying it again using kubectl apply -f onap-sdnc-keystore-password.yaml
But the general question is how to reinstall single ONAP app. I'd say the only good option is to have an engineer who would make you helm install \ uninstall scripts instead of helm deploy \ undeploy (there are causing problems with deleting that we don't want to have). In case you don't have this engineer or don't want to spend time on it you can just follow my approach and make fresh installation after deleting current one: kubectl delete namespace onap kubectl delete pv --all sudo rm -rf /dockerdata-nfs Then you make all corrections to override files and run 'helm deploy ...' -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#24376): https://lists.onap.org/g/onap-discuss/message/24376 Mute This Topic: https://lists.onap.org/mt/97822023/21656 Mute #jakarta:https://lists.onap.org/g/onap-discuss/mutehashtag/jakarta Group Owner: [email protected] Unsubscribe: https://lists.onap.org/g/onap-discuss/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
