Re: Postgres WAS Atomic Centos, can't upgrade

2016-07-19 Thread Josh Berkus
On 07/18/2016 07:07 PM, Philippe Lafoucrière wrote: > We're using postgres 9.5. > It was working fine before the upgrade. Unfortunately, we upgraded > atomic AND Openshift at the same time, so I can't tell if it's a problem > with docker 1.10 or openshift 1.2.1. > I'd tend to say Docker 1.10, but w

Re: Atomic Centos, can't upgrade

2016-07-18 Thread Philippe Lafoucrière
We're using postgres 9.5. It was working fine before the upgrade. Unfortunately, we upgraded atomic AND Openshift at the same time, so I can't tell if it's a problem with docker 1.10 or openshift 1.2.1. I'd tend to say Docker 1.10, but we need to isolate this first. Thanks, Philippe ​

Re: Atomic Centos, can't upgrade

2016-07-18 Thread Scott Dodson
Sorry, wrong thread, disregard my reply. On Mon, Jul 18, 2016 at 12:59 PM, Scott Dodson wrote: > We've worked around this change by checking for those booleans and > setting each if they exist. > https://github.com/openshift/openshift-ansible/pull/2166 > > On Mon, Jul 18, 2016 at 12:56 PM, Josh B

Re: Atomic Centos, can't upgrade

2016-07-18 Thread Josh Berkus
On 07/18/2016 09:59 AM, Scott Dodson wrote: > We've worked around this change by checking for those booleans and > setting each if they exist. > https://github.com/openshift/openshift-ansible/pull/2166 What version of Postgres is in this container? -- -- Josh Berkus Project Atomic Red Hat OSAS

Re: Atomic Centos, can't upgrade

2016-07-18 Thread Scott Dodson
We've worked around this change by checking for those booleans and setting each if they exist. https://github.com/openshift/openshift-ansible/pull/2166 On Mon, Jul 18, 2016 at 12:56 PM, Josh Berkus wrote: > On 07/15/2016 08:59 AM, Philippe Lafoucrière wrote: >> We're having a potential issue. One

Re: Atomic Centos, can't upgrade

2016-07-18 Thread Josh Berkus
On 07/15/2016 08:59 AM, Philippe Lafoucrière wrote: > We're having a potential issue. One postgresql service is not starting > on the beta cluster: > > FATAL: could not open shared memory segment "/PostgreSQL.1804289383": > Permission denied > ​ > We need to investigate that, but it could be rela

Re: Atomic Centos, can't upgrade

2016-07-15 Thread Colin Walters
On Mon, Jul 11, 2016, at 09:56 AM, Scott Dodson wrote: > That commit is mostly related to the fact that we cannot > upgrade/downgrade docker on atomic host like can on RHEL so abort the > docker upgrade playbook early. For short term fixes, it is however possible to use `atomic host deploy` to re

Re: Atomic Centos, can't upgrade

2016-07-15 Thread Philippe Lafoucrière
https://docs.openshift.org/latest/dev_guide/shared_memory.html fixed the issue, but It seems something changed regarding /dev or shm docker mounts between 1.2.0 and 1.2.1. Can someone confirm? ​ ___ users mailing list users@lists.openshift.redhat.com htt

Re: Atomic Centos, can't upgrade

2016-07-15 Thread Philippe Lafoucrière
We're having a potential issue. One postgresql service is not starting on the beta cluster: FATAL: could not open shared memory segment "/PostgreSQL.1804289383": Permission denied ​ We need to investigate that, but it could be related to docker mounts (especially /dev/shm) ___

Re: Atomic Centos, can't upgrade

2016-07-15 Thread Philippe Lafoucrière
I confirm: it's fixed :)​ thanks! ___ users mailing list users@lists.openshift.redhat.com http://lists.openshift.redhat.com/openshiftmm/listinfo/users

Re: Atomic Centos, can't upgrade

2016-07-14 Thread Scott Dodson
We pulled that into v1.2.1 along with the security update. Can you give that a try? On Thu, Jul 14, 2016 at 11:11 AM, Philippe Lafoucrière wrote: > > On Tue, Jul 12, 2016 at 5:22 PM, Scott Dodson wrote: >> >> I'll see if I can get openshift/node:v1.2.0 rebuilt with this fix but >> you can also r

Re: Atomic Centos, can't upgrade

2016-07-14 Thread Philippe Lafoucrière
On Tue, Jul 12, 2016 at 5:22 PM, Scott Dodson wrote: > I'll see if I can get openshift/node:v1.2.0 rebuilt with this fix but > you can also rebuild the node image placing the docker wrapper script > in /usr/local/bin > Any news on this? Thanks ___ user

Re: Atomic Centos, can't upgrade

2016-07-12 Thread Philippe Lafoucrière
Testing it right away. Thanks guys :) ​ ___ users mailing list users@lists.openshift.redhat.com http://lists.openshift.redhat.com/openshiftmm/listinfo/users

Re: Atomic Centos, can't upgrade

2016-07-12 Thread Scott Dodson
https://github.com/openshift/origin/pull/9046 is the real fix for this. I'll see if I can get openshift/node:v1.2.0 rebuilt with this fix but you can also rebuild the node image placing the docker wrapper script in /usr/local/bin On Tue, Jul 12, 2016 at 4:36 PM, Philippe Lafoucrière wrote: > Goo

Re: Atomic Centos, can't upgrade

2016-07-12 Thread Philippe Lafoucrière
Good catch Scott: [plafoucriere@atomic-test-node-1 origin]# docker info /usr/bin/docker-current: error while loading shared libraries: libseccomp.so.2: cannot open shared object file: No such file or directory ​ ___ users mailing list users@lists.opensh

Re: Atomic Centos, can't upgrade

2016-07-12 Thread Scott Dodson
Maybe this is another bug? Can you exec into your node container and try to run `docker info` and see what errors it yields? On Tue, Jul 12, 2016 at 2:13 PM, Philippe Lafoucrière wrote: > > On Tue, Jul 12, 2016 at 10:27 AM, Scott Dodson wrote: >> >> Lets say openshift-ansible for now. > > > ok t

Re: Atomic Centos, can't upgrade

2016-07-12 Thread Philippe Lafoucrière
On Tue, Jul 12, 2016 at 10:27 AM, Scott Dodson wrote: > Lets say openshift-ansible for now. > ok thanks > I suspect that adding `-v /etc/sysconfig/docker:/etc/sysconfig/docker` > to ExecStart in /etc/systemd/system/origin-node.service will fix this, > also verify that you've got `-v > /usr/bin

Re: Atomic Centos, can't upgrade

2016-07-12 Thread Scott Dodson
Lets say openshift-ansible for now. I suspect that adding `-v /etc/sysconfig/docker:/etc/sysconfig/docker` to ExecStart in /etc/systemd/system/origin-node.service will fix this, also verify that you've got `-v /usr/bin/docker-current:/usr/bin/docker-current` too but the current installer should ta

Re: Atomic Centos, can't upgrade

2016-07-11 Thread Philippe Lafoucrière
On Mon, Jul 11, 2016 at 9:56 AM, Scott Dodson wrote: > That commit is mostly related to the fact that we cannot > upgrade/downgrade docker on atomic host like can on RHEL so abort the > docker upgrade playbook early. > Ok, I get it now, thanks. Anyway, we couldn't fix our beta cluster, and had

Re: Atomic Centos, can't upgrade

2016-07-11 Thread Scott Dodson
That commit is mostly related to the fact that we cannot upgrade/downgrade docker on atomic host like can on RHEL so abort the docker upgrade playbook early. On Sun, Jul 10, 2016 at 2:45 PM, Philippe Lafoucrière wrote: > Sounds like docker 1.10 is a bad idea, I found this commit: > > https://gith

Re: Atomic Centos, can't upgrade

2016-07-10 Thread Philippe Lafoucrière
Sounds like docker 1.10 is a bad idea, I found this commit: https://github.com/openshift/openshift-ansible/commit/b377f9d85df11c532281c213eda1869596642204 I was probably running openshift-ansible with a wrong tag :( ​ ___ users mailing list users@lists.

Re: Atomic Centos, can't upgrade

2016-07-09 Thread Philippe Lafoucrière
We have updated our beta cluster to latest atomic centos: -bash-4.2# atomic host status TIMESTAMP (UTC) VERSIONID OSNAME REFSPEC * 2016-07-07 21:23:41 7.20160707 cd47a72eb5 centos-atomic-host centos-atomic-host:centos-atomic-host/7/x86_64/standard

Re: Atomic Centos, can't upgrade

2016-06-17 Thread Philippe Lafoucrière
Thanks Tobias for the detailed help! I should have thought of running again ansible, I was focused on the error. ​ ___ users mailing list users@lists.openshift.redhat.com http://lists.openshift.redhat.com/openshiftmm/listinfo/users

Re: Atomic Centos, can't upgrade

2016-06-17 Thread Tobias Florek
Hi, that's a known problem with known fix, but maybe some publicity around it might be good. > We have tried to update our atomic host centos 7, with the > tree 3c3786d1dd (from the tree e39c28570a), but deployments are all > failing after the updates on the nodes: > > Error syncing pod, skippi

Atomic Centos, can't upgrade

2016-06-17 Thread Philippe Lafoucrière
Hi, We have tried to update our atomic host centos 7, with the tree 3c3786d1dd (from the tree e39c28570a), but deployments are all failing after the updates on the nodes: Error syncing pod, skipping: failed to "SetupNetwork" for "some_deploy" with SetupNetworkError: "Failed to setup network for p