Re: [kubernetes-users] adding docker run --log-opt arguments to deployments

2017-06-27 Thread Rodrigo Campos
IIUC, you are trying to give args to the docker daemon when running this, rather than args to your container image. Is this correct? If that is the case, that will never work. Command and args are like used in Dockerfile (or docker cli, you can overwrite them there too). But are options given to t

Re: [kubernetes-users] User rights with Kubectl

2017-06-27 Thread Rodrigo Campos
I think the "runAsUser" will do the trick: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ Does that do what you need? :) On Mon, Jun 26, 2017 at 11:38 PM, Carlos Lijeron wrote: > Everyone, > > > > I’m setting up an environment for Bioinformatics Analysis. Here is the

[kubernetes-users] adding docker run --log-opt arguments to deployments

2017-06-27 Thread baldey
Hi all We are trying to add docker logging options to our kubernetes deployments for log rolling e.g --log-opt max-size=10m For example if we ran something like this directly using docker docker run -it --log-opt max-size=10m --log-opt max-file=2 image-name We can use docker inspect to see tho

[kubernetes-users] GKE Kubernetes control plane unable to talk to service

2017-06-27 Thread harsh
I deployed GKE 1.6.6 and ran a Service with a Cluster IP (in the kube-system namespace). The hosted Kubernetes controller manager on GKE is unable to reach our service over the cluster IP. All minions on GKE can reach the service but the hosted controller manager cannot. This behavior is diffe

[kubernetes-users] Re: TPR to CRD blog post

2017-06-27 Thread
Nice post Eric! On Tue, Jun 27, 2017 at 5:31 AM, wrote: > Nicely written, +1! > > Den tisdag 27 juni 2017 kl. 00:05:59 UTC+3 skrev Eric Chiang: >> >> I've been testing out CustomResourceDefinitions for CoreOS and our >> users over the last couple weeks. That work turned into a blog post to >> co

[kubernetes-users] Kubernetes and Oracle Linux

2017-06-27 Thread walter . heestermans
Can somebody give me a starting point to get Kubernetes installed on oracle -Linux platform, some documentation of the steps. Walter -- You received this message because you are subscribed to the Google Groups "Kubernetes user discussion and Q&A" group. To unsubscribe from this group and stop

[kubernetes-users] Re: UnauthorizedOperation: You are not authorized to perform this operation

2017-06-27 Thread Norman Khine
ok i needed the extra permissions: "ec2:AuthorizeSecurityGroupIngress", "ec2:AuthorizeSecurityGroupEgress", "ec2:DeleteSecurityGroup", "ec2:RevokeSecurityGroupEgress", "ec2:RevokeSecurityGroupIngress", On Monday, June 26, 2017 at 8:28:31 PM UTC+1, Norman Kh

[kubernetes-users] Re: TPR to CRD blog post

2017-06-27 Thread lucas
Nicely written, +1! Den tisdag 27 juni 2017 kl. 00:05:59 UTC+3 skrev Eric Chiang: > > I've been testing out CustomResourceDefinitions for CoreOS and our > users over the last couple weeks. That work turned into a blog post to > communicate the TPR deprecation to the wider community. > > https:/

Re: [kubernetes-users] monitor specific docker containers with cadvisor

2017-06-27 Thread wangpeng007
I will have a look at this~ Really thank you for your help! On Tuesday, June 27, 2017 at 5:37:03 PM UTC+8, Matthias Rampke wrote: > > The detailed documentation is at > > https://prometheus.io/docs/operating/configuration/# > > > Something like > > metric_relabel_configs: > - action: keep > - sou

Re: [kubernetes-users] monitor specific docker containers with cadvisor

2017-06-27 Thread Matthias Rampke
The detailed documentation is at https://prometheus.io/docs/operating/configuration/# Something like metric_relabel_configs: - action: keep - source_labels: [ "container_name" ] - regex: redis should do. Adapt as needed. /MR On Mon, Jun 26, 2017 at 9:42 AM wangpeng007 wrote: > Thanks for y