@@ -30,7 +30,7 @@ KubeBlocks is Kubernetes-native, you can use Helm or kubectl with a YAML file to
3030- ** Data Plane** : nodes running databases instances
3131
3232
33- ### System Requirements
33+ ### Prerequisites
3434
3535Before proceeding, verify your environment meets these requirements:
3636
@@ -431,14 +431,14 @@ These resources were kept due to the resource policy:
431431
432432Some resources are kept due to resource policy, then check and remove them all
433433
434- 3 . check remaining resources, such as ComponentDefinition, and ConfigMaps for Configuration
434+ 3 . Check remaining resources, such as ComponentDefinition, ConfigMaps for Configuration, and remove them all.
435435``` bash
436436kubectl get componentdefinitions.apps.kubeblocks.io
437437kubectl get parametersdefinitions.parameters.kubeblocks.io
438438kubectl get configmap -n kb-system | grep configuration
439439kubectl get configmap -n kb-system | grep template
440440```
441- and remove them all
441+
442442
443443For example
444444``` bash
@@ -465,7 +465,7 @@ kubectl get crd | grep kubeblocks.io | awk '{print $1}' | while read crd; do
465465done
466466```
467467
468- If the output shows some custom resource left, please remove them all.
468+ If the output shows any custom resource left, please remove them all.
469469
4704706 . Uninstall KubeBlocks
471471
@@ -503,7 +503,7 @@ kbcli addon list | grep Enabled
5035032 . set ` keepResource=false ` for all addons
504504``` bash
505505# update addons values, to remove annotation 'helm.sh/resource-policy: keep' from ComponentDefinition/ConfigMaps
506- kbcli addon enable < addoName > --set extra.keepResource=false
506+ kbcli addon enable < addonName > --set extra.keepResource=false
507507```
508508
509509For example
@@ -534,7 +534,7 @@ kbcli addon disable postgresql
534534kbcli addon disable redis
535535```
536536
537- 4 . Verify all KubeBlocks resource are deleted
537+ 4 . Verify all KubeBlocks resources are deleted
538538
539539``` bash
540540kubectl get crd | grep kubeblocks.io | awk ' {print $1}' | while read crd; do
@@ -552,7 +552,7 @@ If the output shows some custom resource left, please remove them all.
552552kbcli kubeblocks uninstall
553553```
554554
555- 6 . Verify all KubeBlocks resource are deleted
555+ 6 . Verify all KubeBlocks resources are deleted
556556
557557``` bash
558558kubectl get crd | grep kubeblocks.io | awk ' {print $1}' | while read crd; do
0 commit comments