Questions tagged [kube-proxy]

kube-proxy is a component of kubernetes that is responsible for `service` and load balance.

The Kubernetes network proxy runs on each node. This reflects services as defined in the Kubernetes API on each node and can do simple TCP,UDP stream forwarding or round robin TCP,UDP forwarding across a set of backends.

124 questions
0
votes
1 answer

kube-proxy Couldn't find an endpoint for default/tomcat:http: missing service entry

I use OS Centos 7. My Pod: apiVersion: v1 kind: Pod metadata: name: tomcat spec: containers: - image: ec2-73-99-254-8.eu-central-1.compute.amazonaws.com:5000/tom name: tomcat command: ["sh","-c","/opt/tomcat/bin/deploy-and-run.sh"] …
0
votes
2 answers

How does kube-proxy loadbalancing

I understand that nodes in K8s cluster will all have kube-proxy running and any node can forward traffic for any service in the cluster. Lets say I have a service with two replica pods which are running on two Nodes N1 and N2. The external load…
Mayank
  • 321
  • 1
  • 3
  • 4
0
votes
2 answers

Kube proxy load balance across machines

My understanding is that Kube-proxy can load balance the services running across machines? Can someone confirm, that is what it is designed for.. Rgs
user1687711
  • 433
  • 1
  • 4
  • 12
-1
votes
2 answers

Access nodeport via kube-proxy from another machine

I have kubernetes cluster (node01-03). There is a service with nodeport to access a pod (nodeport 31000). The pod is running on node03. I can access the service with http://node03:31000 from any host. On every node I can access the service like…
micsch87
  • 3
  • 2
1 2 3
8
9