Web application on Kubernese and AWS

It seems the best way to deploy an external application to Google Cloud is to create an external load balancer with this line in the service config:

{ ... "createExternalLoadBalancer": true ... }

This doesn't work for AWS. Create the following error when starting the service:

requested an external service, but no cloud provider supplied

I know about configuring PublicIPs in services, but that assumes knowing the IP service beforehand, so I can set a domain name for it, but it doesn't seem possible yet if I want to configure it using an external service like AWS ELB.

What's the recommended way to do this on AWS?

+3


source to share


1 answer


This is still going on.

Please see: https://github.com/GoogleCloudPlatform/kubernetes/pull/2672



For a proposal that is starting to add AWB ELB support to Kubernetes, we are working to have this download request integrated.

Thank!

+3


source







All Articles