@@ -30,10 +30,8 @@ use stackable_operator::{
3030 cli:: OperatorEnvironmentOptions ,
3131 cluster_resources:: { ClusterResourceApplyStrategy , ClusterResources } ,
3232 commons:: {
33- product_image_selection:: ResolvedProductImage ,
34- random_secret_creation,
35- rbac:: build_rbac_resources,
36- secret_class:: SecretClassVolumeProvisionParts ,
33+ product_image_selection:: ResolvedProductImage , random_secret_creation,
34+ rbac:: build_rbac_resources, secret_class:: SecretClassVolumeProvisionParts ,
3735 } ,
3836 constants:: RESTART_CONTROLLER_ENABLED_LABEL ,
3937 k8s_openapi:: {
@@ -189,11 +187,6 @@ pub enum Error {
189187 container_name : String ,
190188 } ,
191189
192- #[ snafu( display( "failed to retrieve secret for internal communications" ) ) ]
193- FailedToRetrieveInternalSecret {
194- source : stackable_operator:: client:: Error ,
195- } ,
196-
197190 #[ snafu( display( "failed to resolve and merge config for role and role group" ) ) ]
198191 FailedToResolveConfig { source : crate :: crd:: Error } ,
199192
@@ -419,7 +412,11 @@ pub async fn reconcile_trino(
419412 let role_group_ref = trino_role. rolegroup_ref ( trino, & role_group) ;
420413
421414 let merged_config = trino
422- . merged_config ( & trino_role, & role_group_ref, & dereferenced. catalog_definitions )
415+ . merged_config (
416+ & trino_role,
417+ & role_group_ref,
418+ & dereferenced. catalog_definitions ,
419+ )
423420 . context ( FailedToResolveConfigSnafu ) ?;
424421
425422 let role_group_service_recommended_labels = build_recommended_labels (
0 commit comments