|
|
|
|
|
by leetbulb
3727 days ago
|
|
Check out the new Ingress stuff for exposing services to public. http://kubernetes.io/docs/user-guide/ingress/ https://github.com/kubernetes/contrib/tree/master/ingress/co... The ingress controller runs on nodes with a public IP. When you create an ingress for one of your services, one of the controllers will pick that up and expose it. The ingress controller linked above is built on nginx and essentially just reconfigures nginx based on your ingress resource spec. Similar to when you define a LoadBalancer in a service with GCE, the service's external IP is set to the upstream ingress controller node's public IP. |
|