Re: [kubernetes-users] update and set service post deployment

2017-07-02 Thread Rodrigo Campos
In fact, the logs suggest there is a problem with the storage. You should zoom there, forget about the service change that is unrelated :) On Sunday, July 2, 2017, Rodrigo Campos wrote: > The pod failure can't be related to that. It might be a problem to attach > storage or something else, but r

Re: [kubernetes-users] update and set service post deployment

2017-07-02 Thread Rodrigo Campos
The pod failure can't be related to that. It might be a problem to attach storage or something else, but really really can't be that. They are really different things, something else must have changed. On Saturday, July 1, 2017, Norman Khine wrote: > I see the difference between the service an

Re: [kubernetes-users] update and set service post deployment

2017-07-01 Thread Norman Khine
I see the difference between the service and pods, but I am unsure how to trouble shoot this as the only changes I made was to the two lines here https://github.com/kubernetes/charts/blob/master/stable/mongodb-replicaset/templates/mongodb-service.yaml#L17-L18 diff --git a/stable/mongodb-replica

Re: [kubernetes-users] update and set service post deployment

2017-06-30 Thread Rodrigo Campos
That is should be independent of the service type change. The service is a different object and just exposed running pods. If the pods are not running, then is something related to the deployment/whatever you are using. But should not be the service On Friday, June 30, 2017, Norman Khine wrote:

Re: [kubernetes-users] update and set service post deployment

2017-06-30 Thread Norman Khine
nope, the pods never initialized ;'( will see if i can trouble-shoot it On 30 June 2017 at 17:42, Rodrigo Campos wrote: > So it's working? :) > > On Friday, June 30, 2017, Norman Khine wrote: > >> Ignore, I had to pass the `templates/database/mongo/values.yaml` to >> specify the volume! >> >> >

Re: [kubernetes-users] update and set service post deployment

2017-06-30 Thread Rodrigo Campos
So it's working? :) On Friday, June 30, 2017, Norman Khine wrote: > Ignore, I had to pass the `templates/database/mongo/values.yaml` to > specify the volume! > > > persistentVolume: > enabled: true > ## If defined, volume.beta.kubernetes.io/storage-class: > ## Default: volume.alpha.kubern

Re: [kubernetes-users] update and set service post deployment

2017-06-30 Thread Rodrigo Campos
Just modify the service and do a kubectl apply -f IIUC, that is all. Can you try that? :) On Friday, June 30, 2017, Norman Khine wrote: > Hello, I have installed mongodb using the helm chart, > https://github.com/kubernetes/charts/blob/master/stable/ > mongodb-replicaset/templates/mongodb-serv

[kubernetes-users] update and set service post deployment

2017-06-30 Thread Norman Khine
Hello, I have installed mongodb using the helm chart, https://github.com/kubernetes/charts/blob/master/stable/mongodb-replicaset/templates/mongodb-service.yaml#L17, what is the correct way to update the Type and IP for this service, currently it is: ➜ k8s git:(master) kubectl describe svc tri