We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1388bca commit ab609d6Copy full SHA for ab609d6
pkg/store/convert.go
@@ -106,7 +106,7 @@ func (n ingressNetworkingV1Strategy) ConvertIngress() *Ingress {
106
logger.Errorf("backend in ingress '%s/%s' should have service but none found", n.ig.GetNamespace(), n.ig.GetName())
107
continue
108
}
109
- pathKey := pathType + "-" + k8sPath.Path + "-" + k8sPath.Backend.Service.Port.Name
+ pathKey := pathType + "-" + k8sPath.Path + "-" + k8sPath.Backend.Service.Name + "-" + k8sPath.Backend.Service.Port.Name
110
paths[pathKey] = &IngressPath{
111
Path: k8sPath.Path,
112
PathTypeMatch: pathType,
0 commit comments