Skip to content

Commit e3a6417

Browse files
committed
fix: Bump nightly version of kube to fix CRD generation bug
1 parent 2ba637e commit e3a6417

4 files changed

Lines changed: 18 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ k8s-openapi = { version = "0.27.0", default-features = false, features = ["schem
4040
# We use rustls instead of openssl for easier portability, e.g. so that we can build stackablectl without the need to vendor (build from source) openssl
4141
# We use ring instead of aws-lc-rs, as this currently fails to build in "make run-dev"
4242
# We need a few schema fixes in kube, that went into main, but are not released yet
43-
kube = { git = "https://github.com/kube-rs/kube-rs", rev = "fe69cc486ff8e62a7da61d64ec3ebbd9e64c43b5", version = "=3.0.1", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "admission", "rustls-tls", "ring"] }
43+
# Fix 1: https://github.com/kube-rs/kube/pull/1934
44+
# Fix 2: https://github.com/kube-rs/kube/pull/1942
45+
kube = { git = "https://github.com/kube-rs/kube-rs", rev = "1320643f8ce7f8189e03496ff1329d678d76224c", version = "=3.0.1", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "admission", "rustls-tls", "ring"] }
4446
opentelemetry = "0.31.0"
4547
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
4648
opentelemetry-appender-tracing = "0.31.0"

crates/stackable-operator/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [0.106.2] - 2026-02-17
8+
9+
### Fixed
10+
11+
- Use a [nightly](https://github.com/kube-rs/kube/commit/1320643f8ce7f8189e03496ff1329d678d76224c) version of `kube` to resolve the CRD generation bugs [#1934](https://github.com/kube-rs/kube/pull/1934) and [#1942](https://github.com/kube-rs/kube/pull/1942) ([#XXXX]).
12+
13+
[#XXXX]: https://github.com/stackabletech/operator-rs/pull/XXXX
14+
715
## [0.106.1] - 2026-02-17
816

917
### Fixed

crates/stackable-operator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "stackable-operator"
33
description = "Stackable Operator Framework"
4-
version = "0.106.1"
4+
version = "0.106.2"
55
authors.workspace = true
66
license.workspace = true
77
edition.workspace = true

0 commit comments

Comments
 (0)