Skip to content

Releases: kubernetes-sigs/controller-runtime

v0.7.0-alpha.8

02 Dec 22:48
f349d96
Compare
Choose a tag to compare
v0.7.0-alpha.8 Pre-release
Pre-release

🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.

v0.5.13

03 Dec 19:32
7d38e25
Compare
Choose a tag to compare

Changes since v0.5.12

🐛 Bug Fixes

  • Wait for metadata cache to sync (#1283)

Thanks to all our contributors! 😊

v0.7.0-alpha.7

30 Nov 22:32
2879800
Compare
Choose a tag to compare
v0.7.0-alpha.7 Pre-release
Pre-release

🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.

v0.5.12

20 Nov 16:59
e1a1cae
Compare
Choose a tag to compare

Changes since v0.5.11

✨ New Features

  • Support metadata-only watches (#1256)

Thanks to all our contributors! 😊

v0.6.4

20 Nov 17:09
7fc9110
Compare
Choose a tag to compare

Changes since v0.6.3

✨ New Features

  • Support for metadata-only watches (#1248)

    ⚠️ If you're upgrading from v0.5.12 metadata only watch functionality has breaking changes, in particular the OnlyMetadata 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

04 Nov 00:20
af24f3b
Compare
Choose a tag to compare
v0.7.0-alpha.6 Pre-release
Pre-release

🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.

v0.7.0-alpha.5

02 Nov 18:28
9975e29
Compare
Choose a tag to compare
v0.7.0-alpha.5 Pre-release
Pre-release

🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.

v0.7.0-alpha.4

22 Oct 14:51
32e94b6
Compare
Choose a tag to compare
v0.7.0-alpha.4 Pre-release
Pre-release

🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.

v0.7.0-alpha.3

14 Oct 14:51
f52b618
Compare
Choose a tag to compare
v0.7.0-alpha.3 Pre-release
Pre-release

🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.

v0.7.0-alpha.2

02 Oct 17:22
c000ea8
Compare
Choose a tag to compare
v0.7.0-alpha.2 Pre-release
Pre-release

🚨 This is an ALPHA RELEASE. Use it only for testing purposes, if you find any bugs file an issue.