openstackgerrit | David Moreau Simard proposed openstack/openstack-ansible master: Do not merge: retrieve ara database https://review.openstack.org/512115 | 00:10 |
---|---|---|
*** acormier has joined #openstack-ansible | 00:20 | |
*** yifei has joined #openstack-ansible | 00:21 | |
openstackgerrit | Logan V proposed openstack/openstack-ansible master: Updated repo cloner for zuulv3 https://review.openstack.org/508509 | 00:45 |
*** hw_wutianwei has joined #openstack-ansible | 00:50 | |
dmsimard | logan-: you there ? | 00:53 |
logan- | yessir | 00:53 |
dmsimard | logan-: 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_wutianwei | logan-: hi, I failed to deploy openstack using openstack-ansible at gnocchi. here is the log | 00:58 |
hw_wutianwei | logan-: http://paste.openstack.org/show/623666/ | 00:58 |
hw_wutianwei | could you help me? | 00:58 |
*** acormier has quit IRC | 00: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-ansible | 01:08 | |
*** huxinhui__ is now known as huxinhui | 01:08 | |
hw_wutianwei | logan-: do you know who can solve this issue? | 01:09 |
*** thorst has quit IRC | 01: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 requirement | 01: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 bug | 01:15 |
*** gkadam_ has quit IRC | 01:35 | |
*** galstrom_zzz is now known as galstrom | 01:52 | |
*** idlemind has joined #openstack-ansible | 02:03 | |
*** galstrom is now known as galstrom_zzz | 02:09 | |
openstackgerrit | David Moreau Simard proposed openstack/openstack-ansible master: Do not merge: retrieve ara database https://review.openstack.org/512115 | 02:15 |
openstackgerrit | David Moreau Simard proposed openstack/openstack-ansible master: Do not merge: retrieve ara database https://review.openstack.org/512115 | 02:15 |
dmsimard | logan-: 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 |
dmsimard | logan-: yeah, there's a difference because the zuul executor runs ansible against the nodes and I guess you run ansible from one of those nodes | 02:18 |
logan- | oh, yeah i guess whatever ara report zuul generates would be separate from the osa ara report | 02:18 |
dmsimard | logan-: at least as far as legacy jobs are concerned, from the perspective of the executor, your ansible playbook is just one *large* command task | 02:18 |
logan- | right | 02:18 |
dmsimard | logan-: 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.o | 02:19 |
dmsimard | So instead of generating and saving potentially thousands of files, you'll save just this one tiny sqlite database instead and it'll just work | 02:19 |
dmsimard | ara reports are not large in size, there's just a lot of files | 02:20 |
logan- | coolness | 02:22 |
logan- | that would be nice | 02: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 |
dmsimard | logan-: a bit more complicated than that, let me put up the WIP patch, hang on | 02:23 |
dmsimard | logan-: https://review.openstack.org/511992 | 02:24 |
dmsimard | logan-: 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 disk | 02:25 |
*** masber has quit IRC | 02:26 | |
logan- | gotcha | 02:26 |
*** gouthamr has quit IRC | 02:27 | |
dmsimard | It'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 lot | 02:28 |
dmsimard | I'll use your database of a job report as a benchmark :D | 02:29 |
dmsimard | I don't have any playbooks that run that many tasks running things locally lol | 02: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- | yeah | 02: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 IRC | 02:35 | |
*** adreznec has quit IRC | 02:37 | |
*** adreznec has joined #openstack-ansible | 02:39 | |
dmsimard | logan-: it doesn't generate anything | 02:43 |
*** esberglu has quit IRC | 02:43 | |
dmsimard | It just reads from the database directly | 02:43 |
dmsimard | Static generation is just something that fires the webapp, crawls every page and creates a static html file for it | 02:44 |
dmsimard | The web app in itself is dynamic and reads from a database | 02:45 |
dmsimard | The 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 context | 02:45 |
dmsimard | To 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 filesystem | 02:48 |
dmsimard | If 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 that | 02:48 |
dmsimard | s3ql is pretty good too. Not for random writes, but for reads it should be fast enough. | 02:49 |
*** acormier has joined #openstack-ansible | 02:58 | |
*** udesale has joined #openstack-ansible | 03:00 | |
*** mrhillsman has quit IRC | 03:00 | |
*** mrhillsman has joined #openstack-ansible | 03:01 | |
*** acormier has quit IRC | 03:03 | |
*** gkadam_ has joined #openstack-ansible | 03:10 | |
*** thorst has joined #openstack-ansible | 03:10 | |
*** gkadam_ has quit IRC | 03:10 | |
*** gkadam has joined #openstack-ansible | 03:10 | |
*** thorst has quit IRC | 03:15 | |
*** masber has joined #openstack-ansible | 03:20 | |
*** vnogin has joined #openstack-ansible | 03:24 | |
*** esberglu has joined #openstack-ansible | 03:26 | |
openstackgerrit | Logan V proposed openstack/openstack-ansible master: [WIP] Implement iptables management https://review.openstack.org/512099 | 03:28 |
*** vnogin has quit IRC | 03:28 | |
*** esberglu has quit IRC | 03:30 | |
*** udesale has quit IRC | 03:46 | |
*** udesale has joined #openstack-ansible | 03:59 | |
*** udesale has quit IRC | 04:00 | |
*** udesale has joined #openstack-ansible | 04:00 | |
*** drifterza has quit IRC | 04:15 | |
*** Dinesh_Bhor has joined #openstack-ansible | 04:42 | |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-ops master: Tune-up the MNAIO for physical and virtual hosts https://review.openstack.org/511985 | 04:44 |
*** armaan has joined #openstack-ansible | 04:50 | |
*** markvoelker has quit IRC | 04:58 | |
*** markvoelker has joined #openstack-ansible | 04:58 | |
*** armaan has quit IRC | 05:05 | |
*** snowman4839 has quit IRC | 05:05 | |
*** snowman48391 has joined #openstack-ansible | 05:05 | |
*** snowman48391 has quit IRC | 05:09 | |
*** snowman4839 has joined #openstack-ansible | 05:09 | |
*** korean101 has joined #openstack-ansible | 05:11 | |
*** thorst has joined #openstack-ansible | 05:12 | |
*** taseer3 has joined #openstack-ansible | 05:16 | |
*** thorst has quit IRC | 05:16 | |
*** taseer2 has quit IRC | 05:17 | |
*** taseer4 has joined #openstack-ansible | 05:17 | |
*** taseer3 has quit IRC | 05:21 | |
*** jvidal has joined #openstack-ansible | 05:37 | |
korean101 | hi guys | 05:41 |
korean101 | anyone knows this ERROR? (http://paste.openstack.org/show/623668/) | 05:41 |
*** taseer4 is now known as Taseer | 05:42 | |
korean101 | why this lines wrong? (https://github.com/openstack/kolla-ansible/blob/stable/pike/ansible/roles/nova/tasks/precheck.yml#L19) | 05:42 |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-ops master: Tune-up the MNAIO for physical and virtual hosts https://review.openstack.org/511985 | 05:42 |
cloudnull | korean101: you might want to check with the folks in the #openstack-kolla channel | 05:45 |
korean101 | cloudnull: thanks!! | 05:46 |
cloudnull | it looks like they're just waiting on a free port | 05:46 |
*** markvoelker has quit IRC | 05:46 | |
cloudnull | the error is here: if inventory_hostname in groups[nova_api.group] | 05:46 |
cloudnull | which makes me believe the inventory is missing the nova_api group | 05:47 |
*** armaan has joined #openstack-ansible | 05:47 | |
cloudnull | that said, the kolla folks should be able to get your sorted. | 05:47 |
cloudnull | for future, this channel is specifically for the "openstack-ansible" project. | 05:48 |
evrardjp | good morning | 05:56 |
evrardjp | "good" | 05:56 |
*** drifterza has joined #openstack-ansible | 06:08 | |
SamYaple | evrardjp: zuulv3 is here. it is a great morning! | 06:10 |
evrardjp | yes I agree. It just broke a few of our jobs, but we should be ready soon | 06:10 |
evrardjp | You're still up I see? :) | 06:11 |
*** Oku_OS-away is now known as Oku_OS | 06:11 | |
evrardjp | good morning Oku_OS | 06:13 |
SamYaple | evrardjp: for the time being :) | 06:14 |
evrardjp | what's up on your side of the planet? | 06:15 |
SamYaple | not the sun | 06:15 |
evrardjp | I expected a dadjoke. | 06:15 |
SamYaple | im trying to get my post-job secrets push-to-dockerhub thing working | 06:15 |
SamYaple | i dont think secrets are available in post-run | 06:16 |
evrardjp | On what are you running this? | 06:17 |
evrardjp | is it in openstack-infra's zuul v3 ? or is it your own jenkins? | 06:17 |
evrardjp | I am clueless about what you're talking about :p | 06:17 |
SamYaple | zuulv3 | 06:18 |
SamYaple | openstakc/loci | 06:18 |
evrardjp | shouldn'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 |
evrardjp | SamYaple: do you plan to build other images, like infra images? (rabbit?) | 06:22 |
*** AndyWojo has quit IRC | 06:24 | |
SamYaple | evrardjp: its being discussed | 06:24 |
*** berendt has quit IRC | 06:24 | |
*** serverascode has quit IRC | 06:24 | |
*** vnogin has joined #openstack-ansible | 06:24 | |
SamYaple | it wasnt in the original plan... but we are still evolving the scope before we go stable | 06:24 |
*** zul has quit IRC | 06:24 | |
*** rackertom has quit IRC | 06:24 | |
*** hogepodge has quit IRC | 06:24 | |
SamYaple | im not sure about the empty file bit, what do you mean? | 06:25 |
*** AndyWojo has joined #openstack-ansible | 06:26 | |
*** rackertom has joined #openstack-ansible | 06:26 | |
*** berendt has joined #openstack-ansible | 06:26 | |
*** hogepodge has joined #openstack-ansible | 06:26 | |
*** bauruine has quit IRC | 06:26 | |
*** serverascode has joined #openstack-ansible | 06:27 | |
*** exodusftw has quit IRC | 06:27 | |
SamYaple | also, ive meant to ask. does OSA have any plans to use containerd? | 06:27 |
*** openstackgerrit has quit IRC | 06:28 | |
*** Jeffrey4l has quit IRC | 06:28 | |
*** vnogin has quit IRC | 06:28 | |
*** exodusftw has joined #openstack-ansible | 06:29 | |
*** Jeffrey4l has joined #openstack-ansible | 06:29 | |
evrardjp | we don't have a goal for it, but if it means an easier infra I think that would be reachable | 06:31 |
evrardjp | To be honest, we have no plans to use containerd for the openstack bits for now | 06:32 |
*** bauruine has joined #openstack-ansible | 06:32 | |
evrardjp | but I am not the only one here, and patch can happen | 06:32 |
evrardjp | I 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 |
evrardjp | moving to ansible2.4 is one | 06:33 |
evrardjp | simplifying inventory... | 06:33 |
SamYaple | was just curious. im hoping to migrate away from Docker for runing things in general. containerd is a bit more like the "docker" ive always wanted | 06:33 |
evrardjp | well we will we closer to rkt | 06:34 |
evrardjp | be closer* | 06:34 |
evrardjp | when systemd nspawn will be introduced | 06:34 |
evrardjp | but I haven't digged into containerd as standalone | 06:34 |
SamYaple | yea big fan of rkt was well | 06:34 |
SamYaple | it idnt quiet evole exactly like i was hoping but its on my radar | 06:35 |
evrardjp | Oh when you're here, you changed something on the ceph bits for some branches, was it ocata? | 06:35 |
SamYaple | yes | 06:35 |
evrardjp | Oh great. I have to check that | 06:35 |
SamYaple | patch is still waiting review | 06:35 |
evrardjp | I see leseb hasn't updated all his roles | 06:35 |
evrardjp | great I will find it | 06:35 |
SamYaple | https://review.openstack.org/#/c/511755/ | 06:35 |
evrardjp | yes I have it | 06:36 |
evrardjp | my vote isn't relevant anymore | 06:36 |
evrardjp | I will include this in my bump patch if you don't mind | 06:36 |
evrardjp | I will mark you as co-author | 06:36 |
SamYaple | not worried about co-authorship, but thanks for thinking of me | 06:37 |
SamYaple | i was just trying to help out | 06:37 |
evrardjp | do you know why we are fixing sha for https://github.com/ceph/ansible-ceph-docker-common ? | 06:37 |
evrardjp | thanks it helps :) | 06:37 |
SamYaple | not a clue sorry | 06:37 |
evrardjp | ok I will ask logan- | 06:37 |
evrardjp | because that's also the same branch | 06:37 |
*** mbuil has joined #openstack-ansible | 06:37 | |
evrardjp | and 2.2.12 wasn't tagged there | 06:37 |
evrardjp | :( | 06:37 |
evrardjp | that's why I didn't bump it | 06:38 |
SamYaple | im sure leseb will tag it there if the tags are supposed to be in sync | 06:38 |
evrardjp | I will do you like you did | 06:38 |
*** esberglu has joined #openstack-ansible | 06:38 | |
evrardjp | yeah | 06:38 |
evrardjp | I will just ask him a little later today | 06:38 |
SamYaple | yup :) | 06:38 |
SamYaple | looks like nothing has changed on that repo since 2.2.11 | 06:38 |
evrardjp | too early for Paris ppl :) | 06:38 |
evrardjp | yeah but we still pinned a sha instead of a version, which makes me wonder | 06:39 |
SamYaple | im 99% he is up right now | 06:39 |
SamYaple | its like 8 or 9am there | 06:39 |
evrardjp | there is like 6 patches diff | 06:39 |
evrardjp | 8:40 am | 06:39 |
evrardjp | but Paris ppl tend to start later :D | 06:40 |
evrardjp | at least to my knowledge | 06:40 |
SamYaple | haha ok | 06:40 |
SamYaple | well i asked him around this time last time for what its worth | 06:40 |
SamYaple | hopefully i didnt wake him up | 06:40 |
evrardjp | haha | 06:40 |
evrardjp | maybe he is not in Paris too :) | 06:40 |
evrardjp | "leseb is away: Auto away " :D | 06:41 |
evrardjp | let's see! | 06:41 |
evrardjp | why containerd then? | 06:41 |
evrardjp | enlighten me :) | 06:41 |
SamYaple | oh 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 |
SamYaple | its just super stripped down. no volumes/network/spawn stuff | 06:43 |
*** esberglu has quit IRC | 06:43 | |
SamYaple | infact, docker uses containerd for all the lowered level stuff now | 06:43 |
*** openstackgerrit has joined #openstack-ansible | 06:43 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible stable/ocata: Update all SHAs for 15.1.11 https://review.openstack.org/512048 | 06:43 |
evrardjp | FYI I've abandoned your patchset, and updated this ^ with your changes. | 06:44 |
SamYaple | +1 | 06:45 |
evrardjp | I like the fact to have stripped down containers, doing one thing, doing it well. | 06:45 |
evrardjp | Else why doing app containers at all? | 06:46 |
evrardjp | When you think about it, systemd-nspawn has almost all the wiring, if not everything | 06:46 |
evrardjp | assuming you're running a systemd host :p | 06:46 |
SamYaple | which is pretty reasonable these days | 06:47 |
SamYaple | for better or worse | 06:47 |
evrardjp | :) | 06:47 |
evrardjp | I will not start this conversation in the morning. Only in the evening with some kind of alcohol in hands. | 06:48 |
evrardjp | redoing the world | 06:48 |
SamYaple | haha | 06:49 |
SamYaple | i mean the guy that wrote pulse audio should definetely be writing the end-all-be-all init system | 06:49 |
*** vnogin has joined #openstack-ansible | 06:52 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_neutron master: Update upgrade role for Queens from P https://review.openstack.org/511816 | 06:59 |
evrardjp | haha | 07:00 |
*** vnogin has quit IRC | 07:00 | |
*** markvoelker has joined #openstack-ansible | 07:02 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_nova master: Update paste, policy and rootwrap configurations 2017-10-14 https://review.openstack.org/512044 | 07:10 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_nova master: Update paste, policy and rootwrap configurations 2017-10-14 https://review.openstack.org/512044 | 07:10 |
*** markvoelker has quit IRC | 07:18 | |
*** shardy has joined #openstack-ansible | 07:18 | |
*** flaviosr has joined #openstack-ansible | 07:19 | |
*** markvoelker has joined #openstack-ansible | 07:20 | |
*** markvoelker has quit IRC | 07:20 | |
*** markvoelker has joined #openstack-ansible | 07:20 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_nova master: Update paste, policy and rootwrap configurations 2017-10-14 https://review.openstack.org/512044 | 07:21 |
*** pbandark has joined #openstack-ansible | 07:22 | |
evrardjp | I will work on tests now | 07:41 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-tests master: [WIP] Implement Zuul v3 aware git cloning https://review.openstack.org/512202 | 07:56 |
*** drifterza has quit IRC | 08:02 | |
*** drifterza1 has joined #openstack-ansible | 08:02 | |
*** armaan has quit IRC | 08:08 | |
*** armaan has joined #openstack-ansible | 08:08 | |
*** zul has joined #openstack-ansible | 08:22 | |
*** esberglu has joined #openstack-ansible | 08:26 | |
*** armaan has quit IRC | 08:28 | |
*** armaan has joined #openstack-ansible | 08:28 | |
*** esberglu has quit IRC | 08:30 | |
*** markvoelker has quit IRC | 08:31 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-tests master: [WIP] Implement Zuul v3 aware git cloning https://review.openstack.org/512202 | 08:35 |
*** markvoelker has joined #openstack-ansible | 08:45 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/pike: Run ARA only if enabled https://review.openstack.org/512216 | 08:47 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/pike: Only build ARA report when test fails https://review.openstack.org/512217 | 08:47 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/pike: Run ARA only if enabled https://review.openstack.org/512216 | 08:49 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/pike: Only build ARA report when test fails https://review.openstack.org/512217 | 08:49 |
*** drifterza1 has quit IRC | 08:52 | |
*** drifterza has joined #openstack-ansible | 08:58 | |
odyssey4me | o/ | 09:00 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-tests master: [WIP] Implement Zuul v3 aware git cloning https://review.openstack.org/512202 | 09:02 |
odyssey4me | evrardjp now that zuul v3 is implemented, I'll finalise the patch for the roles to work | 09:02 |
odyssey4me | hopefully we can get that completed today | 09:03 |
evrardjp | oh you had a patch? I didn't see it . | 09:03 |
evrardjp | In tests? | 09:03 |
odyssey4me | yeah https://review.openstack.org/#/c/511912/ | 09:03 |
evrardjp | oh yeah the v2 v3 | 09:03 |
odyssey4me | it's failing because our currentlu tests-clone thing can't work any more, but I'll fix that now | 09:03 |
evrardjp | check at this: | 09:04 |
evrardjp | https://review.openstack.org/#/c/512202/ | 09:04 |
evrardjp | taking your experience for v3 quick fixing | 09:04 |
evrardjp | there is no need to hurry | 09:04 |
evrardjp | when I will get this to merge, we can do better things with v3, as we discussed | 09:05 |
evrardjp | like the v2 v3 or better v3 | 09:05 |
odyssey4me | I'm confused - why're you re-implementing the same thing? | 09:05 |
evrardjp | to keep your patch up | 09:05 |
evrardjp | it's in the commit message | 09:06 |
evrardjp | but I can drop it if you prefer | 09:06 |
odyssey4me | ok, I'm just being confused by it no | 09:06 |
odyssey4me | *now | 09:06 |
odyssey4me | let me just get on with this patch - it's close to ready | 09:06 |
evrardjp | with yours? | 09:07 |
evrardjp | the v2/v3 ? | 09:07 |
odyssey4me | yes | 09:07 |
evrardjp | ok if it's ready ok | 09:07 |
evrardjp | go ahead | 09:07 |
evrardjp | I had to advance, and I didn't want to deface your patch for something that was a dumb down version of yours. | 09:10 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 09:15 |
evrardjp | odyssey4me: for Zuul v3 checking we need to check log path | 09:20 |
*** esberglu has joined #openstack-ansible | 09:20 | |
evrardjp | see: http://lists.openstack.org/pipermail/openstack-dev/2017-October/123049.html | 09:20 |
*** esberglu has quit IRC | 09:20 | |
*** esberglu has joined #openstack-ansible | 09:20 | |
*** esberglu has quit IRC | 09:21 | |
*** askb has quit IRC | 09:21 | |
odyssey4me | @evrardjp yes, and that log path does not work | 09:22 |
odyssey4me | I tried that in an earlier patch set | 09:22 |
odyssey4me | it's supposed to be used for zuul v2, but it is not | 09:22 |
ArchiFleKs | Hi 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 |
evrardjp | ArchiFleKs: what is "some services" ? | 09:23 |
evrardjp | does that deserve upstreaming? | 09:23 |
ArchiFleKs | evrardjp: 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 guess | 09:24 |
evrardjp | that's definitely a new feature we can add for anyone | 09:28 |
ArchiFleKs | i 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 directory | 09:30 |
evrardjp | I am not sure if there is any precedent. I am looking at nova role. I'd say make it an optional feature, like SELinux is | 09:30 |
evrardjp | yes that is fine | 09:31 |
evrardjp | maybe there: https://github.com/openstack/openstack-ansible-os_nova/blob/master/tasks/drivers/kvm/nova_compute_kvm.yml#L116-L120 | 09:31 |
evrardjp | as an include | 09:31 |
evrardjp | that can be conditional based on when ksm is enabled | 09:32 |
evrardjp | ArchiFleKs: please add a release note too :) | 09:34 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 09:35 |
*** hw_wutianwei has quit IRC | 09:39 | |
*** askb has joined #openstack-ansible | 09:45 | |
ArchiFleKs | evrardjp: ok thanks :) | 09:45 |
openstackgerrit | Duong Ha-Quang proposed openstack/openstack-ansible master: Move legacy jobs to project https://review.openstack.org/512243 | 09:48 |
openstackgerrit | Duong Ha-Quang proposed openstack/openstack-ansible master: Move legacy jobs to project https://review.openstack.org/512243 | 09:52 |
*** esberglu has joined #openstack-ansible | 10:14 | |
*** jafeha has joined #openstack-ansible | 10:16 | |
jafeha | hello everybody | 10:16 |
*** yifei has quit IRC | 10:18 | |
*** esberglu has quit IRC | 10:18 | |
*** openstackgerrit has quit IRC | 10:33 | |
*** stuartgr has joined #openstack-ansible | 10:36 | |
*** armaan has quit IRC | 10:43 | |
*** armaan has joined #openstack-ansible | 10:44 | |
evrardjp | hello | 10:47 |
*** cshen has joined #openstack-ansible | 10:51 | |
*** jafeha has quit IRC | 10:51 | |
*** udesale has quit IRC | 10:54 | |
*** udesale has joined #openstack-ansible | 10:54 | |
*** jafeha has joined #openstack-ansible | 10:58 | |
*** udesale has quit IRC | 11:07 | |
*** rodolof has joined #openstack-ansible | 11:07 | |
*** dave-mccowan has joined #openstack-ansible | 11:09 | |
*** openstackgerrit has joined #openstack-ansible | 11:10 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 11:10 |
*** vnogin has joined #openstack-ansible | 11:11 | |
*** armaan has quit IRC | 11:11 | |
*** armaan has joined #openstack-ansible | 11:11 | |
*** armaan has quit IRC | 11:12 | |
*** armaan has joined #openstack-ansible | 11:13 | |
*** smatzek has joined #openstack-ansible | 11:14 | |
*** mrch has joined #openstack-ansible | 11:15 | |
*** vnogin has quit IRC | 11:15 | |
*** masber has quit IRC | 11:16 | |
*** rodolof has quit IRC | 11:17 | |
*** rodolof has joined #openstack-ansible | 11:18 | |
evrardjp | odyssey4me: on your last patchset ANSIBLE_OVERRIDES: /home/zuul/workspace/tests/-overrides.yml is probably a problem | 11:20 |
evrardjp | and there is probably a jinja issue too | 11:20 |
*** shardy is now known as shardy_lunch | 11:20 | |
evrardjp | I will fix the jinja | 11:21 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 11:23 |
*** vnogin has joined #openstack-ansible | 11:31 | |
*** drifterza has quit IRC | 11:32 | |
*** tasker has quit IRC | 11:39 | |
*** tasker has joined #openstack-ansible | 11:40 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 11:41 |
odyssey4me | evrardjp dude, what're you doing? | 11:41 |
evrardjp | I contacted you, you didn't reply. | 11:42 |
odyssey4me | there's no need for the ZUUL_REF bit, because we show all ZUUL_ vars elsewhere | 11:42 |
evrardjp | Trying to advance? | 11:42 |
evrardjp | well, why do we enter the loop then? | 11:42 |
odyssey4me | I'm working on it - just also between other things. If you see something that needs fixing, just add a review comment. | 11:42 |
odyssey4me | I'm now having to rebase based on your changes and have other changes mixed in, so it's causing problems. | 11:43 |
evrardjp | Well you said in the past for urgent matters I can edit your patchset, decide:p | 11:43 |
evrardjp | well how can I know? | 11:43 |
odyssey4me | yes you can, when I'm not actively working on the same patch | 11:43 |
evrardjp | as far as I know you weren't working on it :p | 11:43 |
odyssey4me | I told you that I'm working on it today, that's how. | 11:43 |
evrardjp | ok. | 11:43 |
evrardjp | I leave you to it. | 11:43 |
odyssey4me | if the patch is dormant for days then fine, but I've made updates today | 11:44 |
evrardjp | this 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 IRC | 11:45 | |
evrardjp | ignore my changes | 11:45 |
odyssey4me | and your editing the patch I'm working on is not helping that happen | 11:45 |
evrardjp | don't rebase or anything | 11:45 |
*** dasTor has joined #openstack-ansible | 11:45 | |
evrardjp | go ahead and continue your work | 11:45 |
evrardjp | so 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 :p | 11:46 |
evrardjp | anyway | 11:46 |
odyssey4me | two people working on the same thing at the same time is a waste of resources | 11:46 |
*** udesale has joined #openstack-ansible | 11:48 | |
*** udesale has quit IRC | 11:51 | |
*** drifterza has joined #openstack-ansible | 11:51 | |
*** drifterza has quit IRC | 11:53 | |
*** thorst has joined #openstack-ansible | 11:54 | |
*** thorst has quit IRC | 11:54 | |
evrardjp | I 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-ansible | 11:56 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 11:56 |
*** huxinhui has quit IRC | 11:57 | |
*** drifterza has joined #openstack-ansible | 12:00 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 12:08 |
logan- | Ceph | 12:13 |
logan- | ceph-docker-common is a noop it shouldn’t need a tag bump at all | 12:14 |
*** vnogin has quit IRC | 12:14 | |
logan- | We only pull it in because it is a meta dependency but it just skips | 12:14 |
*** vnogin has joined #openstack-ansible | 12:15 | |
*** vnogin has quit IRC | 12:18 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 12:18 |
evrardjp | logan-: ok. | 12:19 |
evrardjp | that's what I did. | 12:19 |
openstackgerrit | Logan V proposed openstack/openstack-ansible stable/ocata: Disable ceph-ansible NFS gateway by default https://review.openstack.org/512275 | 12:21 |
evrardjp | logan-: it's already included in the bump | 12:22 |
evrardjp | but indeed I don't see a problem to add it | 12:22 |
evrardjp | I mean the fix for the big ppa issue is included in the bump | 12:23 |
*** dave-mccowan has quit IRC | 12:23 | |
evrardjp | well you'll see :) | 12:23 |
*** shardy_lunch is now known as shardy | 12:25 | |
openstackgerrit | Kevin Lefevre proposed openstack/openstack-ansible-os_nova master: Enable KSM support for Nova https://review.openstack.org/507862 | 12:37 |
*** esberglu has joined #openstack-ansible | 12:38 | |
*** gkadam has quit IRC | 12:38 | |
*** drifterza has quit IRC | 12:43 | |
evrardjp | thanks ArchiFleKs! | 12:44 |
*** dave-mccowan has joined #openstack-ansible | 12:45 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 12:46 |
*** vnogin has joined #openstack-ansible | 12:53 | |
*** armaan has quit IRC | 12:54 | |
*** armaan has joined #openstack-ansible | 12:55 | |
*** woodard has joined #openstack-ansible | 12:55 | |
mhayden | morning | 12:58 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 12:59 |
*** acormier has joined #openstack-ansible | 13:00 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_nova master: Update paste, policy and rootwrap configurations 2017-10-14 https://review.openstack.org/512044 | 13:00 |
*** vnogin has quit IRC | 13:02 | |
*** acormier has quit IRC | 13:04 | |
*** drifterza has joined #openstack-ansible | 13:04 | |
openstackgerrit | Kevin Lefevre proposed openstack/openstack-ansible-os_nova master: Enable KSM support for Nova https://review.openstack.org/507862 | 13:04 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/ansible-hardening master: Fix logic error https://review.openstack.org/512289 | 13:06 |
*** dave-mccowan has quit IRC | 13:06 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 13:12 |
mgariepy | morning everyone | 13:15 |
*** dave-mccowan has joined #openstack-ansible | 13:16 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_neutron master: Allow dnsmasq configuration to be overriden https://review.openstack.org/512293 | 13:18 |
*** armaan has quit IRC | 13:19 | |
*** armaan has joined #openstack-ansible | 13:20 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_neutron master: Allow dnsmasq configuration to be overriden https://review.openstack.org/512293 | 13:23 |
*** smatzek has quit IRC | 13:23 | |
evrardjp | morning mgariepy | 13:36 |
*** lbragstad has joined #openstack-ansible | 13:37 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 13:41 |
*** snowman48391 has joined #openstack-ansible | 13:43 | |
*** ivveh- has joined #openstack-ansible | 13:45 | |
mgariepy | logan-, did you upgrade to Ocata yet ? | 13:45 |
*** ryade has quit IRC | 13:45 | |
*** Aju has joined #openstack-ansible | 13:46 | |
*** mrtenio has joined #openstack-ansible | 13:47 | |
*** snowman4839 has quit IRC | 13:48 | |
*** ivveh has quit IRC | 13:48 | |
*** afranc has quit IRC | 13:48 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 13:48 |
*** bjolo has joined #openstack-ansible | 13:49 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: Do not source openstack-ansible.rc when pulling roles https://review.openstack.org/512303 | 13:49 |
logan- | mgariepy: just got finished upgrading my dev cluster last week. planning to do the rollout to prod in a couple weeks | 13:49 |
mgariepy | nice. | 13:51 |
mgariepy | everything went well ? | 13:51 |
mgariepy | upgraded my prod cluster to Xenial/Newton last week. | 13:51 |
*** drifterza has quit IRC | 13:54 | |
*** gouthamr has joined #openstack-ansible | 13:54 | |
*** tasker has quit IRC | 13:57 | |
*** tasker has joined #openstack-ansible | 13:59 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 14:00 |
*** SerenaFeng has joined #openstack-ansible | 14:01 | |
*** kylek3h has quit IRC | 14:03 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-haproxy_server master: Clarify keepalived overrides https://review.openstack.org/512307 | 14:04 |
*** bjolo has quit IRC | 14: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 that | 14:11 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-haproxy_server master: Clarify keepalived overrides https://review.openstack.org/512307 | 14:12 |
*** masber has joined #openstack-ansible | 14:12 | |
*** masber has quit IRC | 14:17 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 14:18 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 14:19 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 14:20 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 14:21 |
mhayden | oh wow i need more coffee | 14:22 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 14:23 |
openstackgerrit | kourosh vivan proposed openstack/openstack-ansible-os_gnocchi master: Change default gnocchi ceph pool name to metrics https://review.openstack.org/512313 | 14:25 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 14:26 |
*** woodard has quit IRC | 14:26 | |
*** galstrom_zzz is now known as galstrom | 14:27 | |
*** bjolo has joined #openstack-ansible | 14:27 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 14:30 |
odyssey4me | evrardjp 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 verify | 14:33 |
*** jwitko has joined #openstack-ansible | 14:35 | |
*** jvidal has quit IRC | 14:35 | |
evrardjp | we have to fix the tests too, to make sure jobs properly vote, as you could have seen. But that's a different topic | 14:36 |
evrardjp | I will review | 14:38 |
*** andressanchez has quit IRC | 14:40 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 14:44 |
*** esberglu has quit IRC | 14:46 | |
odyssey4me | evrardjp yes, that's another matter which I'll look into now | 14:50 |
evrardjp | oh great | 14:50 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 14:54 |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible master: Avoid using gather_facts as a variable https://review.openstack.org/510969 | 14:59 |
evrardjp | mhayden: ^ love it! | 15:00 |
mhayden | evrardjp: hah which? | 15:00 |
evrardjp | not naming things with ansible naming conventions | 15:00 |
mhayden | ah, okay | 15:00 |
mhayden | yeah, i kept seeing that warning and figured i'd try to fix it | 15:00 |
mhayden | or at least not make it worse :P | 15:00 |
evrardjp | haha | 15:01 |
mhayden | so i assume someone is trying to get ansible-hardening into 'required-projects' for zuulv3? | 15:04 |
mhayden | i saw the OSA gate errors | 15:04 |
*** hw_wutianwei has joined #openstack-ansible | 15:04 | |
logan- | trying to get https://review.openstack.org/#/c/508509/ to not time out | 15: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 either | 15:07 |
mhayden | ah okay | 15:07 |
* mhayden is still learning such things | 15:07 | |
mhayden | i keep getting 500s when i try to view zuulv3 logs while the job is running | 15:07 |
logan- | did we ever merge a firewall spec | 15:07 |
logan- | i wrote a role | 15:07 |
mhayden | logan-: not yet :/ | 15:08 |
*** yifei has joined #openstack-ansible | 15:08 | |
mhayden | oh, nvm, our corporate firewalls are eating the websockets connections :/ | 15:08 |
logan- | haha | 15:08 |
mhayden | take note on that one, odyssey4me / evrardjp | 15:09 |
odyssey4me | mhayden yep, just had a discussion about that with infra | 15:10 |
odyssey4me | mhayden 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-ansible | 15:10 | |
odyssey4me | it's already passed the xenial test | 15:10 |
evrardjp | logan-: that's true odyssey4me is working on it | 15:10 |
odyssey4me | it may be time to verify that cross-repo testing is working with it | 15:11 |
evrardjp | odyssey4me: I have good examples for that: the metadata | 15:12 |
evrardjp | they should pass everything | 15:12 |
odyssey4me | evrardjp can you kick one off with a depends-on, or shall I put up a noop patch somewhere? | 15:13 |
*** dave-mccowan has quit IRC | 15:13 | |
evrardjp | found a good one. | 15:14 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_glance master: Add OpenStack-Ansible metadata https://review.openstack.org/510487 | 15:14 |
*** hw_wutianwei1 has joined #openstack-ansible | 15:14 | |
*** acormier has joined #openstack-ansible | 15:14 | |
evrardjp | this one ^ passed jenkins, and has no patch since its creation. SO it should pass. | 15:14 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 15:15 |
*** hw_wutianwei has quit IRC | 15:17 | |
*** hw_wutianwei1 is now known as hw_wutianwei | 15:17 | |
evrardjp | we'll probably also have to think about https://review.openstack.org/#/c/512243/ | 15:17 |
*** yifei has quit IRC | 15:21 | |
odyssey4me | yes, no need to move them just yet | 15:22 |
*** acormier has quit IRC | 15:22 | |
odyssey4me | let's get them working as-is, then we can revisit them | 15:22 |
*** drifterza has joined #openstack-ansible | 15:22 | |
odyssey4me | that patch isn't done right anyway - it's supposed to move all those into zuul.d | 15:23 |
openstackgerrit | Logan V proposed openstack/openstack-ansible master: Async clone for git roles https://review.openstack.org/508721 | 15:23 |
odyssey4me | oh I see what was done here - ok, still, rather segregate those into a different folder | 15:23 |
*** yifei has joined #openstack-ansible | 15:23 | |
openstackgerrit | Logan V proposed openstack/openstack-ansible master: Shallow clone roles https://review.openstack.org/509211 | 15:24 |
*** SerenaFeng has quit IRC | 15:25 | |
evrardjp | odyssey4me: that's exactly what I suggested :) | 15:27 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: Disable ceph-ansible NFS gateway by default https://review.openstack.org/512275 | 15:27 |
evrardjp | odyssey4me: the patch doesn't seem to pass zuul https://review.openstack.org/#/c/510487/ | 15:28 |
evrardjp | let me check why | 15:28 |
odyssey4me | evrardjp don't bother - I'm on it | 15:28 |
evrardjp | k | 15:28 |
evrardjp | keep me posted! | 15:28 |
*** andressanchez has joined #openstack-ansible | 15:28 | |
evrardjp | and ty | 15:28 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 15:31 |
mhayden | i 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_984193 | 15:31 |
mhayden | odyssey4me: that WIP patch for zuulv3 repos is looking good w/ansible-hardening | 15:32 |
*** Oku_OS is now known as Oku_OS-away | 15:32 | |
mhayden | just scratching my head on the sudo issue for now | 15:32 |
*** yifei has quit IRC | 15:32 | |
evrardjp | logan-: you may want to have a look at this: https://bugs.launchpad.net/openstack-ansible/+bug/1721912 | 15:32 |
openstack | Launchpad bug 1721912 in openstack-ansible "delegate_facts does not work with container connection plugin" [High,Confirmed] | 15:32 |
evrardjp | mhayden: I am not sure ansible-hardening is in the pattern match | 15:33 |
mhayden | which pattern match? | 15:33 |
mhayden | (this seems to be a pattern) | 15:34 |
* mhayden chuckles | 15:34 | |
*** mrch has quit IRC | 15:34 | |
mhayden | ah there's a playbook that removes sudo access for the zuul user :/ | 15:35 |
logan- | thanks evrardjp | 15:35 |
logan- | https://review.openstack.org/#/c/508509/ passed | 15:36 |
evrardjp | if you have another test to run, that would help, but jmccrory's playbook seem a very contained test | 15:36 |
*** thorst has quit IRC | 15:37 | |
logan- | well i noticed now that i never mentioned in the original bug submit that it was on ocata where i saw this | 15:37 |
evrardjp | we're getting there! | 15:37 |
evrardjp | Oh. | 15:37 |
evrardjp | Yes I am not running on ocata there. | 15:37 |
evrardjp | Let me do the same then | 15:37 |
logan- | so maybe it works on master, which would be great.. maybe just a simple backport of something in plugins | 15:38 |
evrardjp | There is only one way to find out :) | 15:40 |
odyssey4me | evrardjp xenial jobs are switching to voting with https://review.openstack.org/512334 | 15:43 |
*** strattao has joined #openstack-ansible | 15:45 | |
*** markvoelker has quit IRC | 15:47 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 15:54 |
jrosser | odyssey4me: the role test vagrantfiles use the vagrant disk resizing plugin, are the disks actually resized anywhere? | 15:54 |
Tahvok | I am correct to assume that zuul not passing is a known issue? | 15:54 |
odyssey4me | jrosser for centos/suse yes | 15:54 |
odyssey4me | Tahvok yes, busy working on it | 15:54 |
odyssey4me | Tahvok see https://review.openstack.org/#/c/511912/ for role tests and https://review.openstack.org/#/c/508509/ for integrated repo | 15:55 |
Tahvok | Ok, thanks a lot! Holding fingers you'll fix it fast! | 15:55 |
openstackgerrit | Albert Mikaelyan proposed openstack/openstack-ansible master: designate variables for neutron integration https://review.openstack.org/510650 | 15:59 |
mhayden | so apparently openstack-tox removes sudo | 16:00 |
mhayden | but infra is chatting about a solution | 16:00 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 16:00 |
openstackgerrit | Albert Mikaelyan proposed openstack/openstack-ansible-os_neutron master: Add [designate] section in neutron.conf https://review.openstack.org/510654 | 16:00 |
odyssey4me | mhayden it always has removed sudo for the jenkins user | 16:01 |
odyssey4me | oh, actually, not sure about that | 16:01 |
*** dave-mccowan has joined #openstack-ansible | 16:03 | |
*** jafeha has quit IRC | 16:04 | |
evrardjp | logan-: it may also be the ansible version | 16:11 |
*** chyka has quit IRC | 16:12 | |
odyssey4me | evrardjp 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/511912 | 16:12 |
mhayden | odyssey4me: they anticipated that unittests wouldn't need sudo | 16:12 |
*** chyka has joined #openstack-ansible | 16:12 | |
mhayden | i assed it to the zuulv3 issues etherpad | 16:12 |
mhayden | https://etherpad.openstack.org/p/zuulv3-issues | 16:12 |
odyssey4me | mhayden yeah, we should ditch using tox in our new job definitions as we switch to using zuulv3 job defs | 16:13 |
odyssey4me | too many layers, and now we can remove them | 16:13 |
*** cshen_ has joined #openstack-ansible | 16:14 | |
*** gkadam has joined #openstack-ansible | 16:14 | |
mhayden | odyssey4me: use run-tests instead? | 16:14 |
jmccrory | logan- do you know if https://bugs.launchpad.net/openstack-ansible/+bug/1721912 effects pike as well? | 16:15 |
openstack | Launchpad bug 1721912 in openstack-ansible "delegate_facts does not work with container connection plugin" [High,Confirmed] | 16:15 |
odyssey4me | mhayden make run-tests do the setup which nodepool does, but then use zuul playbooks for everything as far as we can | 16:15 |
logan- | jmccrory: i couldn't say. have only tested on ocata at this point | 16:16 |
odyssey4me | mhayden so basically get ansible there, then execute playbooks... but when in openstack-ci ansible's already there so just use it | 16:16 |
jmccrory | hmm ok, i'll dig into that a little more into that this morning, i've only tested master | 16:16 |
evrardjp | jmccrory: logan- Ocata doesn't work, pike works | 16:17 |
evrardjp | I am chery-picking because bissect is not useful | 16:17 |
evrardjp | I will tell you what is working and what is not | 16:18 |
evrardjp | but I expect an ansible 2.3 thing. | 16:18 |
*** gmonteiro has joined #openstack-ansible | 16:18 | |
*** markvoelker has joined #openstack-ansible | 16:20 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 16:24 |
*** cshen_ has quit IRC | 16:25 | |
*** cshen_ has joined #openstack-ansible | 16:28 | |
odyssey4me | evrardjp another issue being resolved with the zuul v3 tests: https://review.openstack.org/512351 | 16:32 |
evrardjp | jmccrory: 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-ansible | 16:35 | |
logan- | gotcha | 16:35 |
*** woodard has joined #openstack-ansible | 16:35 | |
logan- | thanks for looking | 16:35 |
jmccrory | thanks evrardjp | 16:36 |
evrardjp | I am now bumping just to make sure | 16:36 |
evrardjp | in case I am too tired. | 16:36 |
mhayden | odyssey4me: having trouble finding a job in zuulv3 that's just a "basic" job | 16:37 |
mhayden | without tox bells/whistles | 16:37 |
evrardjp | ok very weird. I still see it with plugins checked out in master and ansible bumped to 2.3 | 16:38 |
evrardjp | so I must do something wrong. | 16:38 |
*** cshen_ has quit IRC | 16:39 | |
*** shardy has quit IRC | 16:39 | |
evrardjp | we need more eyes on that. Sorry I am probably too tired. | 16:39 |
odyssey4me | mhayden 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-L359 | 16:40 |
*** cshen_ has joined #openstack-ansible | 16:40 | |
odyssey4me | something similar: https://github.com/openstack-infra/openstack-zuul-jobs/blob/master/zuul.d/jobs.yaml#L392-L399 | 16:41 |
*** drifterza has quit IRC | 16:42 | |
mhayden | okay | 16:43 |
mhayden | i was looking over devstack's jobs too https://github.com/openstack-dev/devstack/blob/master/.zuul.yaml | 16:43 |
odyssey4me | then playbooks for those: https://github.com/openstack-infra/openstack-zuul-jobs/tree/master/playbooks/python-tarball | 16:43 |
odyssey4me | you don't need to use roles at all - you can do tasks straight-up | 16:44 |
odyssey4me | it seems that you always target all hosts though | 16:44 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 16:45 |
evrardjp | odyssey4me: no I have no idea what's wrong with 510487 . I will check tomorrow I am tired now. | 16:45 |
evrardjp | See you tomorrow guys! | 16:45 |
mhayden | enjoy, evrardjp | 16:46 |
odyssey4me | night evrardjp - thanks for checking | 16:46 |
spotz | night | 16:47 |
*** cshen_ has quit IRC | 16:48 | |
*** cshen_ has joined #openstack-ansible | 16:50 | |
*** cshen_ has quit IRC | 16:57 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 17:00 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 17:02 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 17:08 |
*** hw_wutianwei has quit IRC | 17:11 | |
*** mbuil has quit IRC | 17:14 | |
odyssey4me | mhayden also, using the docs might be useful to you: https://docs.openstack.org/infra/zuul/feature/zuulv3/user/config.html#job | 17:19 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_glance master: Add OpenStack-Ansible metadata https://review.openstack.org/510487 | 17:22 |
*** acormier has joined #openstack-ansible | 17:22 | |
*** acormier has quit IRC | 17:27 | |
*** rodolof has quit IRC | 17:28 | |
*** rodolof has joined #openstack-ansible | 17:29 | |
*** SimAloo has joined #openstack-ansible | 17:29 | |
*** stuartgr has quit IRC | 17:40 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 17:41 |
mhayden | odyssey4me: i've been referencing those a lot | 17:42 |
*** dave-mccowan has quit IRC | 17:42 | |
*** esberglu has joined #openstack-ansible | 17:45 | |
*** smatzek has joined #openstack-ansible | 17:45 | |
jmccrory | evrardjp logan- it's definitely a 2.2 problem. same issue when not using OSA's plugins | 17:49 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 17:51 |
*** rodolof has quit IRC | 17:54 | |
*** rodolof has joined #openstack-ansible | 17:55 | |
jmccrory | evrardjp logan- this is the fix. we should be able to backport it to ocata's strategy plugin | 17:59 |
*** dave-mccowan has joined #openstack-ansible | 17:59 | |
jmccrory | https://github.com/ansible/ansible/pull/21856 | 17:59 |
*** vnogin has joined #openstack-ansible | 18:03 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 18:06 |
*** vnogin has quit IRC | 18:07 | |
openstackgerrit | Marc Gariépy (mgariepy) proposed openstack/openstack-ansible master: [DOC] add a setup to refresh facts. https://review.openstack.org/511486 | 18:07 |
*** poopcat has joined #openstack-ansible | 18:07 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 18:11 |
*** poopcat has quit IRC | 18:12 | |
*** markvoelker has quit IRC | 18:16 | |
*** poopcat has joined #openstack-ansible | 18:16 | |
*** markvoelker has joined #openstack-ansible | 18:17 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 18:17 |
*** poopcat has quit IRC | 18:18 | |
*** albertcard1 has joined #openstack-ansible | 18:18 | |
odyssey4me | mhayden note in your review | 18:20 |
*** markvoelker has quit IRC | 18:21 | |
odyssey4me | ok, for any cores around - https://review.openstack.org/#/c/511912/ is ready for review | 18:21 |
odyssey4me | validated 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-jobs | 18:23 |
odyssey4me | I'm heading home, then will get back online to get something going for that. If the tests repo patch can merge meanwhile it'll help | 18:23 |
mhayden | odyssey4me: +2'd | 18:24 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 18:34 |
*** SimAloo has quit IRC | 18:36 | |
*** MasterOfBugs has joined #openstack-ansible | 18:36 | |
*** pramodrj07 has joined #openstack-ansible | 18:39 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 18:45 |
openstackgerrit | Marc Gariépy (mgariepy) proposed openstack/openstack-ansible-lxc_hosts master: Remove the continue option for index download https://review.openstack.org/512386 | 18:50 |
*** rodolof has quit IRC | 18:50 | |
*** rodolof has joined #openstack-ansible | 18:50 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 18:53 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 18:56 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 19:02 |
* mhayden shakes a fist | 19:02 | |
*** cshen_ has joined #openstack-ansible | 19:09 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 19:15 |
*** kylek3h has joined #openstack-ansible | 19:23 | |
*** kylek3h has quit IRC | 19:26 | |
odyssey4me | mhayden why use the multinode as a base? | 19:48 |
mhayden | odyssey4me: no idea -- grasping at straws since it automatically sets up keys for us | 19:48 |
mhayden | devstack uses multinode as a base, then uses one node | 19:48 |
mhayden | only one node is spun up | 19:48 |
odyssey4me | ah, interesting - so that could cut some stuff | 19:48 |
mhayden | yeah, it does all of the iptables + ssh key prep | 19:49 |
odyssey4me | nifty | 19:49 |
mhayden | http://logs.openstack.org/10/512310/22/check/ansible-hardening-functional-centos-7/a67cca2/job-output.txt.gz#_2017-10-16_19_17_03_436430 | 19:49 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 19:50 |
*** markvoelker has joined #openstack-ansible | 19:51 | |
*** markvoelker has quit IRC | 19:51 | |
odyssey4me | interesting how the linters have gone | 19:51 |
*** markvoelker has joined #openstack-ansible | 19:51 | |
odyssey4me | mhayden I don't think you need to set the required-projects with the same repo.... it's automatically included afaik | 19:57 |
*** markvoelker_ has joined #openstack-ansible | 19:57 | |
*** markvoelker has quit IRC | 20:01 | |
openstackgerrit | Marc Gariépy (mgariepy) proposed openstack/openstack-ansible-lxc_hosts master: Remove the continue option for aria2c https://review.openstack.org/512386 | 20:04 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 20:07 |
openstackgerrit | Logan V proposed openstack/openstack-ansible master: [WIP] Implement iptables management https://review.openstack.org/512099 | 20:13 |
*** bjolo has quit IRC | 20:18 | |
dmsimard | odyssey4me, mhayden, evrardjp, logan-, cloudnull: would love input on https://review.openstack.org/#/c/511992/ | 20:19 |
*** thomasD has joined #openstack-ansible | 20:19 | |
odyssey4me | dmsimard ooh, that's nice | 20:19 |
thomasD | hi | 20:20 |
thomasD | i am trying to get the aio working on centos 7 behind a proxy | 20:20 |
odyssey4me | dmsimard will star it to peek through tomorrow - busy doing job revisions now | 20:20 |
thomasD | done the limited connectvity config | 20:20 |
thomasD | but when running openstack-ansible setup-infrastructure.yml | 20:20 |
thomasD | it fails at this step TASK [repo_server : Install repo server packages] | 20:21 |
dmsimard | odyssey4me: np, we very well might end up implementing it for logs.openstack.org, I'm asking for input now :) | 20:21 |
thomasD | here is the log output | 20:21 |
thomasD | https://pastebin.com/FdmkRT2Y | 20:21 |
thomasD | i am not sure if this has someting todo with the proxy conf but i guess not | 20:22 |
openstackgerrit | Merged openstack/openstack-ansible-tests master: Implement zuul v2/v3 role fetch shim https://review.openstack.org/511912 | 20:22 |
thomasD | the /etc/enviroment is set | 20:22 |
*** cshen_ has quit IRC | 20:23 | |
thomasD | maybe someone has an idea | 20:23 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 20:25 |
*** smatzek has quit IRC | 20:26 | |
*** smatzek has joined #openstack-ansible | 20:26 | |
*** mrtenio has quit IRC | 20:27 | |
*** smatzek has quit IRC | 20:30 | |
thomasD | i tried with debug on | 20:31 |
thomasD | openstack-ansible setup-infrastructure.yml -vvv | 20:31 |
thomasD | here is the output. https://pastebin.com/8FUA8cA5 | 20:33 |
thomasD | it looks like the ssh works without password but the lxc-attach hangs forever | 20:33 |
*** pbandark has quit IRC | 20:37 | |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 20:41 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA role jobs https://review.openstack.org/512414 | 20:44 |
odyssey4me | mhayden ^ how do you like them apples? | 20:44 |
*** mwynne has joined #openstack-ansible | 20:46 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA role jobs https://review.openstack.org/512414 | 20:47 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs https://review.openstack.org/512414 | 20:50 |
openstackgerrit | Major Hayden proposed openstack/ansible-hardening master: [WIP] Testing Zuulv3 https://review.openstack.org/512310 | 20:50 |
*** galstrom is now known as galstrom_zzz | 20:55 | |
thomasD | i rebuild the repo container | 20:57 |
thomasD | openstack-ansible setup-hosts.yml --limit aio1_repo_container-794b3a19 | 20:57 |
thomasD | but 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 |
openstackgerrit | Antony Messerli proposed openstack/openstack-ansible-ops master: Update readme to use force flag instead https://review.openstack.org/512423 | 20:59 |
*** smatzek has joined #openstack-ansible | 21:00 | |
*** pbandark has joined #openstack-ansible | 21:00 | |
*** galstrom_zzz is now known as galstrom | 21:01 | |
*** woodard has quit IRC | 21:03 | |
*** smatzek has quit IRC | 21:04 | |
*** chyka has quit IRC | 21:04 | |
*** chyka has joined #openstack-ansible | 21:05 | |
jrosser | cloudnull: dedup takes the aio containers from 19.2G to 3.35G, 6.13x ratio | 21:09 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs https://review.openstack.org/512414 | 21:13 |
*** jwitko_ has joined #openstack-ansible | 21:14 | |
*** thomasD has quit IRC | 21:17 | |
*** jwitko has quit IRC | 21:17 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs https://review.openstack.org/512414 | 21:17 |
*** jwitko_ has quit IRC | 21:19 | |
*** weezS has joined #openstack-ansible | 21:20 | |
prometheanfire | mhayden: this need a recheck? https://review.openstack.org/#/c/507189/ | 21:28 |
*** galstrom is now known as galstrom_zzz | 21:29 | |
*** snowman4839 has joined #openstack-ansible | 21:40 | |
*** snowman48391 has quit IRC | 21:40 | |
*** mgariepy has quit IRC | 21:41 | |
*** jwitko has joined #openstack-ansible | 21:44 | |
*** MasterOfBugs has quit IRC | 21:49 | |
*** pramodrj07 has quit IRC | 21:49 | |
openstackgerrit | Frank Zhang proposed openstack/openstack-ansible-ops master: Exclude elasticsearch from container-destroy task https://review.openstack.org/512431 | 21:54 |
*** mgariepy has joined #openstack-ansible | 21:54 | |
*** vnogin has joined #openstack-ansible | 22:03 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs https://review.openstack.org/512414 | 22:03 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs https://review.openstack.org/512414 | 22:06 |
*** rromans has quit IRC | 22:06 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Initial OSA zuul v3 role jobs https://review.openstack.org/512414 | 22:07 |
*** vnogin has quit IRC | 22:08 | |
*** pmannidi has joined #openstack-ansible | 22:08 | |
jmccrory | odyssey4me 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-ansible | 22:18 | |
*** masber has joined #openstack-ansible | 22:26 | |
*** esberglu has quit IRC | 22:36 | |
*** jwitko has quit IRC | 22:37 | |
*** gouthamr has quit IRC | 22:37 | |
*** aludwar has quit IRC | 22:44 | |
*** aludwar1 has joined #openstack-ansible | 22:44 | |
*** aludwar1 has quit IRC | 22:44 | |
*** rodolof has quit IRC | 22:46 | |
*** lbragstad has quit IRC | 22:57 | |
*** gouthamr has joined #openstack-ansible | 22:58 | |
*** nomatics has joined #openstack-ansible | 22:58 | |
nomatics | During setup-infrastructure.yml --syntax-check I'm getting a KeyError: 'address' from generate.py: container['ansible_host'] = networks[old_address]['address'] | 22:59 |
nomatics | Any ideas on where to debug? | 22:59 |
*** rromans has joined #openstack-ansible | 23:00 | |
nomatics | stable/pike | 23:00 |
*** weezS has quit IRC | 23:01 | |
*** pbandark1 has joined #openstack-ansible | 23:05 | |
*** pbandark has quit IRC | 23:06 | |
*** pbandark1 is now known as pbandark | 23:06 | |
*** pbandark has quit IRC | 23:09 | |
*** esberglu has joined #openstack-ansible | 23:11 | |
*** esberglu has quit IRC | 23:15 | |
*** chyka has quit IRC | 23:22 | |
*** chyka has joined #openstack-ansible | 23:47 | |
*** gokhan is now known as Guest31788 | 23:59 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!