Based on https://github.com/kubernetes/community/blob/master/community-membership.md
Changes:
* Extracted contributor membership to separate file
* Provide more detailed requirements for each role. Base maintainers on
kubernetes subproject owners.
* Introduction of member role
Signed-off-by: Marek Siarkowicz <siarkowicz@google.com>
TODO:
1. Update Documentation/contributor-guide/modules.svg;
2. Update bill-of-materials.json when raft and raftexample are removed in future;
Signed-off-by: Benjamin Wang <wachao@vmware.com>
Add an overview and initial development guidelines. Restructured
the doc for a better readabiltiy and easier review, and per the
previous review feedback. The TODOs will be addressed iteratively.
Related #13775
Signed-off-by: Sahdev Zala <spzala@us.ibm.com>
`go install` is the recommended way to build and install packages in
module mode. `go get` should be used with the -d flag to adjust the
current module's dependencies without building packages, and use of
`go get` to build and install packages is deprecated. In a future
release, the -d flag will always be enabled.
Refer to https://go.dev/doc/go1.16.
Signed-off-by: Benjamin Wang <wachao@vmware.com>