Re: [kubernetes-users] Preserve client IP with Ingress Controller

2018-01-10 Thread bg
, January 10, 2018 at 5:10:08 PM UTC-5, John Belamaric wrote: > Your load balancer needs to support the proxy protocol: > > > > > > https://www.nginx.com/resources/admin-guide/proxy-protocol/ > > > > > > John > > > > > > >

Re: [kubernetes-users] How to authenticate to a Kubernetes cluster created on AWS w/ kops

2017-12-06 Thread bg
Worked like a charm. Thank you very much! -- 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+unsubscr...@googlegroups.com. To

[kubernetes-users] How to authenticate to a Kubernetes cluster created on AWS w/ kops

2017-12-05 Thread bg
I have several Kubernetes cluster on GKE, and recently created a cluster on AWS. When working against a GKE cluster, I run this command: gcloud container clusters get-credentials my-cluser --zone us-central1-a --my project I'd like to know how I should be authenticating with a kubernetes

[kubernetes-users] Image needs significantly more memory in Kubernetes than just using Docker

2017-03-28 Thread bg
I have an image that is basic Java application. I'm trying to minimize the amount of memory I submit the Job with in Kubernetes. Using Java's -Xmx flag I limit the program to using 25MB of memory (-Xmx25m) and using docker I run the container with 30M of memory: docker run -m 30m That works

[kubernetes-users] Persistent volumes between nodes

2017-02-21 Thread bg
I have a scheduler that submits Jobs to a k8s cluster. I'd like a Job (via a Pod running on a Node) to be able to write data to a volume, and then have another Job (via a Pod, potentially a different node) to read that data. Reading about persistent volumes (PV) and PV Claims, it isn't clear to