Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions OWNERS
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
# See the OWNERS docs at https://go.k8s.io/owners

approvers:
- luxas
- timothysc
- fabriziopandini
- neolit123
- rosti
- ereslibre
- fabriziopandini
- neolit123
- SataQiu
reviewers:
- KentaTada
- odinuge
emeritus_approvers:
- luxas
- timothysc
- rosti
- ereslibre
labels:
- sig/cluster-lifecycle
- sig/node
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

A set of system-oriented validators for kubeadm preflight checks.

## Creating releases

To prepare a release of this library please follow this guide:
- The main branch should always contain WIP commits planned for the upcoming release.
- Always create a new branch for MAJOR and MINOR releases. This allows backporting changes.
- Release branch names should be in the format `release-MAJOR.MINOR` (without a `v` prefix).
- Only non-breaking bug fixes can be done in a PATCH release.
- New features must not be added in PATCH releases.
- Breaking changes must be added in a MAJOR release.
- Pushing releases requires write access. To obtain that you must be part of
the [`system-validator-maintainers` team](http://git.k8s.io/org/config/kubernetes/sig-cluster-lifecycle/teams.yaml).

For vendoring the new release in kubernetes/kubernetes you can use its `pin-dependency.sh` script.

Example:
```bash
./hack/pin-dependency.sh k8s.io/system-validators <NEW-TAG>
```

And then PR the changes.

## Community, discussion, contribution, and support

Learn how to engage with the Kubernetes community on the [community page](http://kubernetes.io/community/).
Expand Down