Skip to content

Commit bd123f3

Browse files
committed
chore: Merge branch 'main' into chore/bump-rust-deps-pre-25.11.0
2 parents d2489c7 + cd27fa0 commit bd123f3

7 files changed

Lines changed: 309 additions & 81 deletions

File tree

CHANGELOG.md

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

99
- Helm: Allow Pod `priorityClassName` to be configured ([#633]).
1010
- Add `prometheus.io/path|port|scheme` annotations to metrics service ([#641]).
11+
- Add end-of-support checker ([#647]).
12+
- `EOS_CHECK_MODE` (`--eos-check-mode`) to set the EoS check mode. Currently, only "offline" is supported.
13+
- `EOS_INTERVAL` (`--eos-interval`) to set the interval in which the operator checks if it is EoS.
14+
- `EOS_DISABLED` (`--eos-disabled`) to disable the EoS checker completely.
1115

1216
### Changed
1317

@@ -25,6 +29,7 @@ All notable changes to this project will be documented in this file.
2529
[#636]: https://github.com/stackabletech/hive-operator/pull/636
2630
[#641]: https://github.com/stackabletech/hive-operator/pull/641
2731
[#646]: https://github.com/stackabletech/hive-operator/pull/646
32+
[#647]: https://github.com/stackabletech/hive-operator/pull/647
2833

2934
## [25.7.0] - 2025-07-23
3035

Cargo.lock

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

Cargo.nix

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

Cargo.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ repository = "https://github.com/stackabletech/hive-operator"
1111

1212
[workspace.dependencies]
1313
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.8.0" }
14-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = ["telemetry", "versioned"], tag = "stackable-operator-0.100.1" }
14+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = [
15+
"telemetry",
16+
"versioned",
17+
], tag = "stackable-operator-0.100.1" }
1518

1619
anyhow = "1.0"
1720
built = { version = "0.8", features = ["chrono", "git2"] }
@@ -20,6 +23,8 @@ const_format = "0.2"
2023
fnv = "1.0"
2124
futures = { version = "0.3", features = ["compat"] }
2225
indoc = "2.0"
26+
# We pin the kube version, as we use a patch for 2.0.1 below
27+
kube = "=2.0.1"
2328
pin-project = "1.1"
2429
rstest = "0.26"
2530
semver = "1.0"
@@ -34,3 +39,6 @@ tracing = "0.1"
3439
# [patch."https://github.com/stackabletech/operator-rs.git"]
3540
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
3641
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
42+
43+
[patch.crates-io]
44+
kube = { git = "https://github.com/stackabletech/kube-rs", branch = "2.0.1-fix-schema-hoisting" }

crate-hashes.json

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

0 commit comments

Comments
 (0)