Re: Deploy Failure

2016-05-20 Thread Clayton Coleman
Not sure, but this does look like a networking issue On Fri, May 20, 2016 at 4:59 PM, Skarbek, John wrote: > Anyone got any tips on troubleshooting this: > > In the events log: > > Deployment Config Warning Failed update Error updating deployment > default/router-14

Deploy Failure

2016-05-20 Thread Skarbek, John
Anyone got any tips on troubleshooting this: In the events log: Deployment Config Warning Failed update Error updating deployment default/router-14 status to Pending And in the log from the deployer pod: oc logs router-14-deploy I0520 20:55:31.651525 1 deployer.go:201] Deploying

Re: CentOS OpsTools (logging, monitoring, etc.) SIG proposal

2016-05-20 Thread Rich Megginson
On 05/20/2016 11:29 AM, Jason DeTiberus wrote: On Fri, May 20, 2016 at 1:22 PM, Rich Megginson > wrote: On 05/20/2016 10:54 AM, Jason DeTiberus wrote: On Fri, May 20, 2016 at 10:40 AM, Rich Megginson

Re: Limiting scaling of a pod

2016-05-20 Thread Luis Pabón
Hi Michail and Humble, The goal is for the user/admin to be unable to scale up an application which cannot scale past one container. Michail, I'll try out what you pointed out. Thanks, - Luis - Original Message - From: "Michail Kargakis" To: "Humble Devassy

Re: CentOS OpsTools (logging, monitoring, etc.) SIG proposal

2016-05-20 Thread Jason DeTiberus
On Fri, May 20, 2016 at 1:22 PM, Rich Megginson wrote: > On 05/20/2016 10:54 AM, Jason DeTiberus wrote: > > > > On Fri, May 20, 2016 at 10:40 AM, Rich Megginson < > rmegg...@redhat.com> wrote: > >> We are trying to start up a CentOS OpsTools SIG >>

Re: CentOS OpsTools (logging, monitoring, etc.) SIG proposal

2016-05-20 Thread Rich Megginson
On 05/20/2016 10:54 AM, Jason DeTiberus wrote: On Fri, May 20, 2016 at 10:40 AM, Rich Megginson > wrote: We are trying to start up a CentOS OpsTools SIG https://wiki.centos.org/SpecialInterestGroup for logging, monitoring, etc.

Re: CentOS OpsTools (logging, monitoring, etc.) SIG proposal

2016-05-20 Thread Jason DeTiberus
On Fri, May 20, 2016 at 10:40 AM, Rich Megginson wrote: > We are trying to start up a CentOS OpsTools SIG > > https://wiki.centos.org/SpecialInterestGroup for logging, monitoring, etc. > It almost seems to me that this is

Re: Problem deploying origin on centOS 7.2 and ansible 2.0.2 ( epel 7-6 )

2016-05-20 Thread Julio Saura
so far so good!!! looks is working line a charm! thanks mate ;) > El 20 may 2016, a las 16:43, Scott Dodson escribió: > > Julio, > > We're fixing this, you can install yum-utils on all hosts as a > workaround until this is merged >

Re: Grant access for a user authenticated with an identity provider to the namespace/project default

2016-05-20 Thread Charles Moulliard
The problem is that we can't connect to openshift using system:admin when we use an identity provider oc login -u system:admin > Authentication required for https://192.168.99.100:8443 (openshift) > Username: system:admin > Password: > error: username system:admin is invalid for basic auth > I

Re: Are the identity provider token roles used ?

2016-05-20 Thread Dan Mace
Replies inline. cc’ing Jordan who can correct any inaccuracies on my part related to authentication. On Fri, May 20, 2016 at 9:19 AM, Charles Moulliard wrote: > Hi, > > I have installed and configured Openshiftv 1.3.0-alpha.0-581-gcf6465c with > Keycloak 1.9.2.Final as

Are the identity provider token roles used ?

2016-05-20 Thread Charles Moulliard
Hi, I have installed and configured Openshiftv 1.3.0-alpha.0-581-gcf6465c with Keycloak 1.9.2.Final as identity provider I can log to the openshift server with the user admin or default created within the Openshift Realm of Keycloak ./oc login https://192.168.99.100:8443 -u admin -p admin >

Re: Grant access for a user authenticated with an identity provider to the namespace/project default

2016-05-20 Thread Charles Moulliard
Is there a by default user that we could use to configure roles, ... for the users authenticated by the identity provider ? If i try to log on using this command ./oc login https://192.168.99.100:8443 -u system:admin that fails Login failed (401 Unauthorized) You must obtain an API token by

Re: Grant access for a user authenticated with an identity provider to the namespace/project default

2016-05-20 Thread Skarbek, John
Charles, You’ve created a new user in the system, and by default he’s not going to inherit any permissions. You’ll need to add a role to the user to access any projects. A command such as this should provide you admin access to the default project: oc policy add-role-to-user admin admin -n

Grant access for a user authenticated with an identity provider to the namespace/project default

2016-05-20 Thread Charles Moulliard
Hi, I have configured Openshift Origin (version 18 of May 2016) with an external identoty provider. The user (admin/admin) can be authenticated and I get an openshift token that I can use with the oc client Example : oc login https://192.168.99.100:8443

Re: Error updating deployment [deploy] status to Pending

2016-05-20 Thread Stéphane Klein
I see that in origin-node log: ``` mai 20 09:52:21 openshift-master-1.priv.tech-angels.net origin-node[1238]: E0520 09:52:21.4046571238 event.go:192] Server rejected event '{TypeMeta:unversioned.TypeMeta{Kind:"", APIVersion:""},

Re: Error updating deployment [deploy] status to Pending

2016-05-20 Thread Philippe Lafoucrière
Hi, Yes the node is ready. I have tried to unschedule it, and evacuate pods, it's not working either. I don't use any PV in the test I'm doing. The other node seems to have the same problem, so I guess it's somewhere else than the node. Maybe corrupted data in etcd? This cluster has been working

Re: Limiting scaling of a pod

2016-05-20 Thread Michail Kargakis
Luis, you can setup an horizontal pod autoscaler on top of your replication controller or deployment config with a MAX number of pods you want For HPA to work, you will need to enable cluster metrics https://docs.openshift.org/latest/install_config/cluster_metrics.html