Skip to content

Commit c317311

Browse files
committed
chore: Merge remote-tracking branch 'origin' into feat/add-scaler-crd
2 parents 41f2bcc + 03913eb commit c317311

31 files changed

Lines changed: 2004 additions & 165 deletions

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ json-patch = "4.0.0"
4242
k8s-openapi = { version = "0.27.0", default-features = false, features = ["schemars", "v1_35"] }
4343
# 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
4444
# We use ring instead of aws-lc-rs, as this currently fails to build in "make run-dev"
45-
# We need a few schema fixes in kube, that went into main, but are not released yet
46-
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"] }
45+
kube = { version = "3.1.0", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "admission", "rustls-tls", "ring"] }
4746
opentelemetry = "0.31.0"
4847
opentelemetry_sdk = { version = "0.31.0", features = ["rt-tokio"] }
4948
opentelemetry-appender-tracing = "0.31.0"

crates/stackable-operator/CHANGELOG.md

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

55
## [Unreleased]
66

7+
### Added
8+
9+
- Add generic database connection mechanism ([#1163]).
10+
- Add `config_overrides` module with `KeyValueOverridesProvider` trait, enabling
11+
structured config file formats (e.g. JSON) in addition to key-value overrides ([#1177]).
12+
13+
### Changed
14+
15+
- BREAKING: Change signature of `ContainerBuilder::add_env_vars` from `Vec<EnvVar>` to `IntoIterator<Item = EnvVar>` ([#1163]).
16+
- BREAKING: Remove `EXPERIMENTAL_` prefix in `CONFIG_OVERRIDE_FILE_HEADER_KEY` and `CONFIG_OVERRIDE_FILE_FOOTER_KEY` ([#1191]).
17+
- BREAKING: Bump `kube` from a custom version (`fe69cc486ff8e62a7da61d64ec3ebbd9e64c43b5`, which is between `3.0.1` and `3.1.0`
18+
and was needed to pull in schema fixes) to `3.1.0`. This means that the CRD schema generation bugs
19+
[#1934](https://github.com/kube-rs/kube/pull/1934) and [#1942](https://github.com/kube-rs/kube/pull/1942) are fixed ([#1192]).
20+
- BREAKING: Add `ConfigOverrides` type parameter to `CommonConfiguration`, `Role` and `RoleGroup`.
21+
The `config_overrides` field is now generic instead of `HashMap<String, HashMap<String, String>>` ([#1177]).
22+
- BREAKING: In [#1178] the `clientAuthenticationMethod` was added to the `ClientAuthenticationOptions` struct,
23+
resulting it to show up in all product CRDs. even those that don't support configuring the client authentication method.
24+
With this change, operators need to opt-in to the `clientAuthenticationMethod` field by using the new
25+
`ClientAuthenticationMethodOption` struct for the generic type `ProductSpecificClientAuthenticationOptions` on
26+
`ClientAuthenticationOptions`. That way the struct definitions (as well as docs etc.) remain in stackable-operator,
27+
but operators can decide if they want to offer support for this field or not ([#1194]).
28+
29+
[#1163]: https://github.com/stackabletech/operator-rs/pull/1163
30+
[#1177]: https://github.com/stackabletech/operator-rs/pull/1177
31+
[#1191]: https://github.com/stackabletech/operator-rs/pull/1191
32+
[#1192]: https://github.com/stackabletech/operator-rs/pull/1192
33+
[#1194]: https://github.com/stackabletech/operator-rs/pull/1194
34+
735
## [0.109.0] - 2026-04-07
836

937
### Added

0 commit comments

Comments
 (0)