feat: add ingress score #32

Merged
taha merged 12 commits from add-ingress-score into master 2025-05-15 16:11:41 +00:00
Showing only changes of commit 0eb63f2425 - Show all commits

View File

@ -28,7 +28,7 @@ impl PathType {
}
}
type K8sIngressPath = String;
type IngressPath = String;
#[derive(Debug, Clone, Serialize)]
pub struct K8sIngressScore {
@ -36,7 +36,7 @@ pub struct K8sIngressScore {
pub host: fqdn::FQDN,
pub backend_service: fqdn::FQDN,
pub port: u16,
pub path: Option<K8sIngressPath>,
pub path: Option<IngressPath>,
pub path_type: Option<PathType>,
pub namespace: Option<fqdn::FQDN>,
}