[kubernetes-users] Re: How to deploy kubernetes-v1.6.0 cluster on ubuntu

2017-03-30 Thread flyer zhang
Finally, it’s successful to deploy kubernetes-v1.6.0 cluster by following https://kubernetes.io/docs/getting-started-guides/kubeadm/ and https://github.com/kubernetes/kubernetes/issues/43815

Re: [kubernetes-users] Re: k8s Deployment

2017-03-30 Thread
On Thu, Mar 30, 2017 at 10:48 PM, Adam Schepis wrote: > > In my particular case the cache can be destroyed and rebuilt if a pod dies > (either a new EBS, scrubbed EBS, etc) So the hypothetical "inline claim" model might satisfy for you. I'm asking these same questions of many people and getting

Re: [kubernetes-users] Re: k8s Deployment

2017-03-30 Thread Adam Schepis
In my particular case the cache can be destroyed and rebuilt if a pod dies (either a new EBS, scrubbed EBS, etc) As it scales out to more pods and nodes, each would need their own space to put cache. It would be great if they could share space on one big EBS volume attached per node, but I wouldn'

Re: [kubernetes-users] Re: k8s Deployment

2017-03-30 Thread
You can't use PVClaim and Deployment together. You will get a single claim to a single EBS volume. Unfortunately this is a weird intersection of subsystems. PVClaim says "This data has identity, and I will manage its lifetime", and Deployment says "These pods have no identity, and you should man

[kubernetes-users] Re: k8s Deployment

2017-03-30 Thread Adam Schepis
argh. hit post before i fixed the topic :\ On Friday, March 31, 2017 at 1:19:54 AM UTC-4, Adam Schepis wrote: > > I have a service that i would like to deploy on my cluster (on AWS). I am > doing so with a Deployment. Each pod will require an available local disk > cache for its purposes. I was

[kubernetes-users] k8s Deployment

2017-03-30 Thread Adam Schepis
I have a service that i would like to deploy on my cluster (on AWS). I am doing so with a Deployment. Each pod will require an available local disk cache for its purposes. I was hoping to accomplish this through dynamic provisioning of EBS volumes for each pod (via a PVC). The behavior that I g

Re: [kubernetes-users] How is the staging/dev environment setup at your workplace? (x-post kubernetes-dev)

2017-03-30 Thread Rodrigo Campos
On Tuesday, March 28, 2017, Kunal Kerkar wrote: > Hi, > > Some background about me. I’ve been working on web APIs for the last 5 > years. Initially it started with a monolith codebase, plugging in all sorts > of APIs and packaging it all together. It was fairly easy to setup a > staging cluster d

[kubernetes-users] Re: Nodes not registering (AWS in existing VPC, using kops)

2017-03-30 Thread Adam Schepis
Thanks! this did the trick. had to swap some things around in VPC settings. On Friday, March 24, 2017 at 4:55:59 PM UTC-4, j...@jncissler.com wrote: > > On Friday, March 24, 2017 at 9:30:49 AM UTC-4, Adam Schepis wrote: > > kops version: 1.5.3 > > kubectl version (client): 1.5.4 > > kubectl ver

[kubernetes-users] !!!! Greetings !!!!

2017-03-30 Thread kong khemara
Hello, I am Barr Kong Khemara, I humbly ask if you are related to my client who died couple of years ago in a car accident here in my country Cambodia. I wish to also inquire if it is possible to have different families with the same last name as yours by coincidence who do not share the same co

Re: [kubernetes-users] Kubernetes services communication by REST: POST request failed with "Stream ended unexpectedly"

2017-03-30 Thread
It looks like your application doesn't support this type of request: exception.RestException: multipart/form-data cannot be processed. Try to take them out of kubernetes and containers and troubleshoot, so that you can see if the problem is Kubernetes or your application. On Thu, Mar 30, 2017 at 2

[kubernetes-users] Kubernetes services communication by REST: POST request failed with "Stream ended unexpectedly"

2017-03-30 Thread roman . rybalkin24
There are two services deployed into Kubernetes cluster. Service_1 exposes REST API, and one part of it is the method for file content uploading, so POST request with "Content-Type: multipart/form-data" is used. The sample of the real request, which is sending from Service_2 is: Request Default

[kubernetes-users] AWS SNS Gateway into Kubernetes

2017-03-30 Thread David Geller
We have a mixed system. Lots of AWS infrastructure but also, Kubernetes... moving to Kubernetes as it makes sense. I want to be able to launch Services and Jobs based on AWS events (S3, Cloudformation, etc...) Almost everything on AWS can push to SNS or SQS. My thought is to have a Service a

Re: [kubernetes-users] Wheres the best place to find documentation on the algorithms used in "internal" kubernetes load balancing ?

2017-03-30 Thread Rodrigo Campos
Yes, last time I checked (and believe it is still the case), there was no local preference. Also, note that in the node can be more than one pod matching On Thursday, March 30, 2017, wrote: > Thanks Rodrigo, 20 years ago :/ I used to use IPTables for firewalls so > hadn't made the connection t

[kubernetes-users] Re: Is there a way in fluent-gcp to parse the log in different format than default.

2017-03-30 Thread kanat
On Wednesday, March 29, 2017 at 4:48:14 AM UTC-5, Vinoth Narasimhan wrote: > We are running kubernets in GKE and using stackDriver for logging and > mointoring. > > > My log format as below. > > > [2017-03-29T06:30:11.011Z] [CTIConnection$ProcessIncomingPacketTask] > [Conn-3-InPackProcessPool

Re: [kubernetes-users] Wheres the best place to find documentation on the algorithms used in "internal" kubernetes load balancing ?

2017-03-30 Thread dan . gardner
Thanks Rodrigo, 20 years ago :/ I used to use IPTables for firewalls so hadn't made the connection that this is what was used inside k8s for traffic distribution. I read the basic docs and it just says its "By default, the choice of backend is random"** I'll presume for now that there is no l

Re: [kubernetes-users] Wheres the best place to find documentation on the algorithms used in "internal" kubernetes load balancing ?

2017-03-30 Thread Rodrigo Campos
On Thursday, March 30, 2017, wrote: > Wheres the best place to find documentation on the algorithms used in > "internal" kubernetes load balancing ? Im often seeing unbalanced > distribution and want to understand the mechanics involved. > > I have a k8s LoadBalancer Service on GKE which creates

[kubernetes-users] Re: Is there a way in fluent-gcp to parse the log in different format than default.

2017-03-30 Thread dan . gardner
We wanted the same but never got it working. We gave up, introduced our own fluentd k8s/deployment and ship specific application logs to our Elasticsearch(kibana) running @ Elastic Cloud. Stackdriver Logging will get better but we found it insufficient for our most important operational logs.

[kubernetes-users] Wheres the best place to find documentation on the algorithms used in "internal" kubernetes load balancing ?

2017-03-30 Thread dan . gardner
Wheres the best place to find documentation on the algorithms used in "internal" kubernetes load balancing ? Im often seeing unbalanced distribution and want to understand the mechanics involved. I have a k8s LoadBalancer Service on GKE which creates a GCP TCP LoadBalancer with an external IP

[kubernetes-users] Re: Hadoop on Kubernetes

2017-03-30 Thread irajumandala
On Thursday, September 1, 2016 at 5:21:33 AM UTC+5:30, Gabriel Navarro wrote: > Hello. > > > I'm new in this topic and need to install Hadoop on kubernetes (10 nod > cluster).  Can some one share your experience, tips, procedures, images, > dockerfiles...   > > > Will be appreciated. > > >

[kubernetes-users] Re: How to deploy kubernetes-v1.6.0 cluster on ubuntu

2017-03-30 Thread flyer zhang
I have tried to use kubeadm-v1.6.0 to deploy kubernetes-v.1.6.0 cluster following https://kubernetes.io/docs/getting-started-guides/kubeadm/ and it’s so sad that it hangs on “[apiclient] First node has registered, but is not ready yet”

[kubernetes-users] How to deploy kubernetes-v1.6.0 cluster on ubuntu

2017-03-30 Thread flyer zhang
Hi, I’m new to kubernetes and want to deploy kubernetes-v1.6.0 cluster on ubuntu. I have read https://kubernetes.io/docs/getting-started-guides/scratch/ several times and tried to deploy kubernetes-v1.6.0 on ubuntu nodes following this