Skip to content

Commit 039f167

Browse files
authored
Merge pull request #1031 from micw523/contrib
Add Contribution 101
2 parents b871710 + e16f98e commit 039f167

File tree

1 file changed

+68
-5
lines changed

1 file changed

+68
-5
lines changed

CONTRIBUTING.md

Lines changed: 68 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,77 @@ Please fill out either the individual or corporate Contributor License Agreement
1313

1414
Follow either of the two links above to access the appropriate CLA and instructions for how to sign and return it. Once we receive it, we'll be able to accept your pull requests.
1515

16+
## Composition of This Repository and Where/How to Contribute
17+
18+
The repository of the Kubernetes Python client consists of this main repository and a submodule, the [python-base](https://github.com/kubernetes-client/python-base) repository. The main repository contains mostly files that are generated by the OpenAPI generator from [this OpenAPI spec](scripts/swagger.json). The base repo is the utility part of the python client and allows developers to create their own kubernetes clients.
19+
20+
### Where to Submit Your Patch
21+
22+
These folders are automatically generated. You will need to submit a patch to the upstream kubernetes repo [kubernetes](https://github.com/kubernetes/kubernetes) or the OpenAPI generator repo [openapi-generator](https://github.com/OpenAPITools/openapi-generator). This contains:
23+
- [kubernetes/client](kubernetes/client)
24+
- [kubernetes/test](kubernetes/test)
25+
- [kubernetes/docs](kubernetes/docs).
26+
27+
These folders contain developer written codes in the main repo and the patches should be submitted here:
28+
- [kubernetes/e2e_test](kubernetes/e2e_test)
29+
- [kubernetes/utils](kubernetes/utils)
30+
- [examples](examples)
31+
- [scripts](scripts).
32+
33+
The base repo contains developer written codes only. The patches should be sent to the base repo instead. The scope covers these repos and symbolic links in the main repo:
34+
- kubernetes/base
35+
- kubernetes/config
36+
- kubernetes/stream
37+
- kubernetes/watch.
38+
1639
### Contributing A Patch
1740

1841
1. Submit an issue describing your proposed change to the repo in question.
19-
1. The [repo owners](OWNERS) will respond to your issue promptly.
20-
1. If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
21-
1. Fork the desired repo, develop and test your code changes.
22-
1. Submit a pull request.
42+
2. The [repo owners](OWNERS) will respond to your issue promptly.
43+
3. If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
44+
4. Fork the desired repo, develop and test your code changes. Add a test if possible.
45+
5. Submit a pull request.
2346

2447
### Adding Dependencies
2548

26-
If your patch depends on new packages, add those packages to [requirements.txt](requirements.txt) and [setup.py](setup.py).
49+
If your patch depends on new packages, add those packages to [requirements.txt](requirements.txt) and/or [setup.py](setup.py). If these package are for testing only, add those to [test-requirements.txt](test-requirements.txt).
50+
51+
### Commits
52+
53+
Generally we would like to see one commit per pull request. However, if the pull request is reasonably large, the PR can be divided into several commits that make logical sense. The commit message should be clear and indicative of the aim of the fix.
54+
55+
If you have several commits in a pull request and have been asked to squash your commits, please use ```git reset --soft HEAD~N_COMMITS``` and commit again to make your PR a single commit.
56+
57+
### Windows Developers
58+
59+
The symbolic links contained in this repo does not work for Windows operating systems. If you are a Windows developer, please run the [fix](scripts/windows-setup-fix.bat) inside the scripts folder or manually copy the content of the [kubernetes/base](https://github.com/kubernetes-client/python-base) folder into the [kubernetes](kubernetes) folder.
60+
61+
### Writing Tests
62+
63+
In addition to running the your fix yourself and tell us that your fix works, you can demonstrate that your fix really works by using unit tests and end to end tests. These unit tests are mainly located in three places. You should put your tests into the places that they fit in.
64+
65+
1. [Generated tests](kubernetes/test) by OpenAPI generator: these tests should pass and do not require modification.
66+
2. [End to end tests](kubernetes/e2e_test): these are tests that can only be verified with a live kubernetes server.
67+
3. Base repo tests in the [base](https://github.com/kubernetes-client/python-base) repo, in which the test files are named ```test_*.py```: These tests use the package ```Mock``` and confirms the functionality of the base repo files.
68+
69+
### Coding Style
70+
71+
We use an automatic coding style checker by using the ```diff``` of the autopep8 output and your code file. To make sure that your code passes the coding style checker, run ```autopep8 --in-place --aggressive --aggressive your_code.py``` before committing and submission.
72+
73+
## Running Tests Locally
74+
75+
If you write a new end to end (e2e) test, or change behaviors that affect e2e tests, you should set up a local cluster and test them on your machine. The following steps will help you run the unit tests.
76+
77+
1. Acquire a local cluster. [Minikube](https://github.com/kubernetes/minikube) is a good choice for Windows and Linux developers. Alternatively if you are on Linux, you can clone the [kubernetes](https://github.com/kubernetes/kubernetes) and run [install-etcd.sh](https://github.com/kubernetes/kubernetes/blob/master/hack/install-etcd.sh) and then [local-up-cluster.sh](https://github.com/kubernetes/kubernetes/blob/master/hack/local-up-cluster.sh) to get a local cluster up and running.
78+
79+
2. Run the unit tests. In the root directory of the main repo, run ```python -m unittest discover```.
80+
81+
3. Check the test results and make corresponding fixes.
82+
83+
## Update the Base Submodule in the Main Repo After Your python-base PR Is Merged
84+
85+
Your contribution of the base repo will not be automatically reflected in the main repo after your PR is merged. Instead, please update the ```base``` submodule in your fork of the main repo as follows:
86+
```bash
87+
$ git submodule update --remote
88+
```
89+
You may now add a release note to [CHANGELOG.md](CHANGELOG.md) if needed and then commit and push to your fork. You can now send a PR to this main repo to complete your contribution.

0 commit comments

Comments
 (0)