Releases: kubernetes-sigs/controller-runtime
v0.7.0-alpha.7
🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.
v0.5.12
v0.6.4
Changes since v0.6.3
✨ New Features
-
Support for metadata-only watches (#1248)
⚠️ If you're upgrading fromv0.5.12
metadata only watch functionality has breaking changes, in particular theOnlyMetadata
wrapper introduced in v0.5.12 is now deprecated.Migration example
If one has a controller that reconciles Deployments and owns ReplicaSets and only watches their metadata, with v0.5.12 the controller can be created with something like the following:ControllerManagedBy(mgr). For(OnlyMetadata(&appsv1.Deployment{})). Owns(OnlyMetadata(&appsv1.ReplicaSet{})).
With this release, the code must be changed as shown below:
ControllerManagedBy(mgr). For(&appsv1.Deployment{}, OnlyMetadata). Owns(&appsv1.ReplicaSet{}, OnlyMetadata)
🐛 Bug Fixes
- Ensure that webhook server is thread/start-safe (#1225)
Thanks to all our contributors! 😊
v0.7.0-alpha.6
🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.
v0.7.0-alpha.5
🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.
v0.7.0-alpha.4
🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.
v0.7.0-alpha.3
🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.
v0.7.0-alpha.2
🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.
v0.7.0-alpha.1
🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.
v0.7.0-alpha.0
🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.