How to create Kubernetes load balancer on aws
问题 Kubernetes create a load balancer, for each service; automatically in GCE. How can I manage something similar on AWS? Kubernetes service basically use the kubeproxy to handle the internal traffic. But that kubeproxy ip its do not have access to the external network. There its a way to accomplish this? 回答1: In your service definition, set its type field to LoadBalancer , and kubernetes will automatically create an AWS Elastic Load Balancer for you if you're running on AWS. This feature should