Skip to content

Commit e5950fa

Browse files
committed
chore: Upgrade stackable-operator to 0.110.1
1 parent e705399 commit e5950fa

File tree

6 files changed

+35
-40
lines changed

6 files changed

+35
-40
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
- Document Helm deployed RBAC permissions and remove unnecessary permissions ([#767], [#774]).
1313
- BREAKING: `configOverrides` now only accepts the known config file `webserver_config.py`. Previously, arbitrary file names were silently accepted and ignored ([#775]).
14-
- Bump `stackable-operator` to 0.110.0, kube to 3.1.0, and snafu to 0.9 ([#775]).
14+
- Bump `stackable-operator` to 0.110.1, kube to 3.1.0, and snafu to 0.9 ([#775]).
1515

1616
### Fixed
1717

Cargo.lock

Lines changed: 10 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: 10 additions & 10 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ product-config = { git = "https://github.com/stackabletech/product-config.git",
1414
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", features = [
1515
"crds",
1616
"webhook",
17-
], tag = "stackable-operator-0.110.0" }
17+
], tag = "stackable-operator-0.110.1" }
1818

1919
anyhow = "1.0"
2020
built = { version = "0.8", features = ["chrono", "git2"] }

crate-hashes.json

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

rust/operator-binary/src/config.rs

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -237,15 +237,10 @@ fn append_oidc_config(
237237
.well_known_config_url()
238238
.context(InvalidWellKnownConfigUrlSnafu)?;
239239

240-
let client_auth_method = serde_json::to_value(
241-
client_options
242-
.product_specific_fields
243-
.client_authentication_method,
244-
)
245-
.expect("ClientAuthenticationMethod should serialize to JSON");
246-
let client_auth_method = client_auth_method
247-
.as_str()
248-
.expect("ClientAuthenticationMethod should serialize to a string");
240+
let client_auth_method = client_options
241+
.product_specific_fields
242+
.client_authentication_method
243+
.as_ref();
249244

250245
formatdoc!(
251246
"

0 commit comments

Comments
 (0)