github.com/qsunny/k8s@v0.0.0-20220101153623-e6dca256d5bf/nacos/openshift/readme.md (about) 1 # Install Nacos Server On Openshift 2 3 ## Version 4 5 with okd:3.11 6 7 ## Install 8 9 ```bash 10 oc process -f nacos-template.yaml -p STORAGECLASS={your_storage-class} -p NAMESPACE={the namepsace you want install} | oc create -f - 11 ``` 12 13 ## Uninstall 14 15 16 17 ```bash 18 oc process -f nacos-template.yaml -p STORAGECLASS={your_storage-class} -p NAMESPACE={the namepsace you want uninstall} | oc delete -f - 19 ```