Re: [kubernetes-users] how i can change the leader on HA kubernetes

2018-05-16 Thread 'Daniel Smith' via Kubernetes user discussion and Q
kube-apiserver is stateless. Controllers self-elect, as does etcd. What are you trying to do? On Wed, May 16, 2018 at 11:33 AM wrote: > hello > i have 3 masters on a HA kubernetes. > can i elect / change the leader ? > > -- > You received this message because

[kubernetes-users] Quebic - FaaS Framework

2018-05-16 Thread Tharanga Thennakoon
Quebic is a framework for writing serverless functions to run on Kubernetes. You can write your functions in any language. Currently quebic supports only for Java and NodeJS. https://github.com/quebic-source/quebic -- You received this message because you are subscribed to the Google Groups

[kubernetes-users] How to create multiple admin users for kubernetes cluster?

2018-05-16 Thread Dipanjan Das
I want to set up a kubernetes cluster that supports RBAC and have multiple admin users. If I create an user like this , I end up creating an ordinary

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] Re: Slow response times using default Ingress on GKE

2018-05-16 Thread 'Nicks' via Kubernetes user discussion and Q
I created an HTTP LB setup on GCP using a golang HTTP server without kubernetes and was able to see rare long-tail latencies in >1 second. After I set `IdleTimeout` to larger than ten minutes, I stopped seeing those slow responses. The echoheaders image uses nginx and doesn't set

[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

[kubernetes-users] Re: Kubernetes Office Hours today! (Also, you can win a t-shirt!)

2018-05-16 Thread Jorge Castro
Here's the video from this morning's session: https://www.youtube.com/watch?v=jhVkKzme-I4 We're going live in about ~30 minutes for another hour long session, bring your question on #office-hours on slack for a chance to win a Kubernetes tshirt! On May 16 2018, at 7:59 am, Jorge Castro

[kubernetes-users] Re: Slow response times using default Ingress on GKE

2018-05-16 Thread amadou
On Monday, May 14, 2018 at 5:10:55 PM UTC-4, francois...@polynom.io wrote: > Le jeudi 19 avril 2018 02:14:28 UTC+2, Dave Jensen a écrit : > > We have what I believe to be a very straightforward ingress setup on GKE. > > However, we started noticing random slowdowns almost immediately. On > >

Re: [kubernetes-users] How do pods communicate?

2018-05-16 Thread David Rosenstrauch
It all depends on how you have your volume mounts set up. If your pods are just mounting local storage, then they won't be able to see each other's files. However, there are several options for having multiple pods mount the same shared folder: NFS, GlusterFS, Ceph, etc. Read here:

[kubernetes-users] Kubernetes Office Hours today! (Also, you can win a t-shirt!)

2018-05-16 Thread Jorge Castro
Hi everyone, Office hours is our once-a-month live stream where Kubernetes experts answer questions from the audience: https://github.com/kubernetes/community/blob/master/events/office-hours.md We go live at 2pm and 9pm UTC (that's about an hour from when I am sending this message). So if

[kubernetes-users] Which Kinds I need for the usage of glusterfs?

2018-05-16 Thread dan.steffen.de via Kubernetes user discussion and Q
Hello, I am a little confused which kinds I have to use for glusterfs in kubernetes? At the moment I think I need the following "configuration" storage-class -> Endpoints -> Service (of Endpoint) -> PersistentVolume -> PersistentVolumeClaim but I not sure if I really need the storage-class or

[kubernetes-users] how i can change the leader on HA kubernetes

2018-05-16 Thread ferreiragabrielsousa
hello i have 3 masters on a HA kubernetes. can i elect / change the leader ? -- 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

[kubernetes-users] how i can change the lease on HA kubernetes

2018-05-16 Thread ferreiragabrielsousa
hello i have 3 masters on a HA kubernetes. can i elect / change the leader ? -- 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

[kubernetes-users] How do pods communicate?

2018-05-16 Thread 我是KY K
Suppose there's a deployment with 2 replicas , podA and podB without mount any volume. there's 2 Users connection which is reqA connect to podA , reqB connect to podB. reqA uploaded an image file into the podA ,Does the user reqB which is connect to podB can see this image? How do podA and

[kubernetes-users] Got an question to get container_network_tcp_usage_total through k8s deafult cadvisor

2018-05-16 Thread yuzhiquanlong
I use cadvisor to collect many msg, but i find container_network_tcp_usage_total always 0, then i google it, i got this: https://github.com/kubernetes/kubernetes/issues/60279 so i need to modify cadvisor config, but in k8s cluster, this is an default package. so how can i modify it ? -- You

[kubernetes-users] minikube: Self contained install with no downloading?

2018-05-16 Thread mgibbonsx via Kubernetes user discussion and Q
⁣Hi. I was wondering if is there anyway to install minikube (i.e. run "minikube start") without an internet connection or dynamic downloads? The reason for the question is that I am trying to set it up so that developers in a firm can install it without downloading any software or images