Monday, 2017-10-16

openstackgerritDavid Moreau Simard proposed openstack/openstack-ansible master: Do not merge: retrieve ara database  https://review.openstack.org/51211500:10
*** acormier has joined #openstack-ansible00:20
*** yifei has joined #openstack-ansible00:21
openstackgerritLogan V proposed openstack/openstack-ansible master: Updated repo cloner for zuulv3  https://review.openstack.org/50850900:45
*** hw_wutianwei has joined #openstack-ansible00:50
dmsimardlogan-: you there ?00:53
logan-yessir00:53
dmsimardlogan-: I couldn't find any v3 work for OSA and noticed failures, thanks for shooting down my patch :)00:55
logan-haha no worries, appreciate the ping-- it made me notice I needed to rebase mine! :)00:56
hw_wutianweilogan-: hi, I failed to deploy openstack using openstack-ansible at gnocchi. here is the log00:58
hw_wutianweilogan-: http://paste.openstack.org/show/623666/00:58
hw_wutianweicould you help me?00:58
*** acormier has quit IRC00:58
logan-hw_wutianwei: not very well... I have not used gnocchi. but it looks like that numpy package is not present in the venv maybe?01:03
*** huxinhui__ has joined #openstack-ansible01:08
*** huxinhui__ is now known as huxinhui01:08
hw_wutianweilogan-:  do you know who can solve this issue?01:09
*** thorst has quit IRC01:09
logan-hw_wutianwei: dont think very many operators are running metering services with OSA deploys so those services are not maintained as well as many of the other roles. you could open a bug with more information and we'll see if someone picks it up, but if you plan to run the metering services i think you'll need to plan to handle a fair amount of the debugging on your own and assist in maintaining them if stability is a requirement01:13
logan-if you open a bug, i think 'pip freeze' output from the gnocchi venv, a copy of /var/www/repo/os-releases/<osa tag>/requirements_absolute_requirements.txt from a repo container, and info about the specific os tag/commit you're running would be helpful info to include with the bug01:15
*** gkadam_ has quit IRC01:35
*** galstrom_zzz is now known as galstrom01:52
*** idlemind has joined #openstack-ansible02:03
*** galstrom is now known as galstrom_zzz02:09
openstackgerritDavid Moreau Simard proposed openstack/openstack-ansible master: Do not merge: retrieve ara database  https://review.openstack.org/51211502:15
openstackgerritDavid Moreau Simard proposed openstack/openstack-ansible master: Do not merge: retrieve ara database  https://review.openstack.org/51211502:15
dmsimardlogan-: hmm, I guess with zuul v3, we'll end up generating an ara report twice ?02:16
logan-not sure. i think they were chnaging things around to only generate reports if the job fails?02:17
dmsimardlogan-: yeah, there's a difference because the zuul executor runs ansible against the nodes and I guess you run ansible from one of those nodes02:18
logan-oh, yeah i guess whatever ara report zuul generates would be separate from the osa ara report02:18
dmsimardlogan-: at least as far as legacy jobs are concerned, from the perspective of the executor, your ansible playbook is just one *large* command task02:18
logan-right02:18
dmsimardlogan-: It'll be interesting to see how we can improve that *but* I just want to test with one of your databases ( https://review.openstack.org/#/c/512115/ ) I have a very promising patch to allow the ara web app to load a sqlite database on the fly from logs.o.o02:19
dmsimardSo instead of generating and saving potentially thousands of files, you'll save just this one tiny sqlite database instead and it'll just work02:19
dmsimardara reports are not large in size, there's just a lot of files02:20
logan-coolness02:22
logan-that would be nice02:22
logan-so you could basically feed an sqlite url to an ara webapp and it would download the db and generate the report on the fly?02:23
dmsimardlogan-: a bit more complicated than that, let me put up the WIP patch, hang on02:23
dmsimardlogan-: https://review.openstack.org/51199202:24
dmsimardlogan-: the use case is fairly narrow, but basically you install ara on the logserver and then match logs.domain.tld/some/path/job/logs/ara/* to the ara web app, pointing the web application to the database on disk02:25
*** masber has quit IRC02:26
logan-gotcha02:26
*** gouthamr has quit IRC02:27
dmsimardIt'd work perfectly and be like 99% more lightweight for logs.o.o with which we've been having some hard time recently :)02:28
logan-yeah that should help a lot02:28
dmsimardI'll use your database of a job report as a benchmark :D02:29
dmsimardI don't have any playbooks that run that many tasks running things locally lol02:29
logan-i have to use some crazy threaded log uploader to my s3 for ara static reports on osa 3rd party ci runs because it is so many files, thats why i asked about having the webapp download the sqlite (since I won't be able to have the webapp local-source the sqlite easily) :)02:29
logan-yeah02:29
logan-osa should serve as a nice load test :)02:30
logan-so looking briefly at your patch I guess it generates the report into a temp dir and then you'd just run a cleanup job to periodically cleanup old reports from some temp dir? or does the webapp handle that automatically?02:30
*** dave-mccowan has quit IRC02:35
*** adreznec has quit IRC02:37
*** adreznec has joined #openstack-ansible02:39
dmsimardlogan-: it doesn't generate anything02:43
*** esberglu has quit IRC02:43
dmsimardIt just reads from the database directly02:43
dmsimardStatic generation is just something that fires the webapp, crawls every page and creates a static html file for it02:44
dmsimardThe web app in itself is dynamic and reads from a database02:45
dmsimardThe directories that are specified in the wsgi middleware is just directories that are expected to be there by Ansible and ARA, they're not really used for anything in this context02:45
dmsimardTo load the database *live* over http is a bit more challenging, you'd need to actually download the file on the fly because there's nothing in sqlalchemy/sqlite that allows you to do that, it expects the file to be on the local filesystem02:48
dmsimardIf you're using s3 or swift, there are tools you can use, like s3ql, that allows you to mount a container/bucket as a filesystem.. so you could probably do that02:48
dmsimards3ql is pretty good too. Not for random writes, but for reads it should be fast enough.02:49
*** acormier has joined #openstack-ansible02:58
*** udesale has joined #openstack-ansible03:00
*** mrhillsman has quit IRC03:00
*** mrhillsman has joined #openstack-ansible03:01
*** acormier has quit IRC03:03
*** gkadam_ has joined #openstack-ansible03:10
*** thorst has joined #openstack-ansible03:10
*** gkadam_ has quit IRC03:10
*** gkadam has joined #openstack-ansible03:10
*** thorst has quit IRC03:15
*** masber has joined #openstack-ansible03:20
*** vnogin has joined #openstack-ansible03:24
*** esberglu has joined #openstack-ansible03:26
openstackgerritLogan V proposed openstack/openstack-ansible master: [WIP] Implement iptables management  https://review.openstack.org/51209903:28
*** vnogin has quit IRC03:28
*** esberglu has quit IRC03:30
*** udesale has quit IRC03:46
*** udesale has joined #openstack-ansible03:59
*** udesale has quit IRC04:00
*** udesale has joined #openstack-ansible04:00
*** drifterza has quit IRC04:15
*** Dinesh_Bhor has joined #openstack-ansible04:42
openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible-ops master: Tune-up the MNAIO for physical and virtual hosts  https://review.openstack.org/51198504:44
*** armaan has joined #openstack-ansible04:50
*** markvoelker has quit IRC04:58
*** markvoelker has joined #openstack-ansible04:58
*** armaan has quit IRC05:05
*** snowman4839 has quit IRC05:05
*** snowman48391 has joined #openstack-ansible05:05
*** snowman48391 has quit IRC05:09
*** snowman4839 has joined #openstack-ansible05:09
*** korean101 has joined #openstack-ansible05:11
*** thorst has joined #openstack-ansible05:12
*** taseer3 has joined #openstack-ansible05:16
*** thorst has quit IRC05:16
*** taseer2 has quit IRC05:17
*** taseer4 has joined #openstack-ansible05:17
*** taseer3 has quit IRC05:21
*** jvidal has joined #openstack-ansible05:37
korean101hi guys05:41
korean101anyone knows this ERROR? (http://paste.openstack.org/show/623668/)05:41
*** taseer4 is now known as Taseer05:42
korean101why this lines wrong? (https://github.com/openstack/kolla-ansible/blob/stable/pike/ansible/roles/nova/tasks/precheck.yml#L19)05:42
openstackgerritKevin Carter (cloudnull) proposed openstack/openstack-ansible-ops master: Tune-up the MNAIO for physical and virtual hosts  https://review.openstack.org/51198505:42
cloudnullkorean101: you might want to check with the folks in the #openstack-kolla channel05:45
korean101cloudnull: thanks!!05:46
cloudnullit looks like they're just waiting on a free port05:46
*** markvoelker has quit IRC05:46
cloudnullthe error is here: if inventory_hostname in groups[nova_api.group]05:46
cloudnullwhich makes me believe the inventory is missing the nova_api group05:47
*** armaan has joined #openstack-ansible05:47
cloudnullthat said, the kolla folks should be able to get your sorted.05:47
cloudnullfor future, this channel is specifically for the "openstack-ansible" project.05:48
evrardjpgood morning05:56
evrardjp"good"05:56
*** drifterza has joined #openstack-ansible06:08
SamYapleevrardjp: zuulv3 is here. it is a great morning!06:10
evrardjpyes I agree. It just broke a few of our jobs, but we should be ready soon06:10
evrardjpYou're still up I see? :)06:11
*** Oku_OS-away is now known as Oku_OS06:11
evrardjpgood morning Oku_OS06:13
SamYapleevrardjp: for the time being :)06:14
evrardjpwhat's up on your side of the planet?06:15
SamYaplenot the sun06:15
evrardjpI expected a dadjoke.06:15
SamYapleim trying to get my post-job secrets push-to-dockerhub thing working06:15
SamYaplei dont think secrets are available in post-run06:16
evrardjpOn what are you running this?06:17
evrardjpis it in openstack-infra's zuul v3 ? or is it your own jenkins?06:17
evrardjpI am clueless about what you're talking about :p06:17
SamYaplezuulv306:18
SamYapleopenstakc/loci06:18
evrardjpshouldn't this be an empty file that's loaded with an env var and pushed during post-merge ?06:21
evrardjp(talking about .zuul.yaml secrets I guess)06:21
evrardjpSamYaple: do you plan to build other images, like infra images? (rabbit?)06:22
*** AndyWojo has quit IRC06:24
SamYapleevrardjp: its being discussed06:24
*** berendt has quit IRC06:24
*** serverascode has quit IRC06:24
*** vnogin has joined #openstack-ansible06:24
SamYapleit wasnt in the original plan... but we are still evolving the scope before we go stable06:24
*** zul has quit IRC06:24
*** rackertom has quit IRC06:24
*** hogepodge has quit IRC06:24
SamYapleim not sure about the empty file bit, what do you mean?06:25
*** AndyWojo has joined #openstack-ansible06:26
*** rackertom has joined #openstack-ansible06:26
*** berendt has joined #openstack-ansible06:26
*** hogepodge has joined #openstack-ansible06:26
*** bauruine has quit IRC06:26
*** serverascode has joined #openstack-ansible06:27
*** exodusftw has quit IRC06:27
SamYaplealso, ive meant to ask. does OSA have any plans to use containerd?06:27
*** openstackgerrit has quit IRC06:28
*** Jeffrey4l has quit IRC06:28
*** vnogin has quit IRC06:28
*** exodusftw has joined #openstack-ansible06:29
*** Jeffrey4l has joined #openstack-ansible06:29
evrardjpwe don't have a goal for it, but if it means an easier infra I think that would be reachable06:31
evrardjpTo be honest, we have no plans to use containerd for the openstack bits for now06:32
*** bauruine has joined #openstack-ansible06:32
evrardjpbut I am not the only one here, and patch can happen06:32
evrardjpI am, myself, not against, as long as its properly tested and we define the correct expectations. I just think we have far more other fires to extinguish :)06:33
evrardjpmoving to ansible2.4 is one06:33
evrardjpsimplifying inventory...06:33
SamYaplewas just curious. im hoping to migrate away from Docker for runing things in general. containerd is a bit more like the "docker" ive always wanted06:33
evrardjpwell we will we closer to rkt06:34
evrardjpbe closer*06:34
evrardjpwhen systemd nspawn will be introduced06:34
evrardjpbut I haven't digged into containerd as standalone06:34
SamYapleyea big fan of rkt was well06:34
SamYapleit idnt quiet evole exactly like i was hoping but its on my radar06:35
evrardjpOh when you're here, you changed something on the ceph bits for some branches, was it ocata?06:35
SamYapleyes06:35
evrardjpOh great. I have to check that06:35
SamYaplepatch is still waiting review06:35
evrardjpI see leseb hasn't updated all his roles06:35
evrardjpgreat I will find it06:35
SamYaplehttps://review.openstack.org/#/c/511755/06:35
evrardjpyes I have it06:36
evrardjpmy vote isn't relevant anymore06:36
evrardjpI will include this in my bump patch if you don't mind06:36
evrardjpI will mark you as co-author06:36
SamYaplenot worried about co-authorship, but thanks for thinking of me06:37
SamYaplei was just trying to help out06:37
evrardjpdo you know why we are fixing sha for https://github.com/ceph/ansible-ceph-docker-common ?06:37
evrardjpthanks it helps :)06:37
SamYaplenot a clue sorry06:37
evrardjpok I will ask logan-06:37
evrardjpbecause that's also the same branch06:37
*** mbuil has joined #openstack-ansible06:37
evrardjpand 2.2.12 wasn't tagged there06:37
evrardjp:(06:37
evrardjpthat's why I didn't bump it06:38
SamYapleim sure leseb will tag it there if the tags are supposed to be in sync06:38
evrardjpI will do you like you did06:38
*** esberglu has joined #openstack-ansible06:38
evrardjpyeah06:38
evrardjpI will just ask him a little later today06:38
SamYapleyup :)06:38
SamYaplelooks like nothing has changed on that repo since 2.2.1106:38
evrardjptoo early for Paris ppl :)06:38
evrardjpyeah but we still pinned a sha instead of a version, which makes me wonder06:39
SamYapleim 99% he is up right now06:39
SamYapleits like 8 or 9am there06:39
evrardjpthere is like 6 patches diff06:39
evrardjp8:40 am06:39
evrardjpbut Paris ppl tend to start later :D06:40
evrardjpat least to my knowledge06:40
SamYaplehaha ok06:40
SamYaplewell i asked him around this time last time for what its worth06:40
SamYaplehopefully i didnt wake him up06:40
evrardjphaha06:40
evrardjpmaybe he is not in Paris too :)06:40
evrardjp"leseb is away: Auto away " :D06:41
evrardjplet's see!06:41
evrardjpwhy containerd then?06:41
evrardjpenlighten me :)06:41
SamYapleoh im not saying containerd *over* somethign else. but containerd is what i would call close to dockers original vision, the vision they went away from (and the vision that spawned rkt)06:43
SamYapleits just super stripped down. no volumes/network/spawn stuff06:43
*** esberglu has quit IRC06:43
SamYapleinfact, docker uses containerd for all the lowered level stuff now06:43
*** openstackgerrit has joined #openstack-ansible06:43
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible stable/ocata: Update all SHAs for 15.1.11  https://review.openstack.org/51204806:43
evrardjpFYI I've abandoned your patchset, and updated this ^ with your changes.06:44
SamYaple+106:45
evrardjpI like the fact to have stripped down containers, doing one thing, doing it well.06:45
evrardjpElse why doing app containers at all?06:46
evrardjpWhen you think about it, systemd-nspawn has almost all the wiring, if not everything06:46
evrardjpassuming you're running a systemd host :p06:46
SamYaplewhich is pretty reasonable these days06:47
SamYaplefor better or worse06:47
evrardjp:)06:47
evrardjpI will not start this conversation in the morning. Only in the evening with some kind of alcohol in hands.06:48
evrardjpredoing the world06:48
SamYaplehaha06:49
SamYaplei mean the guy that wrote pulse audio should definetely be writing the end-all-be-all init system06:49
*** vnogin has joined #openstack-ansible06:52
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_neutron master: Update upgrade role for Queens from P  https://review.openstack.org/51181606:59
evrardjphaha07:00
*** vnogin has quit IRC07:00
*** markvoelker has joined #openstack-ansible07:02
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_nova master: Update paste, policy and rootwrap configurations 2017-10-14  https://review.openstack.org/51204407:10
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_nova master: Update paste, policy and rootwrap configurations 2017-10-14  https://review.openstack.org/51204407:10
*** markvoelker has quit IRC07:18
*** shardy has joined #openstack-ansible07:18
*** flaviosr has joined #openstack-ansible07:19
*** markvoelker has joined #openstack-ansible07:20
*** markvoelker has quit IRC07:20
*** markvoelker has joined #openstack-ansible07:20
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_nova master: Update paste, policy and rootwrap configurations 2017-10-14  https://review.openstack.org/51204407:21
*** pbandark has joined #openstack-ansible07:22
evrardjpI will work on tests now07:41
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-tests master: [WIP] Implement Zuul v3 aware git cloning  https://review.openstack.org/51220207:56
*** drifterza has quit IRC08:02
*** drifterza1 has joined #openstack-ansible08:02
*** armaan has quit IRC08:08
*** armaan has joined #openstack-ansible08:08
*** zul has joined #openstack-ansible08:22
*** esberglu has joined #openstack-ansible08:26
*** armaan has quit IRC08:28
*** armaan has joined #openstack-ansible08:28
*** esberglu has quit IRC08:30
*** markvoelker has quit IRC08:31
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-tests master: [WIP] Implement Zuul v3 aware git cloning  https://review.openstack.org/51220208:35
*** markvoelker has joined #openstack-ansible08:45
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/pike: Run ARA only if enabled  https://review.openstack.org/51221608:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/pike: Only build ARA report when test fails  https://review.openstack.org/51221708:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/pike: Run ARA only if enabled  https://review.openstack.org/51221608:49
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/pike: Only build ARA report when test fails  https://review.openstack.org/51221708:49
*** drifterza1 has quit IRC08:52
*** drifterza has joined #openstack-ansible08:58
odyssey4meo/09:00
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-tests master: [WIP] Implement Zuul v3 aware git cloning  https://review.openstack.org/51220209:02
odyssey4meevrardjp now that zuul v3 is implemented, I'll finalise the patch for the roles to work09:02
odyssey4mehopefully we can get that completed today09:03
evrardjpoh you had a patch? I didn't see it .09:03
evrardjpIn tests?09:03
odyssey4meyeah https://review.openstack.org/#/c/511912/09:03
evrardjpoh yeah the v2 v309:03
odyssey4meit's failing because our currentlu tests-clone thing can't work any more, but I'll fix that now09:03
evrardjpcheck at this:09:04
evrardjphttps://review.openstack.org/#/c/512202/09:04
evrardjptaking your experience for v3 quick fixing09:04
evrardjpthere is no need to hurry09:04
evrardjpwhen I will get this to merge, we can do better things with v3, as we discussed09:05
evrardjplike the v2 v3 or better v309:05
odyssey4meI'm confused - why're you re-implementing the same thing?09:05
evrardjpto keep your patch up09:05
evrardjpit's in the commit message09:06
evrardjpbut I can drop it if you prefer09:06
odyssey4meok, I'm just being confused by it no09:06
odyssey4me*now09:06
odyssey4melet me just get on with this patch - it's close to ready09:06
evrardjpwith yours?09:07
evrardjpthe v2/v3 ?09:07
odyssey4meyes09:07
evrardjpok if it's ready ok09:07
evrardjpgo ahead09:07
evrardjpI had to advance, and I didn't want to deface your patch for something that was a dumb down version of yours.09:10
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191209:15
evrardjpodyssey4me: for Zuul v3 checking we need to check log path09:20
*** esberglu has joined #openstack-ansible09:20
evrardjpsee: http://lists.openstack.org/pipermail/openstack-dev/2017-October/123049.html09:20
*** esberglu has quit IRC09:20
*** esberglu has joined #openstack-ansible09:20
*** esberglu has quit IRC09:21
*** askb has quit IRC09:21
odyssey4me@evrardjp yes, and that log path does not work09:22
odyssey4meI tried that in an earlier patch set09:22
odyssey4meit's supposed to be used for zuul v2, but it is not09:22
ArchiFleKsHi guys, regarding https://review.openstack.org/#/c/507862/ I need to add some command to enable some services after nova install packages in os_nova role, what would be the best approach to do that, in term or task / where do I put it / naming / best practice ?09:23
evrardjpArchiFleKs: what is "some services" ?09:23
evrardjpdoes that deserve upstreaming?09:23
ArchiFleKsevrardjp: depending on the distribution it is ensuring that `ksm.service` and `ksmtuned.service` are enable on the compute node when KSM is enable, I think it is good to offer the choice, it is feature that can be useful for anyone I guess09:24
evrardjpthat's definitely a new feature we can add for anyone09:28
ArchiFleKsi just don't know it term of directory structure, as the task make sense only on the compute node and only when compute type is KVM or QEMU, si I guess it could be included in the task inside the drivers directory09:30
evrardjpI am not sure if there is any precedent. I am looking at nova role. I'd say make it an optional feature, like SELinux is09:30
evrardjpyes that is fine09:31
evrardjpmaybe there: https://github.com/openstack/openstack-ansible-os_nova/blob/master/tasks/drivers/kvm/nova_compute_kvm.yml#L116-L12009:31
evrardjpas an include09:31
evrardjpthat can be conditional based on when ksm is enabled09:32
evrardjpArchiFleKs: please add a release note too :)09:34
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191209:35
*** hw_wutianwei has quit IRC09:39
*** askb has joined #openstack-ansible09:45
ArchiFleKsevrardjp: ok thanks :)09:45
openstackgerritDuong Ha-Quang proposed openstack/openstack-ansible master: Move legacy jobs to project  https://review.openstack.org/51224309:48
openstackgerritDuong Ha-Quang proposed openstack/openstack-ansible master: Move legacy jobs to project  https://review.openstack.org/51224309:52
*** esberglu has joined #openstack-ansible10:14
*** jafeha has joined #openstack-ansible10:16
jafehahello everybody10:16
*** yifei has quit IRC10:18
*** esberglu has quit IRC10:18
*** openstackgerrit has quit IRC10:33
*** stuartgr has joined #openstack-ansible10:36
*** armaan has quit IRC10:43
*** armaan has joined #openstack-ansible10:44
evrardjphello10:47
*** cshen has joined #openstack-ansible10:51
*** jafeha has quit IRC10:51
*** udesale has quit IRC10:54
*** udesale has joined #openstack-ansible10:54
*** jafeha has joined #openstack-ansible10:58
*** udesale has quit IRC11:07
*** rodolof has joined #openstack-ansible11:07
*** dave-mccowan has joined #openstack-ansible11:09
*** openstackgerrit has joined #openstack-ansible11:10
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191211:10
*** vnogin has joined #openstack-ansible11:11
*** armaan has quit IRC11:11
*** armaan has joined #openstack-ansible11:11
*** armaan has quit IRC11:12
*** armaan has joined #openstack-ansible11:13
*** smatzek has joined #openstack-ansible11:14
*** mrch has joined #openstack-ansible11:15
*** vnogin has quit IRC11:15
*** masber has quit IRC11:16
*** rodolof has quit IRC11:17
*** rodolof has joined #openstack-ansible11:18
evrardjpodyssey4me: on your last patchset ANSIBLE_OVERRIDES: /home/zuul/workspace/tests/-overrides.yml is probably a problem11:20
evrardjpand there is probably a jinja issue too11:20
*** shardy is now known as shardy_lunch11:20
evrardjpI will fix the jinja11:21
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191211:23
*** vnogin has joined #openstack-ansible11:31
*** drifterza has quit IRC11:32
*** tasker has quit IRC11:39
*** tasker has joined #openstack-ansible11:40
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191211:41
odyssey4meevrardjp dude, what're you doing?11:41
evrardjpI contacted you, you didn't reply.11:42
odyssey4methere's no need for the ZUUL_REF bit, because we show all ZUUL_ vars elsewhere11:42
evrardjpTrying to advance?11:42
evrardjpwell, why do we enter the loop then?11:42
odyssey4meI'm working on it - just also between other things. If you see something that needs fixing, just add a review comment.11:42
odyssey4meI'm now having to rebase based on your changes and have other changes mixed in, so it's causing problems.11:43
evrardjpWell you said in the past for urgent matters I can edit your patchset, decide:p11:43
evrardjpwell how can I know?11:43
odyssey4meyes you can, when I'm not actively working on the same patch11:43
evrardjpas far as I know you weren't working on it :p11:43
odyssey4meI told you that I'm working on it today, that's how.11:43
evrardjpok.11:43
evrardjpI leave you to it.11:43
odyssey4meif the patch is dormant for days then fine, but I've made updates today11:44
evrardjpthis is urgent matter. For me it's prio 1. Try to get in my shoes too. I want things to go as fast as possible.11:44
*** dasTor has quit IRC11:45
evrardjpignore my changes11:45
odyssey4meand your editing the patch I'm working on is not helping that happen11:45
evrardjpdon't rebase or anything11:45
*** dasTor has joined #openstack-ansible11:45
evrardjpgo ahead and continue your work11:45
evrardjpso I was right in the first place to have another patch like I did earlier today, and you were wondering what I was doing... You are sending mixed signals bro :p11:46
evrardjpanyway11:46
odyssey4metwo people working on the same thing at the same time is a waste of resources11:46
*** udesale has joined #openstack-ansible11:48
*** udesale has quit IRC11:51
*** drifterza has joined #openstack-ansible11:51
*** drifterza has quit IRC11:53
*** thorst has joined #openstack-ansible11:54
*** thorst has quit IRC11:54
evrardjpI agree. That's why I am not working on it anymore now that I know you're working on it. Thanks for the work !11:56
*** thorst has joined #openstack-ansible11:56
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191211:56
*** huxinhui has quit IRC11:57
*** drifterza has joined #openstack-ansible12:00
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191212:08
logan-Ceph12:13
logan-ceph-docker-common is a noop it shouldn’t need a tag bump at all12:14
*** vnogin has quit IRC12:14
logan-We only pull it in because it is a meta dependency but it just skips12:14
*** vnogin has joined #openstack-ansible12:15
*** vnogin has quit IRC12:18
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191212:18
evrardjplogan-: ok.12:19
evrardjpthat's what I did.12:19
openstackgerritLogan V proposed openstack/openstack-ansible stable/ocata: Disable ceph-ansible NFS gateway by default  https://review.openstack.org/51227512:21
evrardjplogan-: it's already included in the bump12:22
evrardjpbut indeed I don't see a problem to add it12:22
evrardjpI mean the fix for the big ppa issue is included in the bump12:23
*** dave-mccowan has quit IRC12:23
evrardjpwell you'll see :)12:23
*** shardy_lunch is now known as shardy12:25
openstackgerritKevin Lefevre proposed openstack/openstack-ansible-os_nova master: Enable KSM support for Nova  https://review.openstack.org/50786212:37
*** esberglu has joined #openstack-ansible12:38
*** gkadam has quit IRC12:38
*** drifterza has quit IRC12:43
evrardjpthanks ArchiFleKs!12:44
*** dave-mccowan has joined #openstack-ansible12:45
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191212:46
*** vnogin has joined #openstack-ansible12:53
*** armaan has quit IRC12:54
*** armaan has joined #openstack-ansible12:55
*** woodard has joined #openstack-ansible12:55
mhaydenmorning12:58
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191212:59
*** acormier has joined #openstack-ansible13:00
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_nova master: Update paste, policy and rootwrap configurations 2017-10-14  https://review.openstack.org/51204413:00
*** vnogin has quit IRC13:02
*** acormier has quit IRC13:04
*** drifterza has joined #openstack-ansible13:04
openstackgerritKevin Lefevre proposed openstack/openstack-ansible-os_nova master: Enable KSM support for Nova  https://review.openstack.org/50786213:04
openstackgerritJean-Philippe Evrard proposed openstack/ansible-hardening master: Fix logic error  https://review.openstack.org/51228913:06
*** dave-mccowan has quit IRC13:06
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191213:12
mgariepymorning everyone13:15
*** dave-mccowan has joined #openstack-ansible13:16
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_neutron master: Allow dnsmasq configuration to be overriden  https://review.openstack.org/51229313:18
*** armaan has quit IRC13:19
*** armaan has joined #openstack-ansible13:20
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_neutron master: Allow dnsmasq configuration to be overriden  https://review.openstack.org/51229313:23
*** smatzek has quit IRC13:23
evrardjpmorning mgariepy13:36
*** lbragstad has joined #openstack-ansible13:37
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191213:41
*** snowman48391 has joined #openstack-ansible13:43
*** ivveh- has joined #openstack-ansible13:45
mgariepylogan-, did you upgrade to Ocata yet ?13:45
*** ryade has quit IRC13:45
*** Aju has joined #openstack-ansible13:46
*** mrtenio has joined #openstack-ansible13:47
*** snowman4839 has quit IRC13:48
*** ivveh has quit IRC13:48
*** afranc has quit IRC13:48
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191213:48
*** bjolo has joined #openstack-ansible13:49
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible master: Do not source openstack-ansible.rc when pulling roles  https://review.openstack.org/51230313:49
logan-mgariepy: just got finished upgrading my dev cluster last week. planning to do the rollout to prod in a couple weeks13:49
mgariepynice.13:51
mgariepyeverything went well ?13:51
mgariepyupgraded my prod cluster to Xenial/Newton last week.13:51
*** drifterza has quit IRC13:54
*** gouthamr has joined #openstack-ansible13:54
*** tasker has quit IRC13:57
*** tasker has joined #openstack-ansible13:59
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191214:00
*** SerenaFeng has joined #openstack-ansible14:01
*** kylek3h has quit IRC14:03
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-haproxy_server master: Clarify keepalived overrides  https://review.openstack.org/51230714:04
*** bjolo has quit IRC14:08
logan-yeah ocata went pretty smooth, no major hiccups really. the nova qemu package thing was the only big snag but the latest tag will fix that14:11
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-haproxy_server master: Clarify keepalived overrides  https://review.openstack.org/51230714:12
*** masber has joined #openstack-ansible14:12
*** masber has quit IRC14:17
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231014:18
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191214:19
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231014:20
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231014:21
mhaydenoh wow i need more coffee14:22
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231014:23
openstackgerritkourosh vivan proposed openstack/openstack-ansible-os_gnocchi master: Change default gnocchi ceph pool name to metrics  https://review.openstack.org/51231314:25
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191214:26
*** woodard has quit IRC14:26
*** galstrom_zzz is now known as galstrom14:27
*** bjolo has joined #openstack-ansible14:27
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231014:30
odyssey4meevrardjp it took a little while to click what was going on in that issues you were looking into, but I got it eventually -I think https://review.openstack.org/511912 is ready for review now, it's busy doing tests to verify14:33
*** jwitko has joined #openstack-ansible14:35
*** jvidal has quit IRC14:35
evrardjpwe have to fix the tests too, to make sure jobs properly vote, as you could have seen. But that's a different topic14:36
evrardjpI will review14:38
*** andressanchez has quit IRC14:40
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231014:44
*** esberglu has quit IRC14:46
odyssey4meevrardjp yes, that's another matter which I'll look into now14:50
evrardjpoh great14:50
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231014:54
openstackgerritMajor Hayden proposed openstack/openstack-ansible master: Avoid using gather_facts as a variable  https://review.openstack.org/51096914:59
evrardjpmhayden: ^ love it!15:00
mhaydenevrardjp: hah which?15:00
evrardjpnot naming things with ansible naming conventions15:00
mhaydenah, okay15:00
mhaydenyeah, i kept seeing that warning and figured i'd try to fix it15:00
mhaydenor at least not make it worse :P15:00
evrardjphaha15:01
mhaydenso i assume someone is trying to get ansible-hardening into 'required-projects' for zuulv3?15:04
mhaydeni saw the OSA gate errors15:04
*** hw_wutianwei has joined #openstack-ansible15:04
logan-trying to get https://review.openstack.org/#/c/508509/ to not time out15:05
logan-we won't need required projects for integrated repo, just 508509 to merge :)15:06
logan-i think odyssey4me set up the IRR tests similarly so we won't need required-projects much there either15:07
mhaydenah okay15:07
* mhayden is still learning such things15:07
mhaydeni keep getting 500s when i try to view zuulv3 logs while the job is running15:07
logan-did  we ever merge a firewall spec15:07
logan-i  wrote a role15:07
mhaydenlogan-: not yet :/15:08
*** yifei has joined #openstack-ansible15:08
mhaydenoh, nvm, our corporate firewalls are eating the websockets connections :/15:08
logan-haha15:08
mhaydentake note on that one, odyssey4me / evrardjp15:09
odyssey4memhayden yep, just had a discussion about that with infra15:10
odyssey4memhayden the WIP patch to adjust the tests repo to work with zuul v3 is here: https://review.openstack.org/#/c/511912/15:10
*** chyka has joined #openstack-ansible15:10
odyssey4meit's already passed the xenial test15:10
evrardjplogan-: that's true odyssey4me is working on it15:10
odyssey4meit may be time to verify that cross-repo testing is working with it15:11
evrardjpodyssey4me: I have good examples for that: the metadata15:12
evrardjpthey should pass everything15:12
odyssey4meevrardjp can you kick one off with a depends-on, or shall I put up a noop patch somewhere?15:13
*** dave-mccowan has quit IRC15:13
evrardjpfound a good one.15:14
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_glance master: Add OpenStack-Ansible metadata  https://review.openstack.org/51048715:14
*** hw_wutianwei1 has joined #openstack-ansible15:14
*** acormier has joined #openstack-ansible15:14
evrardjpthis one ^ passed jenkins, and has no patch since its creation. SO it should pass.15:14
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231015:15
*** hw_wutianwei has quit IRC15:17
*** hw_wutianwei1 is now known as hw_wutianwei15:17
evrardjpwe'll probably also have to think about https://review.openstack.org/#/c/512243/15:17
*** yifei has quit IRC15:21
odyssey4meyes, no need to move them just yet15:22
*** acormier has quit IRC15:22
odyssey4melet's get them working as-is, then we can revisit them15:22
*** drifterza has joined #openstack-ansible15:22
odyssey4methat patch isn't done right anyway - it's supposed to move all those into zuul.d15:23
openstackgerritLogan V proposed openstack/openstack-ansible master: Async clone for git roles  https://review.openstack.org/50872115:23
odyssey4meoh I see what was done here - ok, still, rather segregate those into a different folder15:23
*** yifei has joined #openstack-ansible15:23
openstackgerritLogan V proposed openstack/openstack-ansible master: Shallow clone roles  https://review.openstack.org/50921115:24
*** SerenaFeng has quit IRC15:25
evrardjpodyssey4me: that's exactly what I suggested :)15:27
openstackgerritMerged openstack/openstack-ansible stable/ocata: Disable ceph-ansible NFS gateway by default  https://review.openstack.org/51227515:27
evrardjpodyssey4me: the patch doesn't seem to pass zuul https://review.openstack.org/#/c/510487/15:28
evrardjplet me check why15:28
odyssey4meevrardjp don't bother - I'm on it15:28
evrardjpk15:28
evrardjpkeep me posted!15:28
*** andressanchez has joined #openstack-ansible15:28
evrardjpand ty15:28
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231015:31
mhaydeni wonder if the centos-7 image in the gate is missing password-less sudo http://logs.openstack.org/10/512310/8/check/ansible-func-centos-7/de023be/job-output.txt.gz#_2017-10-16_15_26_09_98419315:31
mhaydenodyssey4me: that WIP patch for zuulv3 repos is looking good w/ansible-hardening15:32
*** Oku_OS is now known as Oku_OS-away15:32
mhaydenjust scratching my head on the sudo issue for now15:32
*** yifei has quit IRC15:32
evrardjplogan-: you may want to have a look at this: https://bugs.launchpad.net/openstack-ansible/+bug/172191215:32
openstackLaunchpad bug 1721912 in openstack-ansible "delegate_facts does not work with container connection plugin" [High,Confirmed]15:32
evrardjpmhayden: I am not sure ansible-hardening is in the pattern match15:33
mhaydenwhich pattern match?15:33
mhayden(this seems to be a pattern)15:34
* mhayden chuckles15:34
*** mrch has quit IRC15:34
mhaydenah there's a playbook that removes sudo access for the zuul user :/15:35
logan-thanks evrardjp15:35
logan-https://review.openstack.org/#/c/508509/ passed15:36
evrardjpif you have another test to run, that would help, but jmccrory's playbook seem a very contained test15:36
*** thorst has quit IRC15:37
logan-well i noticed now that i never mentioned in the original bug submit that it was on ocata where i saw this15:37
evrardjpwe're getting there!15:37
evrardjpOh.15:37
evrardjpYes I am not running on ocata there.15:37
evrardjpLet me do the same then15:37
logan-so maybe it works on master, which would be great.. maybe just a simple backport of something in plugins15:38
evrardjpThere is only one way to find out :)15:40
odyssey4meevrardjp xenial jobs are switching to voting with https://review.openstack.org/51233415:43
*** strattao has joined #openstack-ansible15:45
*** markvoelker has quit IRC15:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191215:54
jrosserodyssey4me: the role test vagrantfiles use the vagrant disk resizing plugin, are the disks actually resized anywhere?15:54
TahvokI am correct to assume that zuul not passing is a known issue?15:54
odyssey4mejrosser for centos/suse yes15:54
odyssey4meTahvok yes, busy working on it15:54
odyssey4meTahvok see https://review.openstack.org/#/c/511912/ for role tests and https://review.openstack.org/#/c/508509/ for integrated repo15:55
TahvokOk, thanks a lot! Holding fingers you'll fix it fast!15:55
openstackgerritAlbert Mikaelyan proposed openstack/openstack-ansible master: designate variables for neutron integration  https://review.openstack.org/51065015:59
mhaydenso apparently openstack-tox removes sudo16:00
mhaydenbut infra is chatting about a solution16:00
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191216:00
openstackgerritAlbert Mikaelyan proposed openstack/openstack-ansible-os_neutron master: Add [designate] section in neutron.conf  https://review.openstack.org/51065416:00
odyssey4memhayden it always has removed sudo for the jenkins user16:01
odyssey4meoh, actually, not sure about that16:01
*** dave-mccowan has joined #openstack-ansible16:03
*** jafeha has quit IRC16:04
evrardjplogan-: it may also be the ansible version16:11
*** chyka has quit IRC16:12
odyssey4meevrardjp weird - any idea what's going wrong here: http://logs.openstack.org/87/510487/3/check/legacy-ansible-func-centos-7/cec0fd5/ara/result/f1ccddb3-1aa9-4f04-b4c4-059978c6fc52/ - that's tested with https://review.openstack.org/51191216:12
mhaydenodyssey4me: they anticipated that unittests wouldn't need sudo16:12
*** chyka has joined #openstack-ansible16:12
mhaydeni assed it to the zuulv3 issues etherpad16:12
mhaydenhttps://etherpad.openstack.org/p/zuulv3-issues16:12
odyssey4memhayden yeah, we should ditch using tox in our new job definitions as we switch to using zuulv3 job defs16:13
odyssey4metoo many layers, and now we can remove them16:13
*** cshen_ has joined #openstack-ansible16:14
*** gkadam has joined #openstack-ansible16:14
mhaydenodyssey4me: use run-tests instead?16:14
jmccrorylogan- do you know if  https://bugs.launchpad.net/openstack-ansible/+bug/1721912 effects pike as well?16:15
openstackLaunchpad bug 1721912 in openstack-ansible "delegate_facts does not work with container connection plugin" [High,Confirmed]16:15
odyssey4memhayden make run-tests do the setup which nodepool does, but then use zuul playbooks for everything as far as we can16:15
logan-jmccrory: i couldn't say. have only tested on ocata at this point16:16
odyssey4memhayden so basically get ansible there, then execute playbooks... but when in openstack-ci ansible's already there so just use it16:16
jmccroryhmm ok, i'll dig into that a little more into that this morning, i've only tested master16:16
evrardjpjmccrory: logan- Ocata doesn't work, pike works16:17
evrardjpI am chery-picking because bissect is not useful16:17
evrardjpI will tell you what is working and what is not16:18
evrardjpbut I expect an ansible 2.3 thing.16:18
*** gmonteiro has joined #openstack-ansible16:18
*** markvoelker has joined #openstack-ansible16:20
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231016:24
*** cshen_ has quit IRC16:25
*** cshen_ has joined #openstack-ansible16:28
odyssey4meevrardjp another issue being resolved with the zuul v3 tests: https://review.openstack.org/51235116:32
evrardjpjmccrory: logan- that's due to ansible version. I cherry picked changes into my /etc/ansible/role/plugins including master ones, just to double check. Always the same. {{ item }}.16:35
*** gmonteiro has left #openstack-ansible16:35
logan-gotcha16:35
*** woodard has joined #openstack-ansible16:35
logan-thanks for looking16:35
jmccrorythanks evrardjp16:36
evrardjpI am now bumping just to make sure16:36
evrardjpin case I am too tired.16:36
mhaydenodyssey4me: having trouble finding a job in zuulv3 that's just a "basic" job16:37
mhaydenwithout tox bells/whistles16:37
evrardjpok very weird. I still see it with plugins checked out in master and ansible bumped to 2.316:38
evrardjpso I must do something wrong.16:38
*** cshen_ has quit IRC16:39
*** shardy has quit IRC16:39
evrardjpwe need more eyes on that. Sorry I am probably too tired.16:39
odyssey4memhayden this is a base job, not applied to any repo because it's meant to be inherited: https://github.com/openstack-infra/openstack-zuul-jobs/blob/master/zuul.d/jobs.yaml#L352-L35916:40
*** cshen_ has joined #openstack-ansible16:40
odyssey4mesomething similar: https://github.com/openstack-infra/openstack-zuul-jobs/blob/master/zuul.d/jobs.yaml#L392-L39916:41
*** drifterza has quit IRC16:42
mhaydenokay16:43
mhaydeni was looking over devstack's jobs too https://github.com/openstack-dev/devstack/blob/master/.zuul.yaml16:43
odyssey4methen playbooks for those: https://github.com/openstack-infra/openstack-zuul-jobs/tree/master/playbooks/python-tarball16:43
odyssey4meyou don't need to use roles at all - you can do tasks straight-up16:44
odyssey4meit seems that you always target all hosts though16:44
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231016:45
evrardjpodyssey4me: no I have no idea what's wrong with 510487 . I will check tomorrow I am tired now.16:45
evrardjpSee you tomorrow guys!16:45
mhaydenenjoy, evrardjp16:46
odyssey4menight evrardjp - thanks for checking16:46
spotznight16:47
*** cshen_ has quit IRC16:48
*** cshen_ has joined #openstack-ansible16:50
*** cshen_ has quit IRC16:57
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191217:00
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191217:02
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191217:08
*** hw_wutianwei has quit IRC17:11
*** mbuil has quit IRC17:14
odyssey4memhayden also, using the docs might be useful to you: https://docs.openstack.org/infra/zuul/feature/zuulv3/user/config.html#job17:19
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_glance master: Add OpenStack-Ansible metadata  https://review.openstack.org/51048717:22
*** acormier has joined #openstack-ansible17:22
*** acormier has quit IRC17:27
*** rodolof has quit IRC17:28
*** rodolof has joined #openstack-ansible17:29
*** SimAloo has joined #openstack-ansible17:29
*** stuartgr has quit IRC17:40
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231017:41
mhaydenodyssey4me: i've been referencing those a lot17:42
*** dave-mccowan has quit IRC17:42
*** esberglu has joined #openstack-ansible17:45
*** smatzek has joined #openstack-ansible17:45
jmccroryevrardjp logan- it's definitely a 2.2 problem. same issue when not using OSA's plugins17:49
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231017:51
*** rodolof has quit IRC17:54
*** rodolof has joined #openstack-ansible17:55
jmccroryevrardjp logan- this is the fix. we should be able to backport it to ocata's strategy plugin17:59
*** dave-mccowan has joined #openstack-ansible17:59
jmccroryhttps://github.com/ansible/ansible/pull/2185617:59
*** vnogin has joined #openstack-ansible18:03
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231018:06
*** vnogin has quit IRC18:07
openstackgerritMarc Gariépy (mgariepy) proposed openstack/openstack-ansible master: [DOC] add a setup to refresh facts.  https://review.openstack.org/51148618:07
*** poopcat has joined #openstack-ansible18:07
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231018:11
*** poopcat has quit IRC18:12
*** markvoelker has quit IRC18:16
*** poopcat has joined #openstack-ansible18:16
*** markvoelker has joined #openstack-ansible18:17
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231018:17
*** poopcat has quit IRC18:18
*** albertcard1 has joined #openstack-ansible18:18
odyssey4memhayden note in your review18:20
*** markvoelker has quit IRC18:21
odyssey4meok, for any cores around - https://review.openstack.org/#/c/511912/ is ready for review18:21
odyssey4mevalidated to work with https://review.openstack.org/#/c/510487/ - the upgrade test failed because of the way the job is written... having just spent an hour working through the jobs to reconfigure them, I think this is going to be best done in our own repositories with new job definitions instead of trying to rework them in openstack-zuul-jobs18:23
odyssey4meI'm heading home, then will get back online to get something going for that. If the tests repo patch can merge meanwhile it'll help18:23
mhaydenodyssey4me: +2'd18:24
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231018:34
*** SimAloo has quit IRC18:36
*** MasterOfBugs has joined #openstack-ansible18:36
*** pramodrj07 has joined #openstack-ansible18:39
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231018:45
openstackgerritMarc Gariépy (mgariepy) proposed openstack/openstack-ansible-lxc_hosts master: Remove the continue option for index download  https://review.openstack.org/51238618:50
*** rodolof has quit IRC18:50
*** rodolof has joined #openstack-ansible18:50
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231018:53
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231018:56
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231019:02
* mhayden shakes a fist19:02
*** cshen_ has joined #openstack-ansible19:09
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231019:15
*** kylek3h has joined #openstack-ansible19:23
*** kylek3h has quit IRC19:26
odyssey4memhayden why use the multinode as a base?19:48
mhaydenodyssey4me: no idea -- grasping at straws since it automatically sets up keys for us19:48
mhaydendevstack uses multinode as a base, then uses one node19:48
mhaydenonly one node is spun up19:48
odyssey4meah, interesting - so that could cut some stuff19:48
mhaydenyeah, it does all of the iptables + ssh key prep19:49
odyssey4menifty19:49
mhaydenhttp://logs.openstack.org/10/512310/22/check/ansible-hardening-functional-centos-7/a67cca2/job-output.txt.gz#_2017-10-16_19_17_03_43643019:49
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231019:50
*** markvoelker has joined #openstack-ansible19:51
*** markvoelker has quit IRC19:51
odyssey4meinteresting how the linters have gone19:51
*** markvoelker has joined #openstack-ansible19:51
odyssey4memhayden I don't think you need to set the required-projects with the same repo.... it's automatically included afaik19:57
*** markvoelker_ has joined #openstack-ansible19:57
*** markvoelker has quit IRC20:01
openstackgerritMarc Gariépy (mgariepy) proposed openstack/openstack-ansible-lxc_hosts master: Remove the continue option for aria2c  https://review.openstack.org/51238620:04
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231020:07
openstackgerritLogan V proposed openstack/openstack-ansible master: [WIP] Implement iptables management  https://review.openstack.org/51209920:13
*** bjolo has quit IRC20:18
dmsimardodyssey4me, mhayden, evrardjp, logan-, cloudnull: would love input on https://review.openstack.org/#/c/511992/20:19
*** thomasD has joined #openstack-ansible20:19
odyssey4medmsimard ooh, that's nice20:19
thomasDhi20:20
thomasDi am trying to get the aio working on centos 7 behind a proxy20:20
odyssey4medmsimard will star it to peek through tomorrow - busy doing job revisions now20:20
thomasDdone the limited connectvity config20:20
thomasDbut when running  openstack-ansible setup-infrastructure.yml20:20
thomasDit fails at this step TASK [repo_server : Install repo server packages]20:21
dmsimardodyssey4me: np, we very well might end up implementing it for logs.openstack.org, I'm asking for input now :)20:21
thomasDhere is the log output20:21
thomasDhttps://pastebin.com/FdmkRT2Y20:21
thomasDi am not sure if this has someting todo with the proxy conf but i guess not20:22
openstackgerritMerged openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim  https://review.openstack.org/51191220:22
thomasDthe /etc/enviroment is set20:22
*** cshen_ has quit IRC20:23
thomasDmaybe someone has an idea20:23
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231020:25
*** smatzek has quit IRC20:26
*** smatzek has joined #openstack-ansible20:26
*** mrtenio has quit IRC20:27
*** smatzek has quit IRC20:30
thomasDi tried with debug on20:31
thomasDopenstack-ansible setup-infrastructure.yml -vvv20:31
thomasDhere is the output. https://pastebin.com/8FUA8cA520:33
thomasDit looks like the ssh works without password but the lxc-attach hangs forever20:33
*** pbandark has quit IRC20:37
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231020:41
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA role jobs  https://review.openstack.org/51241420:44
odyssey4memhayden ^ how do you like them apples?20:44
*** mwynne has joined #openstack-ansible20:46
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA role jobs  https://review.openstack.org/51241420:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs  https://review.openstack.org/51241420:50
openstackgerritMajor Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3  https://review.openstack.org/51231020:50
*** galstrom is now known as galstrom_zzz20:55
thomasDi rebuild the repo container20:57
thomasDopenstack-ansible setup-hosts.yml --limit aio1_repo_container-794b3a1920:57
thomasDbut same error TASK [repo_server : Install repo server packages] ************************************************************************************************************ Monday 16 October 2017  16:56:24 -0400 (0:00:01.904)       0:00:24.369 ******** FAILED - RETRYING: Install repo server packages (5 retries left).20:58
openstackgerritAntony Messerli proposed openstack/openstack-ansible-ops master: Update readme to use force flag instead  https://review.openstack.org/51242320:59
*** smatzek has joined #openstack-ansible21:00
*** pbandark has joined #openstack-ansible21:00
*** galstrom_zzz is now known as galstrom21:01
*** woodard has quit IRC21:03
*** smatzek has quit IRC21:04
*** chyka has quit IRC21:04
*** chyka has joined #openstack-ansible21:05
jrossercloudnull: dedup takes the aio containers from 19.2G to 3.35G, 6.13x ratio21:09
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs  https://review.openstack.org/51241421:13
*** jwitko_ has joined #openstack-ansible21:14
*** thomasD has quit IRC21:17
*** jwitko has quit IRC21:17
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs  https://review.openstack.org/51241421:17
*** jwitko_ has quit IRC21:19
*** weezS has joined #openstack-ansible21:20
prometheanfiremhayden: this need a recheck? https://review.openstack.org/#/c/507189/21:28
*** galstrom is now known as galstrom_zzz21:29
*** snowman4839 has joined #openstack-ansible21:40
*** snowman48391 has quit IRC21:40
*** mgariepy has quit IRC21:41
*** jwitko has joined #openstack-ansible21:44
*** MasterOfBugs has quit IRC21:49
*** pramodrj07 has quit IRC21:49
openstackgerritFrank Zhang proposed openstack/openstack-ansible-ops master: Exclude elasticsearch from container-destroy task  https://review.openstack.org/51243121:54
*** mgariepy has joined #openstack-ansible21:54
*** vnogin has joined #openstack-ansible22:03
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs  https://review.openstack.org/51241422:03
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs  https://review.openstack.org/51241422:06
*** rromans has quit IRC22:06
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs  https://review.openstack.org/51241422:07
*** vnogin has quit IRC22:08
*** pmannidi has joined #openstack-ansible22:08
jmccroryodyssey4me do you know if it's possible for zuul to use a different version of ansible depending on the run stage?22:17
*** woodard has joined #openstack-ansible22:18
*** masber has joined #openstack-ansible22:26
*** esberglu has quit IRC22:36
*** jwitko has quit IRC22:37
*** gouthamr has quit IRC22:37
*** aludwar has quit IRC22:44
*** aludwar1 has joined #openstack-ansible22:44
*** aludwar1 has quit IRC22:44
*** rodolof has quit IRC22:46
*** lbragstad has quit IRC22:57
*** gouthamr has joined #openstack-ansible22:58
*** nomatics has joined #openstack-ansible22:58
nomaticsDuring setup-infrastructure.yml --syntax-check I'm getting a KeyError: 'address' from generate.py: container['ansible_host'] = networks[old_address]['address']22:59
nomaticsAny ideas on where to debug?22:59
*** rromans has joined #openstack-ansible23:00
nomaticsstable/pike23:00
*** weezS has quit IRC23:01
*** pbandark1 has joined #openstack-ansible23:05
*** pbandark has quit IRC23:06
*** pbandark1 is now known as pbandark23:06
*** pbandark has quit IRC23:09
*** esberglu has joined #openstack-ansible23:11
*** esberglu has quit IRC23:15
*** chyka has quit IRC23:22
*** chyka has joined #openstack-ansible23:47
*** gokhan is now known as Guest3178823:59

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!