Using Network Load Balancer
Last updated
To integrate a NLB with a Kubernetes cluster, you can use a Service with type LoadBalancer . When you create such a Service, GreenNode LoadBalancer Controller will automatically create an NLB to forward traffic to pods on your node . You can also use annotations to customize NLB properties, such as port, protocol,...
kubectl create deployment httpbin --image=mccutchen/go-httpbin
kubectl expose deployment httpbin --name=httpbin-service --port=80 --target-port=8080 --type=LoadBalancerLast updated

