diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 284aa1a3e..c8609fd9f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -44,7 +44,7 @@ you can follow the steps below to test your changes: 1. Create the cluster: ```sh - kind create cluster operator-controller + kind create cluster -n operator-controller ``` 2. Build your changes: diff --git a/docs/contribute/developer.md b/docs/contribute/developer.md index 947398e9b..f21a3b28b 100644 --- a/docs/contribute/developer.md +++ b/docs/contribute/developer.md @@ -49,20 +49,6 @@ curl -L -s https://github.com/operator-framework/operator-controller/releases/la make deploy IMG=/operator-controller:tag ``` -### Uninstall CRDs -To delete the CRDs from the cluster: - -```sh -make uninstall -``` - -### Undeploy controller -To undeploy the controller from the cluster: - -```sh -make undeploy -``` - ### Modifying the API definitions If you are editing the API definitions, generate the manifests such as CRs or CRDs using: @@ -70,8 +56,6 @@ If you are editing the API definitions, generate the manifests such as CRs or CR make manifests ``` ---- - !!! note Run `make help` for more information on all potential `make` targets.