forked from kube-burner/kube-burner
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into code_conduct
- Loading branch information
Showing
9 changed files
with
54 additions
and
26 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## Overview | ||
|
||
This document contains a list of maintainers for this repository. | ||
|
||
## Current Maintainers | ||
|
||
| Maintainer | GitHub ID | Email | | ||
|--------------------- | --------------------------------------------------------- | ----------------------- | | ||
| Raul Sevilla Canavate | [rsevilla87](https://github.com/rsevilla87) | [email protected] | | ||
| Vishnu Challa | [vishnuchalla](https://github.com/vishnuchalla) | [email protected] | |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Contributing to kube-burner | ||
|
||
If you want to contribute to kube-burner, you can do so by submitting a Pull Request, Issue or starting a Discussion. | ||
|
||
## Making changes and opening a Pull Request | ||
|
||
For submitting a change upstream, please fork the repository and clone your forked repository. | ||
```bash | ||
$ git clone http://github.com/YOUR-USERNAME/kube-burner | ||
$ cd kube-burner | ||
$ git checkout -b <branch_name> | ||
$ <make change> | ||
$ git add <changes> | ||
$ git commit -a | ||
$ <insert good message> | ||
$ git push | ||
``` | ||
|
||
## CI and Linting | ||
|
||
For running pre-commit checks on your code before comitting code and opening a PR, you can use the `pre-commit run` functionality. See [CI docs](https://cloud-bulldozer.github.io/kube-burner/latest/contributing/ci) for more information. | ||
|
||
## Building | ||
|
||
To build kube-burner just execute `make build`, once finished the kube-burner binary should be available at `./bin/<arch>/kube-burner`. | ||
|
||
!!! Note | ||
Building kube-burner requires `golang >=1.19` | ||
|
||
```console | ||
$ make build | ||
building kube-burner 0.1.0 | ||
GOPATH=/home/kube-burner/go | ||
CGO_ENABLED=0 go build -v -ldflags "-X github.com/cloud-bulldozer/kube-burner/version.GitCommit=d91c8cc35cb458a4b80a5050704a51c7c6e35076 -X github.com/cloud-bulldozer/kube-burner/version.BuildDate=2020-08-19-19:10:09 -X github.com/cloud-bulldozer/kube-burner/version.GitBranch=master" -o bin/kube-burner | ||
``` |
This file was deleted.
Oops, something went wrong.
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