Skip to content

Commit

Permalink
Bump v0.10.0
Browse files Browse the repository at this point in the history
Signed-off-by: Xabier Larrakoetxea <[email protected]>
  • Loading branch information
slok committed May 19, 2020
1 parent e8c88a9 commit 0086535
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

## [Unreleased]

## [0.10.0] - 2020-05-19
### Added
- Dynamic type webhooks without the need to a specific type (can use as multitype webhook).

Expand Down Expand Up @@ -81,7 +82,8 @@ Breaking: Webhook constructors now need a tracer.
- Static mutating webhook.
- Handler creator for webhooks.

[Unreleased]: https://github.com/slok/kubewebhook/compare/v0.9.1...HEAD
[Unreleased]: https://github.com/slok/kubewebhook/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/slok/kubewebhook/compare/v0.9.1...v0.10.0
[0.9.1]: https://github.com/slok/kubewebhook/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/slok/kubewebhook/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/slok/kubewebhook/compare/v0.7.0...v0.8.0
Expand Down
29 changes: 18 additions & 11 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ func main() {

You can get more examples in [here](examples)

## Production ready example

This repository is a production ready webhook app: https://github.com/slok/k8s-webhook-example

It shows, different webhook use cases, app structure, testing domain logic, kubewebhook use case, how to deploy...

## Static and dynamic webhooks

We have 2 kinds of webhooks:
Expand All @@ -94,17 +100,18 @@ integration tests have been tested against this Kubernetes cluster versions, thi
that other Kubewebhook versions different to the matched ones to Kubernetes versions don't
work (e.g k8s v1.15 with Kubewebhook v0.3). You can try it and check if they work for you.

| k8s version | Kubewebhook version | Supported admission reviews |
| ------------| ------------------- | --------------------------- |
| 1.18 | v0.9 | v1beta1 |
| 1.17 | v0.8 | v1beta1 |
| 1.16 | v0.7 | v1beta1 |
| 1.15 | v0.6 | v1beta1 |
| 1.14 | v0.5 | v1beta1 |
| 1.13 | v0.4 | v1beta1 |
| 1.12 | v0.3 | v1beta1 |
| 1.11 | v0.2 | v1beta1 |
| 1.10 | v0.2 | v1beta1 |
| k8s version | Kubewebhook version | Supported admission reviews | Support dynamic webhooks |
| ------------| ------------------- | --------------------------- | ------------------------ |
| 1.18 | v0.10 | v1beta1 ||
| 1.18 | v0.9 | v1beta1 ||
| 1.17 | v0.8 | v1beta1 ||
| 1.16 | v0.7 | v1beta1 ||
| 1.15 | v0.6 | v1beta1 ||
| 1.14 | v0.5 | v1beta1 ||
| 1.13 | v0.4 | v1beta1 ||
| 1.12 | v0.3 | v1beta1 ||
| 1.11 | v0.2 | v1beta1 ||
| 1.10 | v0.2 | v1beta1 ||

## Documentation

Expand Down

0 comments on commit 0086535

Please sign in to comment.