Using Network Load Balancer
Integrate with NLB
Deploy a NLB
Step 1: Create Deployment, Service type LoadBalancer
kubectl create deployment httpbin --image=mccutchen/go-httpbin
kubectl expose deployment httpbin --name=httpbin-service --port=80 --target-port=8080 --type=LoadBalancerLast updated

