We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f146e3 commit 8ec89c8Copy full SHA for 8ec89c8
pkg/store/convert.go
@@ -84,7 +84,7 @@ func (n ingressNetworkingV1Strategy) ConvertIngress() *Ingress {
84
logger.Errorf("backend in ingress '%s/%s' should have service but none found", n.ig.GetNamespace(), n.ig.GetName())
85
continue
86
}
87
- pathKey := pathType + "-" + k8sPath.Path + "-" + k8sPath.Backend.Service.Port.Name
+ pathKey := pathType + "-" + k8sPath.Path + "-" + k8sPath.Backend.Service.Name + "-" + k8sPath.Backend.Service.Port.Name
88
paths[pathKey] = &IngressPath{
89
Path: k8sPath.Path,
90
PathTypeMatch: pathType,
0 commit comments