We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a service is defined with two ports with the same port number but different protocols, eg
Ports: []corev1.ServicePort{ { Name: "tcp", Port: 42, Protocol: corev1.ProtocolTCP, }, { Name: "udp", Port: 42, Protocol: corev1.ProtocolUDP, }, },
LH returns both records:
0 50 42 hello.mcs-conformance-1655466269.svc.clusterset.local 0 50 42 hello.mcs-conformance-1655466269.svc.clusterset.local
while a .svc.cluster.local query returns only one of them. LH should do the same.
.svc.cluster.local
The text was updated successfully, but these errors were encountered:
Don't return duplicate ports from SRV query
7efd9bf
Fixes submariner-io#1656 Signed-off-by: Tom Pantelis <[email protected]>
4f7f97e
7eca73c
tpantelis
Successfully merging a pull request may close this issue.
If a service is defined with two ports with the same port number but different protocols, eg
LH returns both records:
while a
.svc.cluster.local
query returns only one of them. LH should do the same.The text was updated successfully, but these errors were encountered: