Skip to content

Commit 0086535

Browse files
committed
Bump v0.10.0
Signed-off-by: Xabier Larrakoetxea <me@slok.dev>
1 parent e8c88a9 commit 0086535

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
## [Unreleased]
33

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

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

84-
[Unreleased]: https://github.com/slok/kubewebhook/compare/v0.9.1...HEAD
85+
[Unreleased]: https://github.com/slok/kubewebhook/compare/v0.10.0...HEAD
86+
[0.10.0]: https://github.com/slok/kubewebhook/compare/v0.9.1...v0.10.0
8587
[0.9.1]: https://github.com/slok/kubewebhook/compare/v0.9.0...v0.9.1
8688
[0.9.0]: https://github.com/slok/kubewebhook/compare/v0.8.0...v0.9.0
8789
[0.8.0]: https://github.com/slok/kubewebhook/compare/v0.7.0...v0.8.0

Readme.md

+18-11
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ func main() {
7070

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

73+
## Production ready example
74+
75+
This repository is a production ready webhook app: https://github.com/slok/k8s-webhook-example
76+
77+
It shows, different webhook use cases, app structure, testing domain logic, kubewebhook use case, how to deploy...
78+
7379
## Static and dynamic webhooks
7480

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

97-
| k8s version | Kubewebhook version | Supported admission reviews |
98-
| ------------| ------------------- | --------------------------- |
99-
| 1.18 | v0.9 | v1beta1 |
100-
| 1.17 | v0.8 | v1beta1 |
101-
| 1.16 | v0.7 | v1beta1 |
102-
| 1.15 | v0.6 | v1beta1 |
103-
| 1.14 | v0.5 | v1beta1 |
104-
| 1.13 | v0.4 | v1beta1 |
105-
| 1.12 | v0.3 | v1beta1 |
106-
| 1.11 | v0.2 | v1beta1 |
107-
| 1.10 | v0.2 | v1beta1 |
103+
| k8s version | Kubewebhook version | Supported admission reviews | Support dynamic webhooks |
104+
| ------------| ------------------- | --------------------------- | ------------------------ |
105+
| 1.18 | v0.10 | v1beta1 ||
106+
| 1.18 | v0.9 | v1beta1 ||
107+
| 1.17 | v0.8 | v1beta1 ||
108+
| 1.16 | v0.7 | v1beta1 ||
109+
| 1.15 | v0.6 | v1beta1 ||
110+
| 1.14 | v0.5 | v1beta1 ||
111+
| 1.13 | v0.4 | v1beta1 ||
112+
| 1.12 | v0.3 | v1beta1 ||
113+
| 1.11 | v0.2 | v1beta1 ||
114+
| 1.10 | v0.2 | v1beta1 ||
108115

109116
## Documentation
110117

0 commit comments

Comments
 (0)