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
Hi!
My conf:
--- apiVersion: v1 kind: ConfigMap metadata: name: nginx-ingress-controller-tcp namespace: kube-system data: "5001": "ns/logstash:5001" --- apiVersion: v1 kind: ConfigMap metadata: name: nginx-ingress-controller-udp namespace: kube-system data: "5001": "ns/logstash:5001"
If i use two protocols in service:
--- apiVersion: v1 kind: Service metadata: name: logstash namespace: ns spec: ports: - name: log protocol: UDP port: 5001 targetPort: 5001 - name: log2 protocol: TCP port: 5001 targetPort: 5001
I got error: 5 controller.go:542] service ns/logstash does not have any active endpoints for port 5001 and protocol TCP
5 controller.go:542] service ns/logstash does not have any active endpoints for port 5001 and protocol TCP
If I delete the first record about the udp, then the tcp starts working.
If the ports are the same, the controller sees only the first entry in the service.
The text was updated successfully, but these errors were encountered:
Changing the port number helps to get around this problem
Sorry, something went wrong.
Closing. This was fixed in #1078
No branches or pull requests
Hi!
My conf:
If i use two protocols in service:
I got error:
5 controller.go:542] service ns/logstash does not have any active endpoints for port 5001 and protocol TCP
If I delete the first record about the udp, then the tcp starts working.
If the ports are the same, the controller sees only the first entry in the service.
The text was updated successfully, but these errors were encountered: