@@ -37,7 +37,7 @@ use crate::{
37
37
ResourceRequirementsExt , ResourceRequirementsType ,
38
38
} ,
39
39
} ,
40
- crd:: listener:: v1alpha1 as listener_v1alpha1 ,
40
+ crd:: listener,
41
41
kvp:: {
42
42
Label , LabelError , Labels ,
43
43
consts:: { K8S_APP_INSTANCE_KEY , K8S_APP_MANAGED_BY_KEY , K8S_APP_NAME_KEY } ,
@@ -205,7 +205,7 @@ impl ClusterResource for Service {}
205
205
impl ClusterResource for ServiceAccount { }
206
206
impl ClusterResource for RoleBinding { }
207
207
impl ClusterResource for PodDisruptionBudget { }
208
- impl ClusterResource for listener_v1alpha1 :: Listener { }
208
+ impl ClusterResource for listener :: v1alpha1 :: Listener { }
209
209
210
210
impl ClusterResource for Job {
211
211
fn pod_spec ( & self ) -> Option < & PodSpec > {
@@ -646,7 +646,7 @@ impl ClusterResources {
646
646
self . delete_orphaned_resources_of_kind:: <ServiceAccount >( client) ,
647
647
self . delete_orphaned_resources_of_kind:: <RoleBinding >( client) ,
648
648
self . delete_orphaned_resources_of_kind:: <PodDisruptionBudget >( client) ,
649
- self . delete_orphaned_resources_of_kind:: <listener_v1alpha1 :: Listener >( client) ,
649
+ self . delete_orphaned_resources_of_kind:: <listener :: v1alpha1 :: Listener >( client) ,
650
650
) ?;
651
651
652
652
Ok ( ( ) )
0 commit comments