Re: [kubernetes-users] Kubernetes service type for background app

2018-01-02 Thread Rodrigo Campos
Services are just to expose. So you can just a deployment and decide (or autoscale) the replicas :) On Tuesday, January 2, 2018, Mario Rodriguez wrote: > good question, I thought you always needed a Service when running an app > in k8s. > > On Monday, January 1, 2018 at

Re: [kubernetes-users] Kubernetes service type for background app

2018-01-02 Thread Mario Rodriguez
good question, I thought you always needed a Service when running an app in k8s. On Monday, January 1, 2018 at 10:51:48 PM UTC-6, Tim Hockin wrote: > > Why do you need a Service at all? > > On Jan 1, 2018 8:43 PM, "Mario Rodriguez" > wrote: > >> Hi, I'm in the middle of

Re: [kubernetes-users] Kubernetes service type for background app

2018-01-01 Thread 'Tim Hockin' via Kubernetes user discussion and Q
Why do you need a Service at all? On Jan 1, 2018 8:43 PM, "Mario Rodriguez" wrote: > Hi, I'm in the middle of creating an K8s app that doesn't expose any HTTP > endpoints, is just a background app that pulls messages from a message bus > and takes some action based on the

[kubernetes-users] Kubernetes service type for background app

2018-01-01 Thread Mario Rodriguez
Hi, I'm in the middle of creating an K8s app that doesn't expose any HTTP endpoints, is just a background app that pulls messages from a message bus and takes some action based on the incoming message. No other apps will interact directly with this background app, only thru posting messages