If you want to contribute to klocust
, then please follow this guide.
- Set up local development environment.
- Change something...
- Run test.
- Create PR.
- You have to install...
- golang ( >= 1.14 )
- You have to have and kubernetes cluster with kubernetes version 1.16 or higher
$ cd $GOPATH/src
$ mkdir -p github.com/DevopsArtFactory
$ cd github.com/DevopsArtFactory
$ git clone https://github.com/DevopsArtFactory/klocust.git
$ cd klocust
- Change codes
- If you create new function, then please make unit test.
- Please run
make fmt
in order to do formatting
make linters
: This will check the rules for clean code.make test
: Run unit test
- Thank you so much for your Pull Request!!