-
Notifications
You must be signed in to change notification settings - Fork 54
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
- Added steps for building, loading Docker images, and deploying changes locally with Kind
- Loading branch information
1 parent
6bda277
commit 392e191
Showing
1 changed file
with
24 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,30 @@ 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. Build your changes: | ||
|
||
```sh | ||
make build go-build-local | ||
``` | ||
|
||
2. Build and load the Docker image into Kind: | ||
|
||
```sh | ||
make docker-build | ||
kind load docker-image quay.io/operator-framework/operator-controller:devel | ||
``` | ||
|
||
3. Deploy to Kind | ||
|
||
```sh | ||
make kind-deploy | ||
``` | ||
|
||
### Communication Channels | ||
|
||
- Email: [operator-framework-olm-dev](mailto:[email protected]) | ||
|