Skip to content

Commit f2d867c

Browse files
committed
chore: Merge branch 'main' into chore/bump-rust-deps-pre-25.11.0
2 parents 99bc23c + 22dc32a commit f2d867c

7 files changed

Lines changed: 719 additions & 197 deletions

File tree

CHANGELOG.md

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

77
### Added
88

9+
- - Add end-of-support checker which can be controlled with environment variables and CLI arguments ([#804]).
10+
- `EOS_CHECK_MODE` (`--eos-check-mode`) to set the EoS check mode. Currently, only "offline" is supported.
11+
- `EOS_INTERVAL` (`--eos-interval`) to set the interval in which the operator checks if it is EoS.
12+
- `EOS_DISABLED` (`--eos-disabled`) to disable the EoS checker completely.
913
- Support for fault-tolerant execution ([#779], [#793]).
1014
- Support for the client spooling protocol ([#793]).
1115
- Helm: Allow Pod `priorityClassName` to be configured ([#798]).
@@ -37,6 +41,7 @@ All notable changes to this project will be documented in this file.
3741
[#796]: https://github.com/stackabletech/trino-operator/pull/796
3842
[#798]: https://github.com/stackabletech/trino-operator/pull/798
3943
[#801]: https://github.com/stackabletech/trino-operator/pull/801
44+
[#804]: https://github.com/stackabletech/trino-operator/pull/804
4045
[#805]: https://github.com/stackabletech/trino-operator/pull/805
4146
[#807]: https://github.com/stackabletech/trino-operator/pull/807
4247
[#810]: https://github.com/stackabletech/trino-operator/pull/810

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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ built = { version = "0.8", features = ["chrono", "git2"] }
1919
clap = "4.5"
2020
const_format = "0.2"
2121
futures = { version = "0.3", features = ["compat"] }
22+
# We pin the kube version, as we use a patch for 2.0.1 below
23+
kube = "=2.0.1"
2224
indoc = "2.0"
2325
openssl = "0.10"
2426
rstest = "0.26"
@@ -33,3 +35,6 @@ tracing = "0.1"
3335
# [patch."https://github.com/stackabletech/operator-rs.git"]
3436
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }
3537
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
38+
39+
[patch.crates-io]
40+
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)