mirror of https://github.com/linkerd/linkerd2.git
36 lines
1.0 KiB
Rust
36 lines
1.0 KiB
Rust
pub mod authorization_policy;
|
|
pub mod httproute;
|
|
pub mod meshtls_authentication;
|
|
mod network;
|
|
pub mod network_authentication;
|
|
pub mod server;
|
|
pub mod server_authorization;
|
|
pub mod target_ref;
|
|
|
|
pub use self::{
|
|
authorization_policy::{AuthorizationPolicy, AuthorizationPolicySpec},
|
|
httproute::{HttpRoute, HttpRouteSpec},
|
|
meshtls_authentication::{MeshTLSAuthentication, MeshTLSAuthenticationSpec},
|
|
network::Network,
|
|
network_authentication::{NetworkAuthentication, NetworkAuthenticationSpec},
|
|
server::{Server, ServerSpec},
|
|
server_authorization::{ServerAuthorization, ServerAuthorizationSpec},
|
|
target_ref::{ClusterTargetRef, LocalTargetRef, NamespacedTargetRef},
|
|
};
|
|
|
|
fn targets_kind<T>(group: Option<&str>, kind: &str) -> bool
|
|
where
|
|
T: kube::Resource,
|
|
T::DynamicType: Default,
|
|
{
|
|
let dt = Default::default();
|
|
|
|
let mut t_group = &*T::group(&dt);
|
|
if t_group.is_empty() {
|
|
t_group = "core";
|
|
}
|
|
|
|
group.unwrap_or("core").eq_ignore_ascii_case(t_group)
|
|
&& kind.eq_ignore_ascii_case(&*T::kind(&dt))
|
|
}
|