Skip to content

Commit 5f7dbd8

Browse files
Fix imports
1 parent 7ed096f commit 5f7dbd8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

rust/operator-binary/src/druid_controller.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ use stackable_druid_crd::{
2121
RUNTIME_PROPS, RW_CONFIG_DIRECTORY, S3_ACCESS_KEY, S3_ENDPOINT_URL, S3_PATH_STYLE_ACCESS,
2222
S3_SECRET_KEY, ZOOKEEPER_CONNECTION_STRING,
2323
};
24-
use stackable_operator::k8s_openapi::api::core::v1::ServiceAccount;
25-
use stackable_operator::kube::ResourceExt;
2624
use stackable_operator::{
2725
builder::{
2826
self,
@@ -44,15 +42,15 @@ use stackable_operator::{
4442
k8s_openapi::{
4543
api::{
4644
apps::v1::{StatefulSet, StatefulSetSpec},
47-
core::v1::{ConfigMap, EnvVar, Service, ServiceSpec},
45+
core::v1::{ConfigMap, EnvVar, Service, ServiceAccount, ServiceSpec},
4846
},
4947
apimachinery::pkg::apis::meta::v1::LabelSelector,
5048
DeepMerge,
5149
},
5250
kube::{
5351
core::{error_boundary, DeserializeGuard},
5452
runtime::{controller::Action, reflector::ObjectRef},
55-
Resource,
53+
Resource, ResourceExt,
5654
},
5755
kvp::{KeyValuePairError, Label, LabelError, LabelValueError, Labels},
5856
logging::controller::ReconcilerError,

0 commit comments

Comments
 (0)