diff --git a/harmony/src/modules/k8s/ingress.rs b/harmony/src/modules/k8s/ingress.rs index ca84edf..883d721 100644 --- a/harmony/src/modules/k8s/ingress.rs +++ b/harmony/src/modules/k8s/ingress.rs @@ -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, + pub path: Option, pub path_type: Option, pub namespace: Option, }