Re: [kubernetes-users] How highly availability is the master zone in GKE?

2017-06-06 Thread 'Ahmet Alp Balkan' via Kubernetes user discussion and Q
> > On Mon, Jun 5, 2017 at 10:29 AM, wrote: > >> GKE creates a cluster with one master zone. Although there is an SLA of >> 99.5% uptime, this adds up to almost 4 hours in a month. This is not >> acceptable for my application in production. >> > I believe you recently asked

Re: [kubernetes-users] Kubernetes statefulsets galera

2017-06-06 Thread Montassar Dridi
thanks you were right when I run the image locally I get this error Container command '/entrypoint.sh' not found or does not exist but I'm following the exact repository that is used in the dockerhub https://hub.docker.com/r/erkules/galera/ https://github.com/erkules/codership-images do you

Re: [kubernetes-users] Kubernetes statefulsets galera

2017-06-06 Thread Rodrigo Campos
Try that image locally with docker directly, to debug what happens. It probably has a problem. You can run the image using a shell or something to easily try what is happening and fix it. On Tuesday, June 6, 2017, Montassar Dridi wrote: > I'm following this example

[kubernetes-users] Can I know when will be the Kubernetes Cron Jobs beta/GA release?

2017-06-06 Thread Amalka Subasinghe
Can I know when will be the Kubernetes Cron Jobs beta/GA release? -- You received this message because you are subscribed to the Google Groups "Kubernetes user discussion and Q" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [kubernetes-users] Accessing kafka from outside kubernetes

2017-06-06 Thread george . pucea
Hi Brandon, Thanks for the response. Kafka is publishing a message to a topic in two-step process: a. Connect to a broker which is a pod running on a kubernetes worker and get metadata about the topic i.e. who is the leader of the topics partitions (info stored in zookeeper) b. Connect to

[kubernetes-users] Kubernetes statefulsets galera

2017-06-06 Thread Montassar Dridi
I'm following this example to create a synchronized database pods https://github.com/openshift/origin/tree/master/examples/statefulsets/mysql/galera and it's working fine with no issue but when I try to customize erkules/galera:basic docker image (to install some packages for example) I get

Re: [kubernetes-users] How highly availability is the master zone in GKE?

2017-06-06 Thread 'Robert Bailey' via Kubernetes user discussion and Q
On Mon, Jun 5, 2017 at 10:29 AM, wrote: > GKE creates a cluster with one master zone. Although there is an SLA of > 99.5% uptime, this adds up to almost 4 hours in a month. This is not > acceptable for my application in production. > > Furthermore, cluster with one master

Re: [kubernetes-users] Accessing kafka from outside kubernetes

2017-06-06 Thread Brandon Philips
HostPort should be fixed in CNI and should be fixed-fixed in Kubernetes 1.7: https://github.com/kubernetes/kubernetes/issues/23920#issuecomment-299535316 NodePort should work though, are you experiencing issues with that? Brandon On Tue, Jun 6, 2017 at 7:08 AM wrote: >