K8sIngressPath

This commit is contained in:
tahahawa 2025-05-15 12:10:00 -04:00
parent 9418f3b964
commit 0eb63f2425

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>,
}