Re: [kubernetes-users] Kubernetes Ingress HTTP Load Balancer with port range

2018-05-17 Thread Jonathan Mejias
Yeah, i know that does so many things but How can i create virtual host using kubernetes and using HTTP Load Balancer types? I just need to use PATHS for my dynamic endpoints applications. And i need to use the better practices in that. regards 2018-05-17 11:00 GMT-04:00 'Tim Hockin' via

Re: [kubernetes-users] Kubernetes Ingress HTTP Load Balancer with port range

2018-05-17 Thread 'Tim Hockin' via Kubernetes user discussion and Q
Kubernetes' Ingress abstraction does what you want. On Wed, May 16, 2018 at 6:38 PM Jonathan Mejias wrote: > Im using kubernetes to deploy apps, how can i create that virtual host > into a container cluster? > > On Wed, May 16, 2018, 19:36 'Tim Hockin' via Kubernetes user

Re: [kubernetes-users] Kubernetes Ingress HTTP Load Balancer with port range

2018-05-16 Thread 'Tim Hockin' via Kubernetes user discussion and Q
HTTP gives you a much better solution - virtual hosts. The 'host' header tells your HTTP ingress which logical service to access. e.g. `curl -h 'host: foo.com' http://210.210.210.22:80/` is different than `curl -h 'host: bar.com' http://210.210.210.22:80/` On Wed, May 16, 2018 at 1:19 PM

[kubernetes-users] Kubernetes Ingress HTTP Load Balancer with port range

2018-05-16 Thread Jonathan Mejías
Hi How do i to create a HTTP load balancer with kubernetes ingress? Example: SVC-1 . -- 210.210.210.22:*80 (internet)* SVC-2 . -- 210.210.210.22:*81 (internet)* SVC-3 . -- 210.210.210.22:*82 (internet)* services created in type NodePort, but what are the definitios for