193 lines
7.7 KiB
Markdown
193 lines
7.7 KiB
Markdown
# Contributing to Pinniped
|
|
|
|
Contributions to Pinniped are welcome. Here are some things to help you get started.
|
|
|
|
## Code of Conduct
|
|
|
|
Please see the [Code of Conduct](./CODE_OF_CONDUCT.md).
|
|
|
|
## Project Scope
|
|
|
|
See [SCOPE.md](./SCOPE.md) for some guidelines about what we consider in and out of scope for Pinniped.
|
|
|
|
## Roadmap
|
|
|
|
The near-term and mid-term roadmap for the work planned for the project [maintainers](MAINTAINERS.md) is documented in [ROADMAP.md](ROADMAP.md).
|
|
|
|
## Community Meetings
|
|
|
|
Pinniped is better because of our contributors and [maintainers](MAINTAINERS.md). It is because of you that we can bring great
|
|
software to the community. Please join us during our online community meetings,
|
|
occurring every first and third Thursday of the month at 9 AM PT / 12 PM ET.
|
|
Use [this Zoom Link](https://go.pinniped.dev/community/zoom)
|
|
to attend and add any agenda items you wish to discuss
|
|
to [the notes document](https://hackmd.io/rd_kVJhjQfOvfAWzK8A3tQ?view).
|
|
Join our [Google Group](https://groups.google.com/g/project-pinniped) to receive invites to this meeting.
|
|
|
|
If the meeting day falls on a US holiday, please consider that occurrence of the meeting to be canceled.
|
|
|
|
## Discussion
|
|
|
|
Got a question, comment, or idea? Please don't hesitate to reach out
|
|
via GitHub [Discussions](https://github.com/vmware-tanzu/pinniped/discussions),
|
|
GitHub [Issues](https://github.com/vmware-tanzu/pinniped/issues),
|
|
or in the Kubernetes Slack Workspace within the [#pinniped channel](https://kubernetes.slack.com/archives/C01BW364RJA).
|
|
|
|
## Issues
|
|
|
|
Need an idea for a project to get started contributing? Take a look at the open
|
|
[issues](https://github.com/vmware-tanzu/pinniped/issues).
|
|
Also check to see if any open issues are labeled with
|
|
["good first issue"](https://github.com/vmware-tanzu/pinniped/labels/good%20first%20issue)
|
|
or ["help wanted"](https://github.com/vmware-tanzu/pinniped/labels/help%20wanted).
|
|
|
|
### Bugs
|
|
|
|
To file a bug report, please first open an
|
|
[issue](https://github.com/vmware-tanzu/pinniped/issues/new?template=bug_report.md). The project team
|
|
will work with you on your bug report.
|
|
|
|
Once the bug has been validated, a [pull request](https://github.com/vmware-tanzu/pinniped/compare)
|
|
can be opened to fix the bug.
|
|
|
|
For specifics on what to include in your bug report, please follow the
|
|
guidelines in the issue and pull request templates.
|
|
|
|
### Features
|
|
|
|
To suggest a feature, please first open an
|
|
[issue](https://github.com/vmware-tanzu/pinniped/issues/new?template=feature-proposal.md)
|
|
and tag it with `proposal`, or create a new [Discussion](https://github.com/vmware-tanzu/pinniped/discussions).
|
|
The project [maintainers](MAINTAINERS.md) will work with you on your feature request.
|
|
|
|
Once the feature request has been validated, a [pull request](https://github.com/vmware-tanzu/pinniped/compare)
|
|
can be opened to implement the feature.
|
|
|
|
For specifics on what to include in your feature request, please follow the
|
|
guidelines in the issue and pull request templates.
|
|
|
|
### Reporting security vulnerabilities
|
|
|
|
Please follow the procedure described in [SECURITY.md](SECURITY.md).
|
|
|
|
## CLA
|
|
|
|
We welcome contributions from everyone, but we can only accept them if you sign
|
|
our Contributor License Agreement (CLA). If you would like to contribute and you
|
|
have not signed it, our CLA-bot will walk you through the process when you open
|
|
a Pull Request. For questions about the CLA process, see the
|
|
[FAQ](https://cla.vmware.com/faq) or submit a question through the GitHub issue
|
|
tracker.
|
|
|
|
## Learning about Pinniped
|
|
|
|
New to Pinniped?
|
|
- Start here to learn how to install and use Pinniped: [Learn to use Pinniped for federated authentication to Kubernetes clusters](https://pinniped.dev/docs/tutorials/concierge-and-supervisor-demo/)
|
|
- Start here to learn how to navigate the source code: [Code Walk-through](https://pinniped.dev/docs/reference/code-walkthrough/)
|
|
- Other more detailed documentation can be found at: [Pinniped Docs](https://pinniped.dev/docs/)
|
|
|
|
## Building
|
|
|
|
The [Dockerfile](Dockerfile) at the root of the repo can be used to build and
|
|
package the server-side code. After making a change to the code, rebuild the
|
|
docker image with the following command.
|
|
|
|
```bash
|
|
# From the root directory of the repo...
|
|
docker build .
|
|
```
|
|
|
|
The Pinniped CLI client can be built for local use with the following command.
|
|
|
|
```bash
|
|
# From the root directory of the repo...
|
|
go build -o pinniped ./cmd/pinniped
|
|
```
|
|
|
|
## Testing
|
|
|
|
### Running Lint
|
|
|
|
```bash
|
|
./hack/module.sh lint
|
|
```
|
|
|
|
### Running Unit Tests
|
|
|
|
```bash
|
|
./hack/module.sh units
|
|
```
|
|
|
|
### Running Integration Tests
|
|
|
|
1. Install dependencies:
|
|
|
|
- [`chromedriver`](https://chromedriver.chromium.org/) (and [Chrome](https://www.google.com/chrome/))
|
|
- [`docker`](https://www.docker.com/)
|
|
- `htpasswd` (installed by default on MacOS, usually found in `apache2-utils` package for linux)
|
|
- [`kapp`](https://carvel.dev/#getting-started)
|
|
- [`kind`](https://kind.sigs.k8s.io/docs/user/quick-start)
|
|
- [`kubectl`](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
|
|
- [`ytt`](https://carvel.dev/#getting-started)
|
|
- [`nmap`](https://nmap.org/download.html)
|
|
|
|
On macOS, these tools can be installed with [Homebrew](https://brew.sh/) (assuming you have Chrome installed already):
|
|
|
|
```bash
|
|
brew install kind vmware-tanzu/carvel/ytt vmware-tanzu/carvel/kapp kubectl chromedriver nmap && brew cask install docker
|
|
```
|
|
|
|
1. Create a kind cluster, compile, create container images, and install Pinniped and supporting test dependencies using:
|
|
|
|
```bash
|
|
./hack/prepare-for-integration-tests.sh
|
|
```
|
|
|
|
1. Run the Pinniped integration tests:
|
|
|
|
```bash
|
|
ulimit -n 512 && source /tmp/integration-test-env && go test -v -count 1 -timeout 0 ./test/integration
|
|
```
|
|
|
|
To run specific integration tests, add the `-run` flag to the above command to specify a regexp for the test names.
|
|
Use a leading `/` on the regexp because the Pinniped integration tests are automatically nested under several parent tests
|
|
(see [integration/main_test.go](https://github.com/vmware-tanzu/pinniped/blob/main/test/integration/main_test.go)).
|
|
For example, to run an integration test called `TestE2E`, add `-run /TestE2E` to the command shown above.
|
|
|
|
1. After making production code changes, recompile, redeploy, and run tests again by repeating the same
|
|
commands described above. If there are only test code changes, then simply run the tests again.
|
|
|
|
To destroy the local Kubernetes cluster, run `./hack/kind-down.sh`.
|
|
|
|
### Observing Tests on the Continuous Integration Environment
|
|
|
|
[CI](https://hush-house.pivotal.io/teams/tanzu-user-auth/pipelines/pinniped-pull-requests)
|
|
will not be triggered on a pull request until the pull request is reviewed and
|
|
approved for CI by a project [maintainer](MAINTAINERS.md). Once CI is triggered,
|
|
the progress and results will appear on the Github page for that
|
|
[pull request](https://github.com/vmware-tanzu/pinniped/pulls) as checks. Links
|
|
will appear to view the details of each check.
|
|
|
|
## Documentation
|
|
|
|
Any pull request which adds a new feature or changes the behavior of any feature which was previously documented
|
|
should include updates to the documentation. All documentation lives in this repository. This project aspires to
|
|
follow the Kubernetes [documentation style guide](https://kubernetes.io/docs/contribute/style/style-guide).
|
|
|
|
## Pre-commit Hooks
|
|
|
|
This project uses [pre-commit](https://pre-commit.com/) to agree on some conventions about whitespace/file encoding.
|
|
|
|
```bash
|
|
$ brew install pre-commit
|
|
[...]
|
|
$ pre-commit install
|
|
pre-commit installed at .git/hooks/pre-commit
|
|
```
|
|
|
|
## Becoming a Pinniped Maintainer
|
|
|
|
Regular contributors who are active in the Pinniped community and who have contributed at least several
|
|
significant pull requests may be considered for promotion to become a maintainer upon request. Please
|
|
contact an existing [maintainer](MAINTAINERS.md) if you would like to be considered.
|