-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add local build and deploy instructions to CONTRIBUTING.md (#1430)
- Added steps for building, loading Docker images, and deploying changes locally with Kind
- Loading branch information
1 parent
fca0afa
commit 87d011a
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,29 @@ The workflow defined above implies that the community is always ready for discus | |
|
||
Please keep this workflow in mind as you read through the document. | ||
|
||
## How to Build and Deploy Locally | ||
|
||
After creating a fork and cloning the project locally, | ||
you can follow the steps below to test your changes: | ||
|
||
1. Create the cluster: | ||
|
||
```sh | ||
kind create cluster operator-controller | ||
``` | ||
|
||
2. Build your changes: | ||
|
||
```sh | ||
make build docker-build | ||
``` | ||
|
||
3. Load the image locally and Deploy to Kind | ||
|
||
```sh | ||
make kind-load kind-deploy | ||
``` | ||
|
||
### Communication Channels | ||
|
||
- Email: [operator-framework-olm-dev](mailto:[email protected]) | ||
|