Skip to content

Commit 1dfaa8e

Browse files
committed
extend changelog, use helper function
1 parent 1b4c716 commit 1dfaa8e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- Bump `stackable-operator` to 0.110.0 and `kube` to 3.1.0 ([#719]).
1010
- Support setting `clientAuthenticationMethod` for OIDC authentication. The value is passed through to the Flask-AppBuilder config as `token_endpoint_auth_method` ([#719]).
1111
- BREAKING: Rename `EXPERIMENTAL_FILE_HEADER` and `EXPERIMENTAL_FILE_FOOTER` in `superset_config.py` for arbitrary Python code to `FILE_HEADER` and `FILE_FOOTER` ([#719], [#721]).
12+
- Use an internal secret for the secret-key ([#722]).
1213
- BREAKING: The `.clusterConfig.credentialsSecret` field has been renamed to `.clusterConfig.credentialsSecretName` for consistency ([#722]).
1314
- BREAKING: Implement generic database connection.
1415
This means you need to replace your simple database connection string with a typed struct.

rust/operator-binary/src/crd/affinity.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ mod tests {
2929
api::core::v1::{PodAffinityTerm, PodAntiAffinity, WeightedPodAffinityTerm},
3030
apimachinery::pkg::apis::meta::v1::LabelSelector,
3131
},
32+
utils::yaml_from_str_singleton_map,
3233
};
3334

3435
use super::*;
@@ -56,10 +57,8 @@ mod tests {
5657
default:
5758
replicas: 1
5859
"#;
59-
let deserializer = serde_yaml::Deserializer::from_str(input);
6060
let superset: v1alpha1::SupersetCluster =
61-
serde_yaml::with::singleton_map_recursive::deserialize(deserializer)
62-
.expect("illegal test input");
61+
yaml_from_str_singleton_map(input).expect("illegal test input");
6362
let merged_config = superset
6463
.merged_config(&SupersetRole::Node, &superset.node_rolegroup_ref("default"))
6564
.unwrap();

0 commit comments

Comments
 (0)