*** david-lyle has joined #openstack-ansible | 00:08 | |
*** craigs has quit IRC | 00:11 | |
*** david-lyle has quit IRC | 00:15 | |
*** jrobinson has joined #openstack-ansible | 00:16 | |
*** kylek3h has joined #openstack-ansible | 00:18 | |
*** thorst has joined #openstack-ansible | 00:25 | |
*** DimGR has quit IRC | 00:26 | |
*** DimGR has joined #openstack-ansible | 00:27 | |
*** jamesdenton has joined #openstack-ansible | 00:29 | |
*** thorst has quit IRC | 00:29 | |
*** manheim has quit IRC | 00:45 | |
deadnull | going to kick off a fresh deploy of ocata tonight! | 00:51 |
---|---|---|
jamesdenton | May the force be with you | 00:51 |
*** weezS has quit IRC | 00:51 | |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-os_ironic stable/newton: Add ldlinux.c32 to the tftp directory https://review.openstack.org/443373 | 00:52 |
deadnull | jamesdenton Thanks... going to see if my connection co-operates, was having issues with random containers on pip installs | 00:53 |
*** ngupta has quit IRC | 00:53 | |
deadnull | also I am just generally frustrated with all Linux distros lately | 00:54 |
*** david-lyle has joined #openstack-ansible | 00:54 | |
*** ngupta has joined #openstack-ansible | 00:54 | |
*** david-lyle has quit IRC | 00:54 | |
*** hw_wutianwei has joined #openstack-ansible | 00:55 | |
*** SerenaFeng has joined #openstack-ansible | 00:56 | |
*** ngupta has quit IRC | 00:59 | |
*** jamesdenton has quit IRC | 01:00 | |
*** Jeffrey4l_ has quit IRC | 01:00 | |
*** schwicht has joined #openstack-ansible | 01:01 | |
*** thorst has joined #openstack-ansible | 01:02 | |
*** thorst has quit IRC | 01:02 | |
*** cuongnv has joined #openstack-ansible | 01:06 | |
*** weezS has joined #openstack-ansible | 01:07 | |
*** esberglu has joined #openstack-ansible | 01:10 | |
*** esberglu has quit IRC | 01:11 | |
*** FrankZhang has quit IRC | 01:11 | |
*** DimGR has quit IRC | 01:11 | |
*** cjloader_ has quit IRC | 01:19 | |
*** weezS has quit IRC | 01:19 | |
*** weezS has joined #openstack-ansible | 01:20 | |
*** cjloader_ has joined #openstack-ansible | 01:20 | |
*** MasterOfBugs has quit IRC | 01:22 | |
*** pmannidi has quit IRC | 01:30 | |
*** sanfern has quit IRC | 01:31 | |
*** deadnull has quit IRC | 01:35 | |
*** adrian_otto has quit IRC | 01:46 | |
*** david-lyle has joined #openstack-ansible | 01:52 | |
*** xdfil_ is now known as xdfil | 02:03 | |
*** thorst has joined #openstack-ansible | 02:03 | |
xdfil | logan- I was talking to a friend who is a big ansible advocate. He was telling me he often uses delegate_to for doing upgrades (not OS, just in general) | 02:07 |
xdfil | pick the last host to upgrade, then delegat_to the tasks to that host and have it upgrade itself last | 02:07 |
xdfil | have ya'll found limitations with that approach | 02:08 |
*** thorst has quit IRC | 02:08 | |
*** phalmos_ has quit IRC | 02:12 | |
cloudnull | sliver: i've never seen that. which playbook was running ? | 02:13 |
cloudnull | anything different on the locals ? | 02:13 |
xdfil | o/ cloudnull | 02:14 |
cloudnull | deadnull tell me about it. it would seem all of the linux's have gone insance. | 02:14 |
cloudnull | o/ xdfil | 02:14 |
*** weezS has quit IRC | 02:14 | |
cloudnull | xdfil: delegate_to works ok. but we've had quite a few issues with it in the past. | 02:15 |
cloudnull | maybe getting better now ? | 02:15 |
xdfil | idk never used it | 02:15 |
cloudnull | it creates connection + 1 so if you have forks 10 and run a delegate_to you really have 11 ssh connections which can cause errors depending on how you have your sshd_config setup. bgmccollum has done a lot of work on that front. | 02:16 |
cloudnull | there have been variable issues and look-up problems in the past. | 02:16 |
cloudnull | we use it where needed though its has been buggy | 02:17 |
*** cathrichardson has quit IRC | 02:17 | |
*** cathrich_ has joined #openstack-ansible | 02:17 | |
xdfil | thanks for that | 02:17 |
xdfil | how about using ansible in conjunction with something like puppetdb. anyone done anything on that front? | 02:18 |
cloudnull | at the rackspace public cloud they were using masterless puppet and ansible orchestration. it seemed to work fairly well. | 02:19 |
cloudnull | i think the openstack-infra team is doing that today | 02:19 |
xdfil | some kind of small db that polls the env at intervals | 02:19 |
cloudnull | ansible has ansible-pull which may fit your usecase | 02:20 |
xdfil | no, not for this i dont think | 02:20 |
xdfil | also i envision this db being written back to when playbooks finish | 02:20 |
xdfil | I guess maybe thats what tower is | 02:21 |
xdfil | but thats too big of a thing | 02:21 |
cloudnull | I've not personally done anything like that. but it does sound like tower | 02:21 |
cloudnull | have a look at https://github.com/ansible-semaphore | 02:21 |
xdfil | I'm think of a tiny little db i can deply as easily as running a playbook is | 02:21 |
cloudnull | its not quite feature complete but its basically ansible-tower light | 02:22 |
*** markvoelker has quit IRC | 02:23 | |
xdfil | people have also responded " you mean facts? " | 02:23 |
*** kjw3 has joined #openstack-ansible | 02:23 | |
xdfil | maybe facts does everything i am thinking | 02:23 |
cloudnull | you can store facts in something like redis and have a call back plugin do some magic | 02:24 |
xdfil | ya know I just realized I could run a playbook from cron (with/without _pull) and have them gather facts from the hosts that I want | 02:25 |
xdfil | independantly | 02:25 |
xdfil | of the playbooks I run manually | 02:25 |
xdfil | thanks for helping me get to here | 02:25 |
xdfil | again | 02:25 |
cloudnull | i have a simple playbook that does just that and posts to an api for fact storage | 02:25 |
cloudnull | https://github.com/cloudnull/cruton/blob/master/playbooks/populate-data.yml | 02:25 |
cloudnull | maybe you could adapt that to do something useful for your usecase | 02:26 |
*** japestinho has joined #openstack-ansible | 02:28 | |
*** ngupta has joined #openstack-ansible | 02:39 | |
*** Jeffrey4l_ has joined #openstack-ansible | 02:39 | |
*** ngupta has quit IRC | 02:41 | |
*** jamesdenton has joined #openstack-ansible | 02:42 | |
*** ngupta has joined #openstack-ansible | 02:42 | |
*** zerda4 has quit IRC | 02:43 | |
*** jamesdenton has quit IRC | 02:45 | |
*** galstrom_zzz is now known as galstrom | 02:48 | |
*** winggundamth has joined #openstack-ansible | 02:49 | |
*** thorst has joined #openstack-ansible | 02:54 | |
*** thorst has quit IRC | 02:54 | |
*** sanfern has joined #openstack-ansible | 02:57 | |
*** Mahe has quit IRC | 02:58 | |
*** Mahe has joined #openstack-ansible | 02:59 | |
*** kjw3 has quit IRC | 03:12 | |
xdfil | cloudnull I have too many placement endpoints, I'm assuming this is a known thing, but is there any consideration I need to take bvefore deleting the duplicates? | 03:16 |
*** thorst has joined #openstack-ansible | 03:16 | |
*** thorst has quit IRC | 03:17 | |
*** SerenaFeng has quit IRC | 03:21 | |
*** markvoelker has joined #openstack-ansible | 03:24 | |
*** markvoelker has quit IRC | 03:29 | |
*** hybridpollo has quit IRC | 03:33 | |
*** hybridpollo has joined #openstack-ansible | 03:33 | |
*** jamesdenton has joined #openstack-ansible | 03:41 | |
*** hybridpollo has quit IRC | 03:41 | |
*** jamesden_ has joined #openstack-ansible | 03:44 | |
*** jamesdenton has quit IRC | 03:45 | |
*** hybridpollo has joined #openstack-ansible | 03:53 | |
*** udesale has joined #openstack-ansible | 03:59 | |
*** sanfern has quit IRC | 04:00 | |
*** schwicht has quit IRC | 04:02 | |
*** jamesden_ has quit IRC | 04:04 | |
*** cjloader_ has quit IRC | 04:06 | |
*** cjloader_ has joined #openstack-ansible | 04:07 | |
*** SerenaFeng has joined #openstack-ansible | 04:12 | |
*** jamielennox is now known as jamielennox|away | 04:13 | |
*** KeithMnemonic has quit IRC | 04:14 | |
*** thorst has joined #openstack-ansible | 04:17 | |
*** crushil has joined #openstack-ansible | 04:20 | |
*** thorst has quit IRC | 04:22 | |
*** chris_hultin|AWA is now known as chris_hultin | 04:24 | |
*** markvoelker has joined #openstack-ansible | 04:25 | |
*** markvoelker has quit IRC | 04:29 | |
*** galstrom is now known as galstrom_zzz | 04:35 | |
*** chris_hultin is now known as chris_hultin|AWA | 04:43 | |
*** gouthamr has quit IRC | 04:46 | |
*** jamielennox|away is now known as jamielennox | 04:47 | |
*** SerenaFeng has quit IRC | 04:53 | |
*** chhavi_ has joined #openstack-ansible | 04:57 | |
*** haasn has quit IRC | 05:00 | |
*** sanfern has joined #openstack-ansible | 05:00 | |
*** sanfern has quit IRC | 05:00 | |
*** sanfern has joined #openstack-ansible | 05:00 | |
*** sanfern has quit IRC | 05:01 | |
*** haasn has joined #openstack-ansible | 05:01 | |
*** jrobinson has quit IRC | 05:03 | |
*** Trident has quit IRC | 05:13 | |
*** thorst has joined #openstack-ansible | 05:18 | |
*** ngupta has quit IRC | 05:19 | |
*** ngupta has joined #openstack-ansible | 05:20 | |
*** thorst has quit IRC | 05:23 | |
*** ngupta has quit IRC | 05:24 | |
*** markvoelker has joined #openstack-ansible | 05:25 | |
*** cjloader_ has quit IRC | 05:28 | |
*** cjloader_ has joined #openstack-ansible | 05:29 | |
*** markvoelker has quit IRC | 05:30 | |
*** jrobinson has joined #openstack-ansible | 05:31 | |
*** acormier has joined #openstack-ansible | 05:31 | |
*** acormier has quit IRC | 05:31 | |
*** acormier has joined #openstack-ansible | 05:31 | |
*** SerenaFeng has joined #openstack-ansible | 05:35 | |
*** yolanda has quit IRC | 05:41 | |
*** acormier has quit IRC | 05:48 | |
*** acormier has joined #openstack-ansible | 05:49 | |
*** chhavi_ has quit IRC | 05:50 | |
*** acormier_ has joined #openstack-ansible | 05:51 | |
*** hybridpollo has quit IRC | 05:53 | |
*** acormier has quit IRC | 05:54 | |
*** Jack_Iv has joined #openstack-ansible | 05:59 | |
*** Amit82 has joined #openstack-ansible | 06:08 | |
Amit82 | Hi All, | 06:08 |
Amit82 | I had deployed Infra Node and Compute Node using OSA Newton 14.0.8 | 06:09 |
Amit82 | I was able to launch an instance and do basic things etc. using Horizon GUI | 06:09 |
*** sanfern has joined #openstack-ansible | 06:10 | |
Amit82 | But my system got rebooted and now after the reboot, Horizon GUI is not accessible "503 Service unavailable" is coming | 06:10 |
*** crushil has quit IRC | 06:10 | |
*** weezS has joined #openstack-ansible | 06:10 | |
mrhillsman | Amit82 are you running Ubuntu 16.04 | 06:11 |
Amit82 | At Infra Node, linux utility container etc. are not having IP assigned to them | 06:11 |
Amit82 | yes, I installed it on Ubuntu 16.04 | 06:11 |
mrhillsman | are you running Ubuntu 16.04 | 06:11 |
mrhillsman | there is a bug unfortunately | 06:11 |
mrhillsman | on your infra node | 06:12 |
mrhillsman | run lxc-system-manage system-rebuild | 06:12 |
mrhillsman | there is an issue where lxc-net is not started because it is masked by default | 06:12 |
mrhillsman | or something around this to where basically the dnsmasq service that is supposed to give out addresses | 06:13 |
mrhillsman | is not running | 06:13 |
*** weezS has quit IRC | 06:14 | |
*** Amit82 has quit IRC | 06:16 | |
*** acormier_ has quit IRC | 06:17 | |
mcarden | On 16.04 there may also be a networking issue on reboots which causes this probelm. Try reducing the 'timeout' value in /etc/dhcp/dhclient.conf from 300 to 30, then reboot. | 06:18 |
mcarden | unmasking and enabling lxc-net did not fix the issue for me | 06:19 |
*** thorst has joined #openstack-ansible | 06:19 | |
*** cjloader_ has quit IRC | 06:22 | |
*** jbadiapa has quit IRC | 06:23 | |
*** thorst has quit IRC | 06:24 | |
*** foutatoro has quit IRC | 06:28 | |
*** Jack_Iv has quit IRC | 06:35 | |
*** Jack_Iv has joined #openstack-ansible | 06:37 | |
*** rabel has joined #openstack-ansible | 06:51 | |
*** jrobinson has quit IRC | 06:54 | |
*** arbrandes1 has joined #openstack-ansible | 07:01 | |
*** arbrandes has quit IRC | 07:03 | |
*** jamielennox is now known as jamielennox|away | 07:09 | |
*** thorst has joined #openstack-ansible | 07:20 | |
*** thorst has quit IRC | 07:24 | |
*** h5t4 has joined #openstack-ansible | 07:25 | |
*** sprvn has joined #openstack-ansible | 07:26 | |
*** jamielennox|away is now known as jamielennox | 07:27 | |
*** Jack_Iv has quit IRC | 07:35 | |
*** rabel has quit IRC | 07:37 | |
*** Jack_Iv has joined #openstack-ansible | 07:53 | |
*** SerenaFeng has quit IRC | 07:53 | |
*** SerenaFeng has joined #openstack-ansible | 07:54 | |
*** rabel has joined #openstack-ansible | 07:55 | |
*** Andrew_jedi has joined #openstack-ansible | 07:56 | |
*** lwiecek has joined #openstack-ansible | 07:56 | |
*** Jack_Iv has quit IRC | 07:58 | |
*** Jack_I has joined #openstack-ansible | 07:58 | |
*** shardy has joined #openstack-ansible | 08:10 | |
*** weezS has joined #openstack-ansible | 08:13 | |
*** acormier has joined #openstack-ansible | 08:18 | |
*** thorst has joined #openstack-ansible | 08:21 | |
*** acormier has quit IRC | 08:22 | |
*** jbadiapa has joined #openstack-ansible | 08:24 | |
*** thorst has quit IRC | 08:25 | |
*** Jack_Iv has joined #openstack-ansible | 08:37 | |
*** DimGR has joined #openstack-ansible | 08:40 | |
*** portante has quit IRC | 08:42 | |
*** portante has joined #openstack-ansible | 08:45 | |
*** markvoelker has joined #openstack-ansible | 08:46 | |
*** Jack_Iv has quit IRC | 08:49 | |
*** weezS has quit IRC | 08:55 | |
*** Jack_Iv has joined #openstack-ansible | 08:57 | |
*** Jack_Iv has quit IRC | 09:02 | |
evrardjp | mgariepy: I saw the PR notification yesterday but I had no laptop, I will check today | 09:03 |
*** cuongnv has quit IRC | 09:03 | |
admin0 | morning | 09:08 |
admin0 | is there a way to openstack-anisble that i can install/configure the opencontrail automatically ? | 09:11 |
*** manheim has joined #openstack-ansible | 09:12 | |
*** karimb has joined #openstack-ansible | 09:14 | |
*** manheim has quit IRC | 09:20 | |
*** thorst has joined #openstack-ansible | 09:22 | |
*** cuongnv has joined #openstack-ansible | 09:26 | |
evrardjp | admin0: contrail is not included | 09:30 |
evrardjp | but patches welcome | 09:30 |
admin0 | :D | 09:31 |
evrardjp | I think contrail is a deployment on its own, but the integration would be welcomed | 09:31 |
*** thorst has quit IRC | 09:31 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-lxc_hosts master: Moving selinux bits into lxc_selinux https://review.openstack.org/441167 | 09:34 |
*** vnogin has joined #openstack-ansible | 09:34 | |
admin0 | evrardjp: calicio is already included right ? | 09:35 |
evrardjp | mhayden: could you revote? https://review.openstack.org/#/c/441167/ | 09:35 |
evrardjp | admin0: calico yes | 09:35 |
evrardjp | logan-: introduced it | 09:35 |
admin0 | do you have some info so that i can test it and work on the docs like “ osa provides both neutron and calico “ .. this is a table of pros and cons on when you might want to use one or the other | 09:36 |
admin0 | https://docs.openstack.org/developer/openstack-ansible-os_neutron/app-calico.html — this tells HOW .. not the WHY | 09:37 |
admin0 | ignore .. https://www.projectcalico.org/learn/ | 09:38 |
evrardjp | well I don't think it's osa work to do the architecture for ppl, the why is deployer's choice | 09:38 |
odyssey4me | admin0 this is an open source project, not a commercial product | 09:38 |
admin0 | which explains the faster support/integration | 09:39 |
odyssey4me | it's not for the project to explain the benefits of one choice or another - that's the realm of competitive conjecture and does not belong in a project like this | 09:39 |
odyssey4me | you will have to do your own subjective analysis based on your use-case | 09:40 |
admin0 | instead of benefits, i was more looking for ( do I miss specific openstack feature like lbaas, fwaas, vpnaas etc ) if i switch from one to another | 09:40 |
odyssey4me | go and take a look at the driver documentation or the websites of each project | 09:40 |
odyssey4me | I think you'll find that each has their own way of doing things, they don't compare on the same grounds | 09:40 |
admin0 | i have a free cluster.. i will test this today ..see how far i go | 09:44 |
*** sanfern has quit IRC | 09:45 | |
*** Jack_Iv has joined #openstack-ansible | 09:47 | |
*** Jack_Iv has quit IRC | 09:49 | |
*** chhavi_ has joined #openstack-ansible | 09:50 | |
*** electrofelix has joined #openstack-ansible | 09:52 | |
*** sanfern has joined #openstack-ansible | 10:03 | |
*** cuongnv has quit IRC | 10:05 | |
*** SerenaFeng has quit IRC | 10:06 | |
*** sanfern has quit IRC | 10:08 | |
*** SerenaFeng has joined #openstack-ansible | 10:08 | |
*** manheim has joined #openstack-ansible | 10:18 | |
*** deadnull has joined #openstack-ansible | 10:19 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-os_keystone stable/newton: Ensure the log folder exists https://review.openstack.org/443061 | 10:19 |
*** manheim has quit IRC | 10:19 | |
*** manheim has joined #openstack-ansible | 10:20 | |
*** manheim has quit IRC | 10:22 | |
*** karimb has quit IRC | 10:23 | |
*** manheim has joined #openstack-ansible | 10:24 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible-tests master: Improve rpm/repos logging https://review.openstack.org/441446 | 10:24 |
*** weezS has joined #openstack-ansible | 10:27 | |
*** Jack_I has quit IRC | 10:28 | |
*** Jack_I has joined #openstack-ansible | 10:29 | |
*** udesale has quit IRC | 10:33 | |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [Docs] Add role maturity matrix builder https://review.openstack.org/437969 | 10:41 |
*** Jack_Iv has joined #openstack-ansible | 10:41 | |
*** sprvn has quit IRC | 10:53 | |
*** vnogin has quit IRC | 10:57 | |
*** Jack_Iv has quit IRC | 10:58 | |
odyssey4me | andymccr can we get this merged so that the group can get on with their development? https://review.openstack.org/436731 | 10:59 |
andymccr | yeah seems fine to me | 11:00 |
odyssey4me | another problem with setuptools/pip: https://review.openstack.org/443358 | 11:01 |
openstackgerrit | Merged openstack/openstack-ansible-os_monasca-ui master: Openstack ansible monasca-ui role first cut https://review.openstack.org/436731 | 11:05 |
openstackgerrit | Merged openstack/openstack-ansible-ops master: Allow environment variable overrides https://review.openstack.org/443324 | 11:06 |
openstackgerrit | Merged openstack/openstack-ansible-lxc_hosts master: Moving selinux bits into lxc_selinux https://review.openstack.org/441167 | 11:07 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: Remove epel form bootstrap-host installation. https://review.openstack.org/443301 | 11:07 |
openstackgerrit | Merged openstack/openstack-ansible master: Updated from global requirements https://review.openstack.org/443358 | 11:08 |
odyssey4me | andymccr evrardjp can you review https://review.openstack.org/443215 please? it's holding back an os_nova patch from merging which fixes CentOS for master | 11:09 |
*** weezS has quit IRC | 11:09 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-lxc_hosts stable/ocata: Moving selinux bits into lxc_selinux https://review.openstack.org/443574 | 11:10 |
openstackgerrit | Merged openstack/openstack-ansible master: [DOC] Fix doc about EPEL https://review.openstack.org/443299 | 11:10 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: [DOC] Fix doc about EPEL https://review.openstack.org/443575 | 11:10 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_nova stable/ocata: Changed libvirt unit name https://review.openstack.org/443576 | 11:11 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: Check if env.d folder exists for upgrades https://review.openstack.org/443578 | 11:12 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/newton: Check if env.d folder exists for upgrades https://review.openstack.org/443579 | 11:12 |
asettle | odyssey4me: I dunno why man, but my filters friggin HATE your reviews. You are literally one of the only people my filters won't work for. ALl your review spam goes into my bloody junk box. | 11:12 |
*** furlongm has quit IRC | 11:13 | |
evrardjp | odyssey4me: sir yes sir | 11:14 |
*** manheim has quit IRC | 11:14 | |
*** karimb has joined #openstack-ansible | 11:14 | |
*** stuartgr has joined #openstack-ansible | 11:17 | |
*** karimb has quit IRC | 11:18 | |
Andrew_jedi | Hello folks! | 11:21 |
Andrew_jedi | I am wondering whether i can use this role to install monasca in Ocata. https://github.com/openstack/openstack-ansible-os_monasca/tree/stable/ocata | 11:22 |
Andrew_jedi | ofcourse, there are scripts in the extras folder which can be used https://github.com/openstack/openstack-ansible-os_monasca/tree/stable/ocata/extras | 11:24 |
Andrew_jedi | before i start working on this, i just wanted to know whether it is a feasible idea to use this role at this point. | 11:26 |
*** manheim has joined #openstack-ansible | 11:27 | |
*** thorst has joined #openstack-ansible | 11:28 | |
*** vishwanathj has quit IRC | 11:29 | |
*** vishwanathj has joined #openstack-ansible | 11:29 | |
andymccr | Andrew_jedi: i think that role needs a bit of love, although I imagine it will setup the baseline of things you need, but i wouldn't expect it to just work like some of the other roles... | 11:32 |
Andrew_jedi | andymccr: Thanks a lot of replying ... this is exactly what i wanted to know ! | 11:32 |
*** markvoelker has quit IRC | 11:33 | |
*** thorst has quit IRC | 11:33 | |
pjm6 | morning all :) | 11:42 |
*** Jack_Iv has joined #openstack-ansible | 11:42 | |
*** chhavi_ has quit IRC | 11:43 | |
*** SerenaFeng has quit IRC | 11:46 | |
*** Matias_ has quit IRC | 11:56 | |
*** Matias_ has joined #openstack-ansible | 11:57 | |
admin0 | \o | 11:57 |
*** chhavi_ has joined #openstack-ansible | 11:58 | |
evrardjp | Andrew_jedi: I don't know the level of maturity of monasca to be honest. | 11:58 |
Andrew_jedi | evrardjp: I saw this very good presentation on monasca, this also explains what monasca can or cannot do. It is a 2 year old project, i suppose it will atleast take care of process monitoring ... Have you played with monasca ? | 12:01 |
Andrew_jedi | evrardjp: https://www.youtube.com/watch?v=NV25YH9ChQo | 12:01 |
Andrew_jedi | However, people do complain about the complexity of configuring it correctly. | 12:02 |
*** kiriakos has joined #openstack-ansible | 12:03 | |
*** SerenaFeng has joined #openstack-ansible | 12:05 | |
kiriakos | Hi all, how am I supposed to run os tempest tests in OSA? I have run the os-tempest-install playbook but the tempest cli doesn't appear in my utility container. | 12:08 |
pjm6 | Andrew_jedi: monasca is to profilling performance of OS services and status right? | 12:09 |
*** adogrant has joined #openstack-ansible | 12:10 | |
adogrant | Hi all | 12:10 |
kiriakos | OH, i also tried virtualenv /openstack/venvs/tempest-15.0.0/ but that returns "OSError: [Errno 40] Too many levels of symbolic links" | 12:11 |
adogrant | We are running OSA Mitaka which is ceph backed. Currently every time we either try and do a snapshot or upload an image using glance we get the following error: Error finding address for http://10.6.0.3:9292/v2/images/8f041d18-bce1-4d31-9022-f61492dd21ef/file: [Errno 32] Broken pipe | 12:12 |
adogrant | glance then just deletes the image - has anyone come across this before? I have had a look around and some people are suggesting it is an issue with the python-rbd libraries. We are using the ones OSA installed by default running Ubuntu Trusty. | 12:13 |
Andrew_jedi | pjm6: Can i recommend this starting from 4:35, https://www.youtube.com/watch?v=NV25YH9ChQo | 12:13 |
odyssey4me | kiriakos which series/branch/tag are you using? | 12:14 |
odyssey4me | ah, 15.0.0 | 12:14 |
kiriakos | 15.0.0.0rc2 | 12:14 |
Andrew_jedi | kiriakos: Are you using glance v2 ? | 12:15 |
*** vnogin has joined #openstack-ansible | 12:15 | |
pjm6 | thanks Andrew_jedi , will take a look at it | 12:15 |
kiriakos | Yes | 12:15 |
odyssey4me | when you run the utility playbook it should prep the utility container for it all and it executes tempest from inside there by default | 12:15 |
odyssey4me | you should find a starting workspace there already | 12:15 |
kiriakos | You mean /openstack/venvs/tempest-15.0.0/ in the utility container? | 12:15 |
Andrew_jedi | adogrant: Are you using glance v2 ? | 12:16 |
Andrew_jedi | adogrant: Do you have this "show_image_direct_url = True" in your nova.conf ? | 12:17 |
adogrant | Andrew_jedi: We do not have that setting in nova.conf | 12:18 |
adogrant | is that needed? | 12:18 |
*** vnogin has quit IRC | 12:19 | |
odyssey4me | kiriakos yes | 12:19 |
odyssey4me | in the os_tempest role's install process it does this: https://github.com/openstack/openstack-ansible-os_tempest/blob/master/tasks/tempest_install.yml#L94 | 12:19 |
odyssey4me | that ensures that all the paths are correct | 12:20 |
kiriakos | aaah! | 12:20 |
kiriakos | got it | 12:20 |
odyssey4me | in https://github.com/openstack/openstack-ansible-os_tempest/blob/master/tasks/tempest_run.yml you can then see how it initialises and executes the tests | 12:20 |
odyssey4me | the os-tempest-install role actually executesthe role install: https://github.com/openstack/openstack-ansible/blob/master/playbooks/os-tempest-install.yml | 12:21 |
odyssey4me | but that will only execute if 'tempest_install' or 'tempest_run' are set to true/yes: https://github.com/openstack/openstack-ansible/blob/master/playbooks/setup-openstack.yml#L41 | 12:21 |
Andrew_jedi | adogrant: Umm, hold on, you said you cannot even upload the image. Can you please show us the logs from galnce-api ? | 12:21 |
odyssey4me | in an AIO that is part of the bootstrapping | 12:22 |
adogrant | @Andrew_jedi sure I will just attempt a snapshot and print logs | 12:22 |
*** chhavi_ has quit IRC | 12:24 | |
adogrant | sorry forgot to answer your first question - it is V1 we are using - here are the logs, not much use I don't think. | 12:27 |
adogrant | Mar 9 12:23:48 management-2-glance-container-4490c46a glance-api: 2017-03-09 12:23:42.735 2097 INFO eventlet.wsgi.server [req-0cf20dee-07b3-48ca-8d1b-ec382e24e0ea 4c91f07132454a97b21fff35402b7825 4a6213a64312482896130efc3047195c - - -] 10.6.1.223,10.6.0.39 - - [09/Mar/2017 12:23:42] "HEAD /v1/images/dcfd4687-593e-4505-ac6f-418925f765d2 HTTP/1.1" 200 896 0.027951 | 12:27 |
kiriakos | OK, so is set the tempest_run to true and os-tempest-install now tries to run the tests after installation. but I get the same python error as I get when trying manually inside the util container | 12:28 |
kiriakos | fatal: [os-controller-1_utility_container-228e88c2]: FAILED! => {"changed": false, "cmd": ". /openstack/venvs/tempest-15.0.0/bin/activate\n tempest run --serial --whitelist-file /openstack/venvs/tempest-15.0.0/workspace/etc/tempest_whitelist.txt", "delta": "0:00:00.012976", "end": "2017-03-09 13:26:18.525473", "failed": true, "rc": 126, "start": "2017-03-09 13:26:18.512497", "stderr": "/bin/bash: /openstack/venvs/tempest- | 12:28 |
odyssey4me | adogrant please make use of a pastebin or similar service for log pasting | 12:28 |
adogrant | oh sorry will do | 12:28 |
odyssey4me | kiriakos is this an AIO or a multi-node environment? | 12:28 |
odyssey4me | kiriakos please also see the pastebin request above | 12:28 |
kiriakos | Its a multi node | 12:29 |
kiriakos | Yes, I will. Sorry. | 12:29 |
kiriakos | http://pastebin.com/rcHEkVfc O:-) | 12:29 |
*** vnogin has joined #openstack-ansible | 12:29 | |
odyssey4me | kiriakos so it sounds like the venv is somewhow broken - is this an environment that's totally fresh, or has it been upgraded from a previous RC or something? | 12:30 |
odyssey4me | the reason I ask is that we execute tempest before allowing any commits, so it runs for every commit... so we'd know if something was broken | 12:30 |
odyssey4me | kiriakos can you list the conf.d files you have? | 12:31 |
kiriakos | Its a fresh install | 12:31 |
*** smatzek has joined #openstack-ansible | 12:31 | |
kiriakos | in the util container? | 12:31 |
*** furlongm has joined #openstack-ansible | 12:31 | |
kiriakos | oh, You mean in the OSA repo? | 12:31 |
odyssey4me | kiriakos the files in your /etc/openstack_deploy/conf.d directory which allocate hosts to host groups | 12:32 |
*** smatzek_ has joined #openstack-ansible | 12:32 | |
odyssey4me | it informs me of the tempest plugins that may have been activated | 12:32 |
*** shardy is now known as shardy_lunch | 12:32 | |
kiriakos | odyssey4me http://pastebin.com/mQkMAbRJ | 12:33 |
odyssey4me | a quick test around this issue will be to either destroy and rebuild the utility containers entirely, to try another utility container on another infra host, or to delete the venv and re-execute the os-tempest playbook | 12:33 |
kiriakos | hang on, I'll try the last option first | 12:33 |
odyssey4me | kiriakos ok, so you have no host allocations in conf.d - I guess you have them in openstack_user_config.yml then? | 12:34 |
*** retreved has joined #openstack-ansible | 12:34 | |
adogrant | Andrew_jedi http://pastebin.com/m0pF2gdD - doesn't seem to help much | 12:34 |
odyssey4me | kiriakos check that the tempest execution is happening on the same container you're working with | 12:34 |
kiriakos | odyssey4me, yes they are all in there. Do I need to allocate a host to tempest? | 12:35 |
odyssey4me | kiriakos ok, then I need to know what host groups you have populated in openstack_user_config | 12:35 |
*** smatzek has quit IRC | 12:36 | |
kiriakos | it's not that much actually. | 12:36 |
*** thorst has joined #openstack-ansible | 12:37 | |
Andrew_jedi | adogrant: This are just 2 lines from the logs. Could you please show me the output of "grep -inr "error" glance-api.log" and "grep -inr "error" glance-registry.log" | 12:37 |
*** SerenaFeng has quit IRC | 12:38 | |
kiriakos | odyssey4me http://pastebin.com/8uaqV1R1 | 12:38 |
odyssey4me | kiriakos ok, so the basic compute kit then - nothing special | 12:39 |
kiriakos | so everything except copute resides on a single node. Only compute is factored out | 12:39 |
odyssey4me | yeah, that also means there are no tempest plugins being installed | 12:39 |
kiriakos | correct :-) | 12:39 |
kiriakos | oh, what? | 12:39 |
mhayden | morning | 12:39 |
adogrant | Andrew_jedi http://pastebin.com/d5PQASxA and http://pastebin.com/fgg2vAS6 | 12:39 |
kiriakos | odyssey4me, why? how come? | 12:40 |
odyssey4me | well, it means that only tempest and its built-in tests are included in the venv.... no plugins are added from other repositories | 12:40 |
mhayden | mgariepy: i saw your msg about nova needing epel -- did you put a patch up for that? | 12:40 |
odyssey4me | tempest is a little weird that way - it's a legacy thing | 12:40 |
odyssey4me | eventually all tests will be provided through plugins from other repositories, but the compute kit is still all in the tempest code base itself | 12:40 |
Andrew_jedi | adogrant: There you go, looks like an issue with your glance-api service. | 12:41 |
odyssey4me | right, so if you wipe the venv in all the utility containers, then re-execute the os-tempest-install playbook, what happens? | 12:41 |
kiriakos | odyssey4me, I just want to validate compute and networking is running correctly with my setup, what do I need to do for that? | 12:41 |
*** chhavi_ has joined #openstack-ansible | 12:42 | |
odyssey4me | kiriakos tempest is a way to do that which should work just fine | 12:42 |
odyssey4me | however note that that playbook/role does setup a demo account and user with a terribly easy to guess username/password | 12:42 |
adogrant | Andrew_jedi yea I am wondering if it is something to do with haproxy | 12:43 |
kiriakos | OK, I'm re running os-tempest-install.yml now. (might take a while my dev rig is on rotary drives) | 12:43 |
odyssey4me | adogrant see line 13 you're getting a 504 response | 12:43 |
odyssey4me | it's unlikely to be haproxy, more likely to be config | 12:44 |
odyssey4me | adogrant Andrew_jedi note that glance-registry only manages the entries in the glance database... glance-api does all the heavy lifting | 12:44 |
adogrant | odyssey4me - ok thanks, I will look into the config. Strange it only stopped working today | 12:45 |
admin0 | Andrew_jedi: let me know how the monasca install goes | 12:45 |
adogrant | thanks for all of the help guys, I appreciate it | 12:45 |
*** shardy_lunch has quit IRC | 12:45 | |
*** winggundamth has quit IRC | 12:45 | |
odyssey4me | adogrant it could also be that the back-end store is broken in some way | 12:45 |
*** shardy_lunch has joined #openstack-ansible | 12:45 | |
adogrant | odyssey4m3 ok thanks, I will look into both glance and the back-end store to see what might be causing it | 12:46 |
kiriakos | odyssey4me, the run exited with an error at step "Generate tempest test whitelist" http://pastebin.com/as6ktCxH | 12:46 |
kiriakos | it seems it doesn't like the missing directory. | 12:47 |
odyssey4me | kiriakos odd, becasue it created in in line 15 | 12:47 |
kiriakos | Hang on... | 12:47 |
odyssey4me | oh hang on, it didn't | 12:48 |
kiriakos | the directory does exist in that container | 12:48 |
kiriakos | That's confusing.... | 12:49 |
odyssey4me | hmm, I think you may need to wipe the venv and the workspace | 12:49 |
kiriakos | I'm running the play again | 12:49 |
odyssey4me | wipe those and retry | 12:49 |
*** fguillot has joined #openstack-ansible | 12:49 | |
odyssey4me | I think we may need to add some extra fencing in here for edge cases | 12:49 |
*** Spokozord has joined #openstack-ansible | 12:51 | |
*** schwicht has joined #openstack-ansible | 12:53 | |
*** askb has quit IRC | 12:54 | |
*** schwicht has quit IRC | 12:54 | |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-os_nova stable/ocata: Add EPEL for nova-placement remove postgresql libs https://review.openstack.org/443610 | 12:55 |
Spokozord | Isn't postgresql better? | 12:56 |
kiriakos | odyssey4me deleting the workspace didn't change the outcome. I'll rebuild the containers now | 12:57 |
mgariepy | mhayden, i was about, but i found out a few other things to patch up. | 12:58 |
mhayden | alrighty | 12:58 |
mhayden | i just backported your other epel patch for nova | 12:58 |
mgariepy | mhayden, Can I edit your patch ? | 12:59 |
mhayden | mgariepy: go right ahead! | 13:00 |
* mhayden takes no offense when his patches are edited | 13:00 | |
odyssey4me | mhayden mgariepy it won't work until https://review.openstack.org/443215 merges anyway :p | 13:00 |
odyssey4me | also, cores - we have a ton of patches in flight for ocata - reviews appreciated: https://review.openstack.org/#/q/branch:stable/ocata+project:%255Eopenstack/openstack-ansible.*+status:open | 13:01 |
odyssey4me | and a similar bunch for newton: https://review.openstack.org/#/q/branch:stable/newton+project:%255Eopenstack/openstack-ansible.*+status:open | 13:01 |
mhayden | mgariepy: would you rather i abandon that backport so you can make the right patch in master? | 13:01 |
mhayden | we could backport a combined one | 13:01 |
mgariepy | ha, | 13:02 |
mgariepy | well. is it too late to edit https://review.openstack.org/#/c/442682/ ? | 13:02 |
mhayden | odyssey4me: waiting on gertty to do the needful and i'll jump on some of those | 13:02 |
mhayden | mgariepy: ah nvm, i forgot that the master patch hasn't merged :P | 13:03 |
mhayden | edit away | 13:03 |
mhayden | i abandoned the backport | 13:03 |
* mhayden seeks more coffee | 13:03 | |
odyssey4me | mgariepy it's unmerged, so you can edit it | 13:04 |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible-os_nova master: Add EPEL for nova-placement remove postgresql libs https://review.openstack.org/442682 | 13:05 |
mgariepy | wait a bit on this one. | 13:05 |
odyssey4me | mgariepy please mark -W so that no-one else tries to review it | 13:05 |
odyssey4me | oh nvm, you've updated already | 13:05 |
mgariepy | haha | 13:05 |
mgariepy | it was fully reviewed.. not sure why it didn't merge. | 13:06 |
mhayden | mgariepy: what time zone are you in? | 13:06 |
odyssey4me | mgariepy because it was dependent on the neutron patch | 13:06 |
mgariepy | eastern | 13:06 |
*** esberglu has joined #openstack-ansible | 13:06 | |
mhayden | ah oka | 13:06 |
mgariepy | i live in Sherbrooke, Quebec, Canada | 13:06 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests master: Make tempest execute by default https://review.openstack.org/443621 | 13:09 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_tempest master: Do not make tempest execute by default https://review.openstack.org/443622 | 13:11 |
openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts master: Remove EPEL https://review.openstack.org/443307 | 13:12 |
*** sanfern has joined #openstack-ansible | 13:13 | |
mgariepy | mhayden, did you saw my message about epel being installed/ removed over an over again ? | 13:16 |
*** kiriakos has quit IRC | 13:17 | |
andymccr | epel-ception | 13:18 |
mhayden | i missed that | 13:18 |
mhayden | i left halfway through the day yesterday as i was pretty sick | 13:18 |
andymccr | you feelin' better mhayden? | 13:19 |
mgariepy | mhayden, the epel remove / install / remove / install stuff in this is not so awesome in this one: http://logs.openstack.org/82/442682/3/check/gate-openstack-ansible-os_nova-ansible-func-centos-7-nv/a19a506/console.html | 13:20 |
mgariepy | it's not great for the tests in theory it shouldn't be a problem on real deployment but still. it's not awesome. | 13:21 |
mhayden | i see epel-release getting removed 3x | 13:22 |
mhayden | what if we just applied EPEL everywhere but we bump the RDO priority to 50 across the board? | 13:22 |
mhayden | that would mean we only install it once inside the container cache | 13:23 |
mhayden | and once on each host | 13:23 |
mhayden | and never mess with it again | 13:23 |
mgariepy | for a quick fix i guess it would be faster, but i thinkg we still need to cleanup dependency stuff to eliminate epel dep that aren't really needed. | 13:24 |
mhayden | true | 13:26 |
mgariepy | and in some case it can lead to serious-ish issue like the rabbitmq one. | 13:27 |
*** shardy_lunch is now known as shardy | 13:27 | |
mhayden | well, if RDO is at 50 and EPEL is at 99 -- the erlang deps should come from rdo | 13:28 |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/ocata: Update test set and use test plugins https://review.openstack.org/443215 | 13:28 |
mhayden | so would we install EPEL in openstack_hosts and lxc-container-create? | 13:29 |
mhayden | trying to think about the best place to do it | 13:29 |
*** schwicht_at_work has joined #openstack-ansible | 13:30 | |
mgariepy | one or the other and a todo to create a repo_config role at some point ? | 13:30 |
mgariepy | it would be cleaner and ensure we don't mess with repos in roles. | 13:31 |
openstackgerrit | Merged openstack/openstack-ansible-os_horizon stable/newton: Ensure the log folder exists https://review.openstack.org/443276 | 13:33 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [Docs] Add role maturity matrix builder https://review.openstack.org/437969 | 13:34 |
mgariepy | andymccr, odyssey4me evrardjp any thought on this one ? | 13:34 |
openstackgerrit | Jean-Philippe Evrard proposed openstack/openstack-ansible master: [Docs] Add role maturity matrix builder https://review.openstack.org/437969 | 13:34 |
evrardjp | on which one? | 13:35 |
odyssey4me | mgariepy having a role which manages repositories would still require you to inform it of which repositories need to be configured for each repo | 13:35 |
odyssey4me | so I don't see how it would help all that much | 13:35 |
*** woodard has joined #openstack-ansible | 13:35 | |
evrardjp | well I think EPEL and RDO are like UCA | 13:36 |
evrardjp | a necessary evil (if evil is the name) | 13:36 |
evrardjp | so let's just use pip_install. | 13:36 |
mgariepy | my idea was more about having a single role that manage the repos | 13:36 |
evrardjp | :p | 13:36 |
admin0 | can’t we just use EPEL all the way ? | 13:36 |
evrardjp | nah that's the problem I think | 13:36 |
mhayden | evrardjp: but pip_install isn't run everywhere | 13:36 |
evrardjp | so that's why we can't use pip_install | 13:36 |
mhayden | it is run in most places though | 13:37 |
mgariepy | drop centos and ubuntu let's do LFS ;p | 13:37 |
evrardjp | haha | 13:37 |
mhayden | gentoo? | 13:37 |
* mhayden pages prometheanfire | 13:37 | |
evrardjp | :D | 13:37 |
mgariepy | lol | 13:37 |
evrardjp | more seriously, where do you need it? | 13:37 |
evrardjp | I thought we planned to remove epel, and find workarounds for what was still in need for it | 13:37 |
evrardjp | with lowering prio | 13:37 |
mgariepy | we need it at some places. for hitoric - or not dependency | 13:38 |
mgariepy | historic** | 13:38 |
evrardjp | I'd be happy to understand by having more details :p | 13:38 |
openstackgerrit | Merged openstack/openstack-ansible-os_horizon stable/ocata: Ensure the log folder exists https://review.openstack.org/443263 | 13:38 |
evrardjp | if we need to install it in a role x , we should just do it there? | 13:39 |
*** Andrew_jedi has quit IRC | 13:39 | |
mgariepy | http://logs.openstack.org/82/442682/3/check/gate-openstack-ansible-os_nova-ansible-func-centos-7-nv/a19a506/console.html | 13:39 |
mgariepy | evrardjp, it's not great for tests, | 13:39 |
mhayden | yeah, we must ensure that EPEL/RDO are both installed and RDO is properly prioritized, that's the issue | 13:39 |
mgariepy | pip_install purge it and keystone add it, then pip remove it ,and cinder will add it. etc.. | 13:39 |
mhayden | why don't we install EPEL/RDO, set RDO priority in openstack_hosts and pip_install and be done? | 13:40 |
mgariepy | ok let's do it like that in both openstack-hosts and container cache. | 13:40 |
openstackgerrit | Merged openstack/openstack-ansible-tests master: Improve rpm/repos logging https://review.openstack.org/441446 | 13:41 |
andymccr | mhayden: that sounds most sensible to me right now | 13:41 |
*** karimb has joined #openstack-ansible | 13:41 | |
mhayden | anyone object if i go run with that? | 13:41 |
mgariepy | we still can revisit if it causes issue. | 13:41 |
Spokozord | Guys, Im trying to deploy openstack in openstack with official openstack-ansible playbooks with everything on one VLAN, but have some fails with lxc and network interfaces, as I dont want to change them since they are on openstack's dhcp network. Is it even possible to use it with some simpler configuration with only keystone(+mysql+rabbitmq)+neutron+glance+nova+horizon, and without the rest | 13:44 |
Spokozord | of optional stuff? | 13:44 |
mgariepy | mhayden, wouldn't only openstack_hosts enough ? https://github.com/openstack/openstack-ansible-lxc_hosts/blob/master/vars/redhat-7.yml#L41 | 13:45 |
mhayden | mgariepy: but we only build that cache once | 13:45 |
mhayden | that wouldn't help existing containers | 13:45 |
mgariepy | ha ok. | 13:45 |
xgerman | wonder if somebody can assist with the gate failure we are seeing with https://review.openstack.org/#/c/422062/12 | 13:47 |
mhayden | but it should be in the cache as well | 13:47 |
mhayden | would need to be in 1) openstack hosts, 2) pip-install, 3) container cache | 13:47 |
mgariepy | if it's there when the cache is created it will be copied over anyway. | 13:48 |
mhayden | right | 13:49 |
mhayden | and pip_install should move quickly through that | 13:49 |
evrardjp | mhayden: mgariepy, so I think consistency is good, so if we define it with openstack hosts pip install and container cache with the same prio it should be fine indeed | 13:49 |
*** klamath has joined #openstack-ansible | 13:49 | |
evrardjp | it's like uca | 13:49 |
*** klamath has quit IRC | 13:49 | |
mgariepy | evrardjp, what's wrong with uca? | 13:50 |
evrardjp | well more or less, because uca don't need host :p | 13:50 |
evrardjp | well let's forget what I said, go for it :p | 13:50 |
*** klamath has joined #openstack-ansible | 13:50 | |
mgariepy | uca is more like rdo no ? | 13:50 |
evrardjp | I think they should be treated the same way | 13:51 |
evrardjp | that's what I meant | 13:51 |
*** schwicht_at_work has quit IRC | 13:51 | |
evrardjp | I think we should rethink the bootstrap of a host/container | 13:51 |
evrardjp | pip_install isn't only pip installing anymore | 13:51 |
*** chhavi_ has quit IRC | 13:51 | |
evrardjp | and is not included everywhere | 13:52 |
evrardjp | but certain of its uses are good | 13:52 |
*** chhavi_ has joined #openstack-ansible | 13:52 | |
evrardjp | so let's work on this later, and just do the openstack hosts change, pip install change and lxc container create change for EPEL, and think later of long term solutions | 13:52 |
Spokozord | Hey, is it possible to deploy openstack-ansible playbooks bare-metal-like and not in lxc containers? | 13:53 |
evrardjp | well that's how I see it, I'm not forcing anyone :) | 13:53 |
*** fabg has joined #openstack-ansible | 13:53 | |
mgariepy | mhayden, do you take care of the 3 roles or i should ? | 13:54 |
*** SerenaFeng has joined #openstack-ansible | 13:57 | |
mgariepy | should we revert : https://review.openstack.org/#/c/443575/1 ? | 13:57 |
mhayden | mgariepy: i'm patching them | 13:57 |
mgariepy | ok. | 13:57 |
mhayden | oh, i guess we do need to update docs, too :P | 13:58 |
mhayden | i'll patch run_tests.sh later today | 13:58 |
asettle | PLEASE FOR THE LOVE OF GOD UPDATE THE DOCS | 13:58 |
*** cathrichardson has joined #openstack-ansible | 13:58 | |
* asettle enters dramatically | 13:58 | |
mhayden | just asettle down here | 13:58 |
asettle | HA HA | 13:58 |
asettle | I DARE YOU TO DEFY ME TODAY mhayden | 13:58 |
* asettle storms around the room | 13:58 | |
mgariepy | well this patch is not bad, as it's not needed to deploy . | 13:58 |
*** fabg has quit IRC | 13:58 | |
*** lwiecek has quit IRC | 13:59 | |
*** fabg has joined #openstack-ansible | 13:59 | |
*** SerenaFe_ has joined #openstack-ansible | 13:59 | |
*** SerenaFe_ has quit IRC | 14:00 | |
*** SerenaFeng has quit IRC | 14:00 | |
*** cathrich_ has quit IRC | 14:00 | |
evrardjp | is there a way to have a creating alternative? | 14:01 |
evrardjp | mgariepy: mhayden | 14:01 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible master: Tidy up upgrade scripts https://review.openstack.org/443645 | 14:01 |
evrardjp | like have our own copr? | 14:01 |
evrardjp | What are redhat guys using? | 14:02 |
evrardjp | why are we so special? :p | 14:02 |
mhayden | we could have our own COPR repo -- but that gets interesting to maintain | 14:02 |
*** SerenaFeng has joined #openstack-ansible | 14:02 | |
evrardjp | redhat teams are using ansible too IIRC, so I guess they have the same kind of packages to maintain | 14:02 |
evrardjp | sorry to refuel the fire | 14:03 |
fabg | odyssey4me: added more information on https://bugs.launchpad.net/openstack-ansible/+bug/1670632. I think we have two bugs (oslo-messaging and gnocchi). Were you able to reproduce this on stable/newton ? | 14:03 |
openstack | Launchpad bug 1670632 in openstack-ansible "ceilometer error because gnocchiclient > 3.0 for stable/newton " [Undecided,New] - Assigned to Jesse Pretorius (jesse-pretorius) | 14:03 |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-openstack_hosts master: Install/configure EPEL/RDO w/prorities https://review.openstack.org/443647 | 14:04 |
mhayden | mgariepy: ^^ | 14:04 |
*** SerenaFeng has quit IRC | 14:05 | |
*** udesale has joined #openstack-ansible | 14:06 | |
*** jrniemijr has joined #openstack-ansible | 14:07 | |
*** SerenaFeng has joined #openstack-ansible | 14:07 | |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-pip_install master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443651 | 14:07 |
*** schwicht has joined #openstack-ansible | 14:07 | |
*** gouthamr has joined #openstack-ansible | 14:08 | |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-lxc_hosts master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443654 | 14:11 |
*** cathrichardson has quit IRC | 14:11 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_tempest master: Do not make tempest execute by default https://review.openstack.org/443622 | 14:11 |
*** cathrichardson has joined #openstack-ansible | 14:12 | |
mhayden | mgariepy / odyssey4me: EPEL patches -> https://review.openstack.org/#/q/status:open+topic:epel-disaster | 14:12 |
odyssey4me | mhayden many failures there | 14:12 |
mhayden | darn | 14:13 |
mhayden | oh, i failboated at yaml | 14:13 |
*** fabg has quit IRC | 14:13 | |
openstackgerrit | German Eichberger proposed openstack/openstack-ansible master: Additions to install OpenStack Octavia https://review.openstack.org/422062 | 14:14 |
*** fabg has joined #openstack-ansible | 14:14 | |
xgerman | ^^ removes the veth pair as requested by andymccr | 14:14 |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-openstack_hosts master: Install/configure EPEL/RDO w/prorities https://review.openstack.org/443647 | 14:14 |
odyssey4me | mhayden andymccr another tidy up to try and fix the upgrade https://review.openstack.org/443645 | 14:15 |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-pip_install master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443651 | 14:16 |
odyssey4me | we have a lot of terrible tech debt in there which needs fixing | 14:16 |
*** nshetty has joined #openstack-ansible | 14:16 | |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-openstack_hosts master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443647 | 14:17 |
mhayden | odyssey4me: i'll gander | 14:17 |
mhayden | ooh, more comments -- asettle will be pleased | 14:17 |
asettle | mhayden: COMMESNT WHERE | 14:17 |
asettle | That is a word, I swear | 14:18 |
* mhayden cackles | 14:18 | |
*** Spokozord has left #openstack-ansible | 14:19 | |
*** woodard has quit IRC | 14:21 | |
openstackgerrit | German Eichberger proposed openstack/openstack-ansible-os_octavia master: Clarifications and doc improvements https://review.openstack.org/443657 | 14:22 |
openstackgerrit | Miguel Alex Cantu (alextricity25) proposed openstack/openstack-ansible master: Remove Ceilometer API Service https://review.openstack.org/438740 | 14:24 |
*** fabg has quit IRC | 14:24 | |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-lxc_hosts master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443654 | 14:25 |
*** fabg has joined #openstack-ansible | 14:25 | |
*** sanfern has quit IRC | 14:26 | |
*** sanfern has joined #openstack-ansible | 14:26 | |
*** jamesdenton has joined #openstack-ansible | 14:27 | |
openstackgerrit | Merged openstack/openstack-ansible master: Remove epel form bootstrap-host installation. https://review.openstack.org/443301 | 14:28 |
openstackgerrit | Merged openstack/openstack-ansible master: Remove unused confusing data in example https://review.openstack.org/443345 | 14:28 |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: [docs] Add scenario customisation information to AIO quick start guide https://review.openstack.org/443199 | 14:28 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: [docs] Update developer docs script reference https://review.openstack.org/443202 | 14:28 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: [docs] Add scenario customisation information to AIO quick start guide https://review.openstack.org/443196 | 14:28 |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: [docs] Update developer docs script reference https://review.openstack.org/443203 | 14:28 |
openstackgerrit | Merged openstack/openstack-ansible master: [docs] Update doc references for Ocata/Pike https://review.openstack.org/443229 | 14:29 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: Remove unused confusing data in example https://review.openstack.org/443665 | 14:29 |
*** nshetty has quit IRC | 14:29 | |
openstackgerrit | Merged openstack/openstack-ansible-repo_build stable/ocata: Add non *.whl files to MANIFEST.in https://review.openstack.org/441180 | 14:30 |
openstackgerrit | Merged openstack/openstack-ansible-repo_build stable/newton: Add non *.whl files to MANIFEST.in https://review.openstack.org/441181 | 14:30 |
openstackgerrit | Merged openstack/openstack-ansible master: AIO: Provide facility to exclude apt distributions https://review.openstack.org/442457 | 14:32 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: AIO: Provide facility to exclude apt distributions https://review.openstack.org/443666 | 14:33 |
openstackgerrit | Merged openstack/openstack-ansible-lxc_hosts stable/ocata: Moving selinux bits into lxc_selinux https://review.openstack.org/443574 | 14:33 |
*** FrankZhang has joined #openstack-ansible | 14:34 | |
*** smatzek_ has quit IRC | 14:36 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/newton: AIO: Provide facility to exclude apt distributions https://review.openstack.org/443667 | 14:36 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: Remove epel form bootstrap-host installation. https://review.openstack.org/443668 | 14:37 |
*** fabg has quit IRC | 14:37 | |
*** fabg has joined #openstack-ansible | 14:38 | |
*** Jeffrey4l_ has quit IRC | 14:39 | |
*** cjloader_ has joined #openstack-ansible | 14:40 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: [docs] Update doc references for Ocata/Pike https://review.openstack.org/443671 | 14:43 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: [docs] Update doc references for Ocata https://review.openstack.org/443671 | 14:44 |
*** manheim has quit IRC | 14:45 | |
*** adrian_otto has joined #openstack-ansible | 14:45 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: [docs] Update doc references for Ocata https://review.openstack.org/443671 | 14:46 |
*** ngupta has joined #openstack-ansible | 14:48 | |
*** crushil has joined #openstack-ansible | 14:49 | |
rabel | Hi everyone, could someone please have a look at https://review.openstack.org/#/c/430900/ ? the change can be merged, it is just a backport that was missing some other backports. but that's fixed for a week now. | 14:50 |
odyssey4me | mhayden ^ you have a -1 on there for some reason | 14:51 |
*** Jeffrey4l_ has joined #openstack-ansible | 14:51 | |
mhayden | ah it's because of that backport | 14:52 |
mhayden | let me look | 14:52 |
mhayden | fixed | 14:53 |
mhayden | that was near branching time, so i think i got confused | 14:54 |
*** cjloader_ has quit IRC | 14:54 | |
odyssey4me | andymccr I was wondering - should https://review.openstack.org/443179 get a backport to Newton considering that the same issue should be present in Newton if using Xenial? | 14:54 |
*** cjloader_ has joined #openstack-ansible | 14:54 | |
odyssey4me | cloudnull ^ | 14:54 |
cloudnull | yes | 14:54 |
andymccr | hmm i would've said no? i thought in Newton we arent on the newer version of libvirt | 14:55 |
andymccr | because we arent using teh newest UCA (where libvirt changes) | 14:55 |
*** vcn has joined #openstack-ansible | 14:55 | |
cloudnull | oh then maybe no | 14:55 |
cloudnull | :) | 14:55 |
odyssey4me | hmm, ok - will leave it all alone then and see what happens | 14:55 |
prometheanfire | mhayden: ? | 14:55 |
cloudnull | sounds good to me | 14:55 |
mhayden | prometheanfire: shenanigans | 14:56 |
cloudnull | ok, im off today. going back to being away | 14:56 |
prometheanfire | mhayden: boo | 14:56 |
andymccr | seeya cloudnull - enjoy | 14:56 |
prometheanfire | cloudnull: out today? nice :D | 14:56 |
cloudnull | yup, just eating breakfast being a nerd. | 14:56 |
cloudnull | then off to do construction | 14:56 |
*** smatzek_ has joined #openstack-ansible | 14:57 | |
cloudnull | i've a mess of things to take care of at the house | 14:57 |
cloudnull | so i took the day | 14:57 |
*** smatzek_ has quit IRC | 14:57 | |
*** smatzek_ has joined #openstack-ansible | 14:58 | |
openstackgerrit | Merged openstack/openstack-ansible-pip_install master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443651 | 14:58 |
openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443647 | 14:59 |
*** manheim has joined #openstack-ansible | 15:00 | |
*** vcn has quit IRC | 15:00 | |
*** acormier has joined #openstack-ansible | 15:04 | |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-lxc_hosts master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443654 | 15:04 |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-pip_install stable/ocata: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443681 | 15:04 |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-openstack_hosts stable/ocata: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443682 | 15:05 |
*** cjloader_ has quit IRC | 15:06 | |
*** thorst is now known as thorst_afk | 15:06 | |
*** cjloader_ has joined #openstack-ansible | 15:07 | |
*** cjloader_ has quit IRC | 15:11 | |
*** chhavi_ has quit IRC | 15:13 | |
*** weezS has joined #openstack-ansible | 15:13 | |
mgariepy | mhayden, https://review.openstack.org/#/c/443654 | 15:14 |
mgariepy | you need to install yum-plugin-priorities first | 15:15 |
mgariepy | hmm | 15:15 |
mgariepy | never mind. | 15:15 |
admin0 | anyone tried domain-admin role ? like how to give user access to be admin ( ability to create projects etc ) under his own domain ? | 15:15 |
admin0 | so far i have been able to add domains and add users etc, but not been able to give a user permision/ability to create multiple projects under his own domain | 15:16 |
admin0 | not specific to ansible but just if anyone knows | 15:17 |
mhayden | mgariepy: ah, yum-config-manager is missing | 15:18 |
mhayden | darnit | 15:18 |
mgariepy | hmm yes you need.yum-utils | 15:18 |
mgariepy | you need yum-utils | 15:18 |
rabel | mhayden: thank you! | 15:19 |
openstackgerrit | Major Hayden proposed openstack/openstack-ansible-lxc_hosts master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443654 | 15:19 |
*** agrebennikov has joined #openstack-ansible | 15:20 | |
mgariepy | mhayden need both. | 15:20 |
*** SerenaFeng has quit IRC | 15:21 | |
mhayden | mgariepy: yay, made it happy now | 15:29 |
hamzy | odyssey4me, for 427255, you mentioned about testing. Was that through tempest or somewhere else? | 15:30 |
mgariepy | yay! it makes me happy too. | 15:30 |
mhayden | whew | 15:31 |
*** karimb has quit IRC | 15:31 | |
admin0 | whats the ansible way to work with policy files ? | 15:31 |
admin0 | policy.json | 15:31 |
admin0 | so that custom things are preserved on each build/rebuild | 15:31 |
odyssey4me | https://docs.openstack.org/project-deploy-guide/openstack-ansible/ocata/app-advanced-config-override.html#overriding-json-files | 15:32 |
odyssey4me | admin0 ^ | 15:32 |
admin0 | :D | 15:32 |
admin0 | thanks :) | 15:32 |
*** adrian_otto has quit IRC | 15:32 | |
odyssey4me | although for pike (and we may backport to ocata), we're planning to do this for all services: https://review.openstack.org/433097 | 15:32 |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible-openstack_hosts stable/ocata: Disable yum fastestmirror plugin https://review.openstack.org/443697 | 15:34 |
admin0 | odyssey4me: that would be much much easier | 15:34 |
mgariepy | mhayden, do we need this ? | 15:34 |
admin0 | ignore my double much .. | 15:34 |
mgariepy | fast mirror plugin disabled ? | 15:34 |
mhayden | mgariepy: possibly -- i'm not sure if that helped much or not | 15:35 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_cinder master: [WIP] Upgrade testing - do not merge https://review.openstack.org/443699 | 15:35 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_keystone master: [WIP] Upgrade testing - do not merge https://review.openstack.org/443700 | 15:35 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_glance master: [WIP] Upgrade testing - do not merge https://review.openstack.org/443702 | 15:35 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_swift master: [WIP] Upgrade testing - do not merge https://review.openstack.org/443703 | 15:35 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_neutron master: [WIP] Upgrade testing - do not merge https://review.openstack.org/443704 | 15:35 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_nova master: [WIP] Upgrade testing - do not merge https://review.openstack.org/443707 | 15:37 |
mgariepy | ok. | 15:37 |
sliver | Hello, trying to use newton OSA 14.1.0 and running in to a traceback trying to run any playbook. Is this something common/easy fix? http://pastebin.com/MxZSA3MV | 15:37 |
mgariepy | mhayden, we might want to backport : https://review.openstack.org/#/c/443307 | 15:38 |
mgariepy | ? | 15:38 |
mgariepy | instead of editing the other backport ? | 15:38 |
sliver | @cloudnull, saw your reply (not sure if you around), but any playbook I tried. Going to try to cleanup ansible I guess. | 15:39 |
*** karimb has joined #openstack-ansible | 15:39 | |
* mgariepy start thinking this epel stuff is starting to be a giant mess.. | 15:39 | |
odyssey4me | sliver it would appear that you have something broken in your configuration | 15:40 |
sliver | to say the least :) | 15:40 |
odyssey4me | palendae ^ there's an interesting inventory exception for you ;) | 15:40 |
sliver | Something doing ansible-bootstrap is unable to resolve unfortunately | 15:41 |
odyssey4me | sliver yes, so look carefully though your /etc/openstack_deploy files to find which it is | 15:41 |
odyssey4me | sliver nope, it won't - that's a user config issue | 15:41 |
sliver | oh, you think it could be just a yaml error? | 15:41 |
odyssey4me | yep | 15:41 |
sliver | hmm wth. k | 15:41 |
sliver | nothing changed, maybe ansible got more strict | 15:41 |
openstackgerrit | Merged openstack/openstack-ansible-os_keystone stable/newton: Ensure the log folder exists https://review.openstack.org/443061 | 15:42 |
*** marst has quit IRC | 15:42 | |
sliver | guess I'll strip all the *user* stuff away and try that, tx | 15:42 |
*** jbadiapa has quit IRC | 15:42 | |
odyssey4me | sliver as the error is happening in the inventory portion, it's more likely in one of your conf.d files or openstack_user_config | 15:43 |
odyssey4me | or envd files | 15:43 |
odyssey4me | env.d | 15:43 |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible stable/ocata: Remove epel form bootstrap-host installation. https://review.openstack.org/443668 | 15:43 |
openstackgerrit | Merged openstack/openstack-ansible-lxc_hosts stable/newton: Allow the Trusty backport repo addition to be disabled https://review.openstack.org/442592 | 15:44 |
openstackgerrit | Merged openstack/openstack-ansible-security stable/newton: Fix auditd restart handler https://review.openstack.org/430900 | 15:45 |
openstackgerrit | Merged openstack/openstack-ansible-security stable/newton: Add conf file entry for chrony https://review.openstack.org/438852 | 15:45 |
mhayden | OpenStack-Ansible weekly meeting in ~ 14 minutes! cloudnull, mattt, andymccr, d34dh0r53, hughsaunders, b3rnard0, palendae, Sam-I-Am, odyssey4me, serverascode, rromans, erikmwilson, mancdaz, _shaps_, BjoernT, claco, echiu, dstanek, jwagner, ayoung, prometheanfire, evrardjp, arbrandes, mhayden, scarlisle, luckyinva, ntt, javeriak, automagically, spotz, vdo, jmccrory, alextricity25, jasondotstar, | 15:46 |
mhayden | admin0, michaelgugino, ametts, v1k0d3n, severion, bgmccollum, darrenc, JRobinson__, asettle, colinmcnamara, thorst, adreznec, eil397, qwang,nishpatwa_, cathrichardson, drifterza, sc68cal | 15:46 |
asettle | Thanks mhayden :) | 15:46 |
alextricity25 | Woot!! | 15:46 |
spotz | woohoo | 15:46 |
jamesdenton | Has anyone here run into this error when booting an instance? It's seemingly random, but annoying, and only since N->O upgrade: {"message": "Remote error: Error [('asn1 encoding routines', 'ASN1_get_object', 'too long'), ('asn1 encoding routines', 'ASN1_CHECK_TLEN', 'bad object header'), ('asn1 encoding routines', 'ASN1_ITEM_EX_D2I', 'nested asn1 error'), ('PEM routines', 'PEM_X509_INFO_read_b", "code": 500, "details": " File \"/openstack/ | 15:46 |
jamesdenton | venvs/nova-master/lib/python2.7/site-packages/nova/conductor/manager.py\", line 866, in schedule_and_build_instances | 15:46 |
openstackgerrit | Andy McCrae proposed openstack/openstack-ansible-os_nova master: Move away from "tenant_id" endpoints https://review.openstack.org/443720 | 15:48 |
*** marst has joined #openstack-ansible | 15:49 | |
*** weezS has quit IRC | 15:49 | |
andymccr | jamesdenton: hmm thats an SSL related error. i know a whole bunch of patches were pushed to setup the correct packages- perhaps that is the cause? | 15:50 |
andymccr | ahh no that was for centos. | 15:50 |
jamesdenton | thanks andymccr. Def SSL, just not sure where to look | 15:50 |
jamesdenton | i'll mess with it | 15:51 |
*** kstev has joined #openstack-ansible | 15:51 | |
openstackgerrit | Merged openstack/openstack-ansible-galera_client stable/newton: Move repo URL variables to defaults https://review.openstack.org/442012 | 15:51 |
*** cjloader_ has joined #openstack-ansible | 15:54 | |
openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts stable/ocata: Disable yum fastestmirror plugin https://review.openstack.org/443697 | 15:54 |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible-openstack_hosts stable/ocata: Remove EPEL https://review.openstack.org/443726 | 15:55 |
*** cjloader_ has quit IRC | 15:55 | |
*** cjloader_ has joined #openstack-ansible | 15:56 | |
*** KeithMnemonic has joined #openstack-ansible | 15:58 | |
*** rabel has quit IRC | 16:00 | |
*** chris_hultin|AWA is now known as chris_hultin | 16:00 | |
mhayden | meeting starting in #openstack-meeting-4! | 16:01 |
dmsimard | wow there's a weird bug in the ara hosts tab, I'm fixing that. | 16:01 |
openstackgerrit | Merged openstack/openstack-ansible-pip_install stable/ocata: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443681 | 16:01 |
*** manheim has quit IRC | 16:01 | |
openstackgerrit | Merged openstack/openstack-ansible-lxc_hosts master: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443654 | 16:03 |
openstackgerrit | Merged openstack/openstack-ansible-os_sahara stable/ocata: Cap the number of worker threads https://review.openstack.org/441188 | 16:03 |
admin0 | odyssey4me: https://review.openstack.org/#/c/433097/11/defaults/main.yml — can this also be extended to include domain specific files for keystone .. so that per domain, it can be LDAP or other auth backend ? | 16:05 |
admin0 | or i need to file a feature request ( checking if its not already in roadmap/plan ) | 16:05 |
admin0 | or discussed | 16:05 |
*** manheim has joined #openstack-ansible | 16:05 | |
odyssey4me | admin0 can keystone have a policy file per domain? | 16:06 |
openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts stable/ocata: Install/configure EPEL/RDO w/priorities https://review.openstack.org/443682 | 16:06 |
odyssey4me | can you point me at a docs ref for that? | 16:07 |
admin0 | not for policy but for authenticaiton | 16:07 |
admin0 | https://docs.openstack.org/juno/config-reference/content/section_keystone-domain-configs.html | 16:07 |
odyssey4me | admin0 juno? | 16:08 |
admin0 | sorry .. that was a quick copy paste for the config stuff | 16:08 |
asettle | hey spotz you're up? :) | 16:08 |
spotz | I'm up?:) | 16:09 |
admin0 | odyssey4me: http://dolphm.com/deploying-domain-specific-identity-drivers-in-openstack-keystone/ — one example of usage here and also here: http://www.ibm.com/developerworks/cloud/library/cl-configure-keystone-ldap-and-active-directory/index.html | 16:09 |
admin0 | i have the file, looking for a good way to deploy them | 16:09 |
*** galstrom_zzz is now known as galstrom | 16:09 | |
spotz | sorry was trying to catch up on dev list:) - put this here too for asettle:) | 16:10 |
admin0 | so default is internal auth, domain1 = ldap testing | 16:10 |
odyssey4me | admin0 I'm aware of that - we already configure DBE's for LDAP... but I don't know if policy files can be added to them | 16:10 |
asettle | spotz: haha thank you! I've been chatting with the nova team today. cdent and jaypipes are looking at hte issue at hand. Wondering if you have some logs of your previously tested errors we could send across | 16:10 |
asettle | That, or if you've tested the *new* instrucitons? | 16:10 |
odyssey4me | admin0 https://github.com/openstack/openstack-ansible-os_keystone/blob/master/defaults/main.yml#L250-L267 | 16:11 |
*** rmelero has joined #openstack-ansible | 16:11 | |
spotz | asettle I had them in a gist which they looked at the day I worked with them, not sure if the gists still exist but I'll look when I get a chance. I don't think I had anything that made them go oooohhhh | 16:11 |
*** h5t4 has quit IRC | 16:12 | |
asettle | Ah okay :) they've already seen it | 16:12 |
asettle | That's all they needed, mostly | 16:12 |
asettle | They hadn't seen Brian's. | 16:12 |
spotz | When I got through no valid hosts, I apprently ran into the No quota bug I emailed about | 16:13 |
evrardjp | Brian? | 16:14 |
evrardjp | The one in the kitchen? | 16:14 |
admin0 | odyssey4me: so in which file do i specifiy DOMAIN_NAME .. .. the example starts with keystone_ldap .. should DOMAIN_NAME be above it ? | 16:14 |
evrardjp | #frenchjoke | 16:14 |
asettle | You're on your own there evrardjp :p | 16:14 |
asettle | spotz: hmm interesting. | 16:14 |
asettle | Okay, well, the guys are working on it. There are some updated instructions if you're still testing? | 16:14 |
spotz | asettle I can try later, need to get some recording done today for newton course, but maybe I'll video the ocata attempts too | 16:15 |
evrardjp | Ahaha. Not really, but nobody find it funny :p | 16:17 |
asettle | evrardjp: sorry :P | 16:18 |
asettle | spotz: thank you! Keep me up to date | 16:18 |
admin0 | spotz: “….t maybe I'll video the ocata attempts too … “ .. osa ocata installation video ? | 16:20 |
*** chhavi_ has joined #openstack-ansible | 16:20 | |
evrardjp | don't be don't be asettle :) | 16:21 |
asettle | ha | 16:21 |
admin0 | odyssey4me: another question would be: https://github.com/openstack/keystone/blob/master/etc/policy.v3cloudsample.json — we are using v2 .. when is the plan to switch to v3 ( in prospective of policy) and incorporating the new cloud_admin role ? | 16:21 |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-os_ironic stable/newton: Add support for neutron network names for cleaning/provisioning https://review.openstack.org/443736 | 16:23 |
*** craigs has joined #openstack-ansible | 16:24 | |
spotz | Admin0 install by hand on ubuntu | 16:25 |
admin0 | by hand, you mean manual . and not using osa ? | 16:25 |
spotz | Yeah for a course | 16:26 |
*** weezS has joined #openstack-ansible | 16:26 | |
*** rabel has joined #openstack-ansible | 16:26 | |
odyssey4me | admin0 if you read the docs you'll see how it works: https://docs.openstack.org/developer/openstack-ansible-os_keystone/configure-keystone.html#implementing-ldap-or-active-directory-backends | 16:29 |
admin0 | odyssey4me: i see it now \o/ | 16:30 |
admin0 | !odyssey4me++ | 16:30 |
openstack | admin0: Error: "odyssey4me++" is not a valid command. | 16:30 |
*** adrian_otto has joined #openstack-ansible | 16:31 | |
*** BjoernT has joined #openstack-ansible | 16:32 | |
sliver | ody: looks like it has to do with ceph.yml. newton brings in ceph support and changes all the variables rpc supported. does that ring a bell? | 16:33 |
odyssey4me | sliver ocata brings support for deploying a ceph cluster, not newton | 16:35 |
odyssey4me | sliver are you working with rpc-openstack, or with openstack-ansible on its own? | 16:36 |
*** acormier_ has joined #openstack-ansible | 16:37 | |
*** acormier has quit IRC | 16:38 | |
*** thorst_afk is now known as thorst | 16:38 | |
craigs | Is there a way to see where a ansible playbook is failing? | 16:41 |
*** karimb has quit IRC | 16:45 | |
sliver | er duh dang. osa on its own now with deployed ceph cluster backend using 12/13.x rpc repo/roles | 16:46 |
sliver | if that makes sense | 16:46 |
odyssey4me | craigs yes, in stdout | 16:47 |
odyssey4me | in the output that the playbook gives you | 16:47 |
odyssey4me | if it doesn't give enough info, run with -vvv for more verbose output | 16:48 |
sliver | able to run playbooks with clean inventory (removing openstack_inventory.json for testing) | 16:48 |
odyssey4me | sliver haha, sounds complicated | 16:48 |
sliver | so nevermind on my yml excuse | 16:48 |
sliver | :/ | 16:48 |
sliver | its not complicated tbh | 16:48 |
*** udesale has quit IRC | 16:49 | |
sliver | any more elaborate debugging available for the inventory file itself causing this to barf? | 16:49 |
openstackgerrit | Merged openstack/openstack-ansible-os_nova stable/ocata: Changed libvirt unit name https://review.openstack.org/443576 | 16:50 |
openstackgerrit | Merged openstack/openstack-ansible master: Tidy up upgrade scripts https://review.openstack.org/443645 | 16:51 |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: Fix upgrade script-library check https://review.openstack.org/442993 | 16:51 |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: Check for rbd as a default & optional glance back-end https://review.openstack.org/442996 | 16:51 |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: Adjust gate-check-commit for deploy/upgrade testing https://review.openstack.org/443068 | 16:52 |
*** fabg has quit IRC | 16:52 | |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: Ensure that the terminal type is set https://review.openstack.org/443071 | 16:52 |
*** Andrew_jedi has joined #openstack-ansible | 16:54 | |
openstackgerrit | German Eichberger proposed openstack/openstack-ansible master: Additions to install OpenStack Octavia https://review.openstack.org/422062 | 16:55 |
*** phalmos has joined #openstack-ansible | 16:56 | |
*** jamesden_ has joined #openstack-ansible | 16:56 | |
odyssey4me | sliver IIRC there is a debug flag if you execute the inventory as a python script | 16:56 |
odyssey4me | something like /opt/ansible-runtime/bin/python /opt/openstack-ansible/inventory/dynamic.py --debug | 16:57 |
*** lucasxu has joined #openstack-ansible | 16:57 | |
*** rabel has quit IRC | 16:58 | |
*** jamesdenton has quit IRC | 16:58 | |
*** jamesden_ has quit IRC | 16:58 | |
sliver | k, checking. | 17:00 |
sliver | this has turned out to be way more interesting then required lol | 17:00 |
*** FrankZhang has quit IRC | 17:00 | |
*** vnogin has quit IRC | 17:01 | |
*** galstrom is now known as galstrom_zzz | 17:02 | |
*** FrankZhang has joined #openstack-ansible | 17:02 | |
odyssey4me | mgagne_ it appears that you tried to backport https://review.openstack.org/443668 but it was already :) | 17:02 |
mgagne_ | mgariepy: ^ | 17:02 |
*** galstrom_zzz is now known as galstrom | 17:03 | |
odyssey4me | lol, oops sorry mgagne_ :) | 17:03 |
odyssey4me | tabfail | 17:03 |
odyssey4me | mgagne_ you tried to use our mariadb role at some point, right? | 17:04 |
*** h5t4 has joined #openstack-ansible | 17:06 | |
*** lucasxu has quit IRC | 17:08 | |
*** markvoelker has joined #openstack-ansible | 17:08 | |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: Answer the upgrade no-going-back prompt https://review.openstack.org/443146 | 17:09 |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: Allow refspec in role fetcher https://review.openstack.org/441534 | 17:09 |
*** zz_pwnall1337 is now known as pwnall1337 | 17:09 | |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: Allow role path override in fetch play https://review.openstack.org/441533 | 17:10 |
*** ngupta has quit IRC | 17:11 | |
*** ngupta has joined #openstack-ansible | 17:12 | |
mgariepy | odyssey4me, yeah i meant another patch sorry about this one. | 17:12 |
mgariepy | odyssey4me, was : https://review.openstack.org/#/c/443726/ | 17:16 |
*** lucasxu has joined #openstack-ansible | 17:17 | |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-plugins stable/newton: Add get_networks command to neutron library https://review.openstack.org/443759 | 17:17 |
*** lucasxu has quit IRC | 17:17 | |
Erming_ | I found there is a bug report when we try to enable the port security feature on neutron with existing networks. | 17:18 |
*** ngupta has quit IRC | 17:18 | |
Erming_ | https://bugs.launchpad.net/neutron/+bug/1461519 | 17:18 |
openstack | Launchpad bug 1461519 in neutron "Enabling ml2 port security extension driver causes net-list to fail on existing deployment" [High,Fix released] - Assigned to Kahou Lei (kahou82) | 17:18 |
*** ngupta has joined #openstack-ansible | 17:18 | |
Erming_ | So I am wondering that, to avoid impacting the production cloud system, is it possible to manually disable the anti-spoof iptable rules for sub-VMs or containers ? | 17:19 |
jmccrory | odyssey4me : not sure if i missed it, did you have an etherpad for upgrade script re-work up? | 17:21 |
*** shardy has quit IRC | 17:21 | |
*** manheim has quit IRC | 17:25 | |
odyssey4me | jmccrory I haven't made one yet. :) | 17:28 |
jmccrory | ah ok | 17:28 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: Check if env.d folder exists for upgrades https://review.openstack.org/443578 | 17:34 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: Fix upgrade script-library check https://review.openstack.org/442992 | 17:34 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: Ensure that the terminal type is set https://review.openstack.org/443065 | 17:34 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: Tidy up upgrade scripts https://review.openstack.org/443766 | 17:36 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/ocata: Tidy up upgrade scripts https://review.openstack.org/443766 | 17:37 |
*** yolanda has joined #openstack-ansible | 17:39 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/newton: Tidy up upgrade scripts https://review.openstack.org/443770 | 17:41 |
*** ngupta has quit IRC | 17:43 | |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-os_ironic master: Rename deprecated neutron network config options https://review.openstack.org/443771 | 17:43 |
*** ngupta has joined #openstack-ansible | 17:43 | |
*** fabg has joined #openstack-ansible | 17:46 | |
*** KeithMnemonic has quit IRC | 17:47 | |
*** retreved has quit IRC | 17:52 | |
*** retreved has joined #openstack-ansible | 17:53 | |
*** pwnall1337 is now known as zz_pwnall1337 | 17:56 | |
*** zz_pwnall1337 is now known as pwnall1337 | 17:56 | |
craigs | Was there a change in 13 to 14 In the openstack_inventory.json | 17:57 |
craigs | < "usw1swftp002-host_containers": { | 17:57 |
craigs | --- | 17:57 |
craigs | > "usw1swftp002_containers": { - we believe this is causing our error. | 17:57 |
*** lucasxu has joined #openstack-ansible | 17:58 | |
craigs | Error is root@usw1utly002:/opt/rpc-openstack/openstack-ansible/playbooks# openstack-ansible rsyslog-install.yml | 18:00 |
craigs | Variable files: "-e @/etc/openstack_deploy/user_osa_secrets.yml -e @/etc/openstack_deploy/user_osa_variables_defaults.yml -e @/etc/openstack_deploy/user_osa_variables_overrides.yml -e @/etc/openstack_deploy/user_rpco_secrets.yml -e @/etc/openstack_deploy/user_rpco_variables_defaults.yml -e @/etc/openstack_deploy/user_rpco_variables_overrides.yml -e @/etc/openstack_deploy/user_secrets.yml -e @/etc/openstack_deploy/user_variables.yml " | 18:00 |
craigs | ERROR! Unexpected Exception: unsupported operand type(s) for +: 'NoneType' and 'str' | 18:00 |
*** kstev has quit IRC | 18:00 | |
craigs | to see the full traceback, use -vvv | 18:00 |
*** adogrant has quit IRC | 18:00 | |
odyssey4me | craigs both those inventory groups will still be there | 18:00 |
craigs | We found the issue | 18:03 |
*** acormier has joined #openstack-ansible | 18:04 | |
*** acormier_ has quit IRC | 18:04 | |
*** adrian_otto has quit IRC | 18:05 | |
mgagne_ | odyssey4me: not yet =( | 18:07 |
*** h5t4 has quit IRC | 18:08 | |
*** 17SAAIU16 has joined #openstack-ansible | 18:09 | |
*** fabg has quit IRC | 18:11 | |
*** jamesdenton has joined #openstack-ansible | 18:13 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/newton: Check if env.d folder exists for upgrades https://review.openstack.org/443579 | 18:14 |
*** kstev has joined #openstack-ansible | 18:16 | |
odyssey4me | mgagne_ I was wondering whether you could assist with trying to figure out the race condition we're seeing in our tests, evidenced in this review: https://review.openstack.org/443123 | 18:17 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible stable/ocata: Updated from global requirements https://review.openstack.org/443850 | 18:19 |
mgagne_ | odyssey4me: the project which required galera got postponed so I didn't have time to work on it =( | 18:26 |
openstackgerrit | Jimmy McCrory proposed openstack/openstack-ansible-os_ironic master: Rename deprecated neutron network config options https://review.openstack.org/443771 | 18:27 |
*** electrofelix has quit IRC | 18:27 | |
*** Jack_Iv has quit IRC | 18:28 | |
*** Jack_Iv has joined #openstack-ansible | 18:28 | |
*** Jack_Iv has quit IRC | 18:33 | |
openstackgerrit | Nolan Brubaker proposed openstack/openstack-ansible-ops master: Add rolling downtime simulation tools https://review.openstack.org/443930 | 18:33 |
palendae | lbragstad: ^ kind of the start of what we talked about yesterday | 18:34 |
*** ngupta has quit IRC | 18:36 | |
*** ngupta has joined #openstack-ansible | 18:37 | |
lbragstad | palendae nice | 18:38 |
palendae | It occurs to me that tempest might be a better framework for the actual test portion...but I'm gonna get lunch for now :) | 18:40 |
*** BjoernT has quit IRC | 18:40 | |
craigs | is there a way to remove the "VMDK" from the horizon dashboard upload feature? | 18:40 |
odyssey4me | craigs yes, check the horizon documentation | 18:41 |
odyssey4me | we may not have the facilities in place ot make that happen - if that's missing then a patch is welcome | 18:41 |
DimGR | quick question , internal_lb_vip and external_lb_vip should have what ip? | 18:42 |
*** karimb has joined #openstack-ansible | 18:42 | |
DimGR | haproxy? | 18:42 |
odyssey4me | DimGR the IP for your load balancer | 18:42 |
odyssey4me | DimGR examples are given in the documentation - if the documentation isn't clear enough, then please let us know | 18:42 |
DimGR | i have haproxy_hosts: and under it 2 haproxy hosts. should same hosts be defined in internal and external vip ? | 18:44 |
odyssey4me | DimGR I would expect you want a virtual ip address to float between them, otherwise you won't have high availability? | 18:44 |
odyssey4me | you should look at this example set then: https://docs.openstack.org/project-deploy-guide/openstack-ansible/ocata/app-config-prod.html | 18:45 |
odyssey4me | keepalived will handle the virtual IP | 18:45 |
DimGR | i have a failover subnet andi can use any ip from a specific range for failover purpose | 18:45 |
odyssey4me | but the virtual IP's must not be one of those host addresses, because they need to float | 18:45 |
*** chhavi_ has quit IRC | 18:52 | |
*** BjoernT has joined #openstack-ansible | 18:53 | |
*** 17SAAIU16 has quit IRC | 18:54 | |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible-openstack_hosts stable/ocata: Remove EPEL https://review.openstack.org/443726 | 18:55 |
*** adrian_otto has joined #openstack-ansible | 18:55 | |
hamzy | odyssey4me, for 427255, you mentioned about testing. Was that through tempest or somewhere else? | 18:57 |
odyssey4me | hamzy there's a bunch of scaffolding that needs to go in to make the CI tests we have as a standard work | 18:58 |
odyssey4me | lemme get you an example | 18:58 |
odyssey4me | this is basically the minimum file set to get a green go: https://review.openstack.org/436731 | 18:59 |
odyssey4me | andymccr has mentioned that he has a cookiecutter role somewhere with all the scaffolding and a convenience script | 18:59 |
Andrew_jedi | folks, I wanted to confirm something, when switching from lbaas v1 to lbaas v2, OSA does not run any db migration script like this one: https://github.com/openstack/neutron-lbaas/blob/master/tools/database-migration-from-v1-to-v2.py | 19:00 |
*** h5t4_ has joined #openstack-ansible | 19:00 | |
odyssey4me | Andrew_jedi there is no mimgration script for LBaaSv1 to LBaasv2 | 19:01 |
odyssey4me | oh, that must be new | 19:01 |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible stable/ocata: Remove epel form bootstrap-host installation. https://review.openstack.org/443668 | 19:02 |
odyssey4me | well, if that is a thing then we should use it | 19:02 |
Andrew_jedi | odyssey4me: yep, it was not backported to Mitaka. | 19:02 |
odyssey4me | it wasn't a thing when we implemented v2 | 19:02 |
hamzy | thanks | 19:02 |
xgerman | odyssey4me that is not entirely true | 19:02 |
xgerman | https://github.com/openstack/neutron-lbaas/blob/master/tools/database-migration-from-v1-to-v2.py | 19:02 |
odyssey4me | xgerman see the above conversation as a whole, not in parts | 19:03 |
xgerman | k | 19:03 |
Andrew_jedi | odyssey4me: yeah, but it is know to be buggy, please have a look at this http://lists.openstack.org/pipermail/openstack-dev/2017-March/113628.html | 19:03 |
odyssey4me | Andrew_jedi I don't think we can really automate it | 19:04 |
odyssey4me | if you want to convert, you'll need to use a test environment to figure it out and make it work for you | 19:04 |
odyssey4me | then do it in your env | 19:04 |
xgerman | yeah, it’s buggy like hell | 19:04 |
xgerman | and ot reallynsupported by the community | 19:04 |
xgerman | not really supported by the community | 19:05 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: [DOC] Fix doc about EPEL https://review.openstack.org/443575 | 19:07 |
*** stuartgr has quit IRC | 19:07 | |
*** galstrom is now known as galstrom_zzz | 19:08 | |
Andrew_jedi | odyssey4me: I agree with you, earlier i created a mitaka based environment, created a heat stack with lbaasv1 resources, updated user_variables.yml to switch to lbaasv2 and after running the neutron playbook all the lbaasv1 resource were down and "heat resource-list " gave me this error: | 19:09 |
Andrew_jedi | odyssey4me: ERROR: HEAT-E99001 Service neutron is not available for resource type OS::Neutron::HealthMonitor, reason: Service endpoint not in service catalog. | 19:09 |
Andrew_jedi | however i was able to create a lbaasv2 based heat stack without any problem but the lbaasv1 resources were gone | 19:10 |
openstackgerrit | Logan V proposed openstack/openstack-ansible stable/newton: Retry the git clone in role fetcher https://review.openstack.org/443943 | 19:10 |
*** david-lyle has quit IRC | 19:14 | |
*** ngupta has quit IRC | 19:14 | |
*** ngupta has joined #openstack-ansible | 19:15 | |
*** pwnall1337 is now known as zz_pwnall1337 | 19:16 | |
xgerman | wonder if I can get some eyes on https://review.openstack.org/422062 | 19:17 |
*** h5t4_ has quit IRC | 19:26 | |
*** MasterOfBugs has joined #openstack-ansible | 19:26 | |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: Updated from global requirements https://review.openstack.org/443850 | 19:27 |
*** h5t4_ has joined #openstack-ansible | 19:28 | |
*** alij has joined #openstack-ansible | 19:29 | |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible-os_nova master: Set secontext for /var/lib/nova/ https://review.openstack.org/441172 | 19:31 |
*** ngupta has quit IRC | 19:31 | |
*** craigs has quit IRC | 19:31 | |
*** ngupta has joined #openstack-ansible | 19:32 | |
openstackgerrit | Marc Gariépy proposed openstack/openstack-ansible-os_nova master: Cleanup nova-placement installation https://review.openstack.org/443948 | 19:38 |
openstackgerrit | Merged openstack/openstack-ansible-openstack_hosts stable/ocata: Remove EPEL https://review.openstack.org/443726 | 19:41 |
*** ngupta_ has joined #openstack-ansible | 19:44 | |
*** Jack_Iv has joined #openstack-ansible | 19:44 | |
*** karimb has quit IRC | 19:45 | |
*** ngupta has quit IRC | 19:45 | |
*** rabel has joined #openstack-ansible | 19:46 | |
*** karimb has joined #openstack-ansible | 19:48 | |
*** alij has quit IRC | 19:52 | |
*** david-lyle has joined #openstack-ansible | 19:53 | |
*** adrian_otto1 has joined #openstack-ansible | 19:53 | |
*** adrian_otto has quit IRC | 19:56 | |
*** kstev has quit IRC | 20:01 | |
*** manheim has joined #openstack-ansible | 20:04 | |
*** craigs has joined #openstack-ansible | 20:07 | |
*** manheim has quit IRC | 20:08 | |
*** craigs has quit IRC | 20:09 | |
*** Andrew_jedi has quit IRC | 20:11 | |
*** chris_hultin is now known as chris_hultin|AWA | 20:14 | |
*** three-n-one has joined #openstack-ansible | 20:15 | |
DimGR | does it matter if there are same hosts in network_hosts and in compute_hosts ? | 20:20 |
*** rboyapat has joined #openstack-ansible | 20:24 | |
*** kstev_ has joined #openstack-ansible | 20:34 | |
DimGR | odyssey4me from my understanding the role can deploy haproxy to a host defined under haproxy_hosts , am i correct? | 20:37 |
*** ngupta has joined #openstack-ansible | 20:44 | |
*** ngupta_ has quit IRC | 20:47 | |
openstackgerrit | Nolan Brubaker proposed openstack/openstack-ansible-ops master: Add rolling downtime simulation tools https://review.openstack.org/443930 | 20:48 |
*** rboyapat_ has joined #openstack-ansible | 20:53 | |
basilAB | I was trying get 9K mtu through on control plane as well by `lxc_net_mtu` and `container_mtu` variable in OSA. But ended having issues in lxc_cache_prep step as it was breaking communication. Anyone here had success in setting mtu 9000 on lxc containers as well ? | 20:56 |
*** rboyapat has quit IRC | 20:56 | |
*** jrobinson has joined #openstack-ansible | 20:57 | |
*** rboyapat_ has quit IRC | 20:58 | |
*** rboyapat has joined #openstack-ansible | 20:59 | |
*** chris_hultin|AWA is now known as chris_hultin | 21:00 | |
openstackgerrit | Nolan Brubaker proposed openstack/openstack-ansible-ops master: Add rolling downtime simulation tools https://review.openstack.org/443930 | 21:00 |
*** smatzek_ has quit IRC | 21:01 | |
mgariepy | any core have a minutes or 2 to review : https://review.openstack.org/#/c/443948/ | 21:02 |
mgariepy | mhayden, it's cleanup ^^ :) | 21:02 |
*** Jack_Iv has quit IRC | 21:05 | |
*** Jack_Iv has joined #openstack-ansible | 21:05 | |
*** Jack_Iv has quit IRC | 21:09 | |
*** Jack_I has quit IRC | 21:10 | |
palendae | cloudnull: We kinda talked about this yesterday, would appreciate a look. https://review.openstack.org/#/c/443930/ | 21:11 |
palendae | The main part is rolling_restart.py | 21:12 |
openstackgerrit | Merged openstack/openstack-ansible stable/ocata: AIO: Provide facility to exclude apt distributions https://review.openstack.org/443666 | 21:19 |
*** askb has joined #openstack-ansible | 21:19 | |
openstackgerrit | Merged openstack/openstack-ansible stable/newton: AIO: Provide facility to exclude apt distributions https://review.openstack.org/443667 | 21:21 |
*** askb has quit IRC | 21:27 | |
*** ngupta_ has joined #openstack-ansible | 21:27 | |
openstackgerrit | Nolan Brubaker proposed openstack/openstack-ansible-ops master: Add rolling downtime simulation tools https://review.openstack.org/443930 | 21:29 |
*** ngupta has quit IRC | 21:31 | |
mgariepy | mhayden, http://paste.openstack.org/show/602121/ | 21:31 |
*** manheim has joined #openstack-ansible | 21:31 | |
*** rabel has quit IRC | 21:31 | |
mhayden | mgariepy: what am i looking at here | 21:32 |
*** ngupta_ has quit IRC | 21:32 | |
mgariepy | ipxe-roms package is lower on rdo-qemu-ev | 21:32 |
mgariepy | http://logs.openstack.org/72/441172/4/check/gate-openstack-ansible-os_nova-ansible-func-centos-7-nv/fd17894/console.html#_2017-03-09_20_08_20_279641 | 21:33 |
mgariepy | wondering why this lists ipxe-roms-qemu pkg tho. https://www.rdoproject.org/documentation/package-list/ | 21:33 |
mhayden | mgariepy: is the repo priority set correctly? | 21:33 |
*** Jeffrey4l_ has quit IRC | 21:35 | |
DimGR | hi i would like some help with haproxy please. i do not have set haproxy up somewhere because i thought the role can deploy haproxy to a given host under haproxy_hosts. is this correct? i also do not have VIP so what do i enter in internal_lb and external_lb ? here is my userconfig and at the end the error i get | 21:35 |
*** Jeffrey4l_ has joined #openstack-ansible | 21:35 | |
DimGR | http://paste.openstack.org/show/602119/ | 21:35 |
mgariepy | seems so. but base is priority 99 | 21:36 |
mgariepy | and rdo 50. | 21:36 |
mgariepy | anyway i'll dig into this tomorrow. | 21:36 |
openstackgerrit | Adrien Cunin proposed openstack/openstack-ansible-os_nova master: Run nova_placement_service_setup.yml once https://review.openstack.org/443972 | 21:36 |
*** jrniemijr has quit IRC | 21:38 | |
mgariepy | anyway, late enough for me. need to get home. cya tomorrow. | 21:38 |
mhayden | mgariepy: enjoy! | 21:40 |
rboyapat | @mhayden Can you please review https://review.openstack.org/#/c/438193/ | 21:41 |
mhayden | rboyapat: looking | 21:42 |
rboyapat | thanks | 21:42 |
rboyapat | mhayden: thanks for the quick review. | 21:46 |
*** hamzy has quit IRC | 21:48 | |
*** rboyapat has quit IRC | 21:49 | |
openstackgerrit | weezer su proposed openstack/openstack-ansible-ops master: Remove the NETWORK_BASE from build.sh https://review.openstack.org/443977 | 21:57 |
xdfil | anyone familiar with setting up a BGP speaker? | 21:57 |
xdfil | basically i'm getting "resource not found" errors when I try to create the bgpspeaker using neutron CLI | 21:58 |
*** retreved has quit IRC | 21:58 | |
xdfil | makes me wonder if this should work from the utility container | 21:58 |
*** fguillot has quit IRC | 21:59 | |
*** crushil has quit IRC | 21:59 | |
*** manheim has quit IRC | 22:10 | |
*** adrian_otto1 has quit IRC | 22:28 | |
*** adrian_otto has joined #openstack-ansible | 22:31 | |
*** schwicht has quit IRC | 22:31 | |
*** lucasxu has quit IRC | 22:31 | |
*** manheim has joined #openstack-ansible | 22:33 | |
*** thorst has quit IRC | 22:39 | |
*** karimb has quit IRC | 22:39 | |
*** jamielennox is now known as jamielennox|away | 22:42 | |
*** askb has joined #openstack-ansible | 22:43 | |
*** acormier has quit IRC | 22:44 | |
*** jamielennox|away is now known as jamielennox | 22:45 | |
*** acormier has joined #openstack-ansible | 22:46 | |
*** gouthamr has quit IRC | 22:48 | |
*** acormier has quit IRC | 22:48 | |
*** galstrom_zzz is now known as galstrom | 22:48 | |
*** adrian_otto has quit IRC | 22:49 | |
*** acormier has joined #openstack-ansible | 22:51 | |
*** jamesdenton has quit IRC | 22:51 | |
*** BjoernT has quit IRC | 22:53 | |
openstackgerrit | Markos Chandras proposed openstack/openstack-ansible-galera_client master: SUSE: Use MariaDB package from the OBS repository https://review.openstack.org/444033 | 22:56 |
xgerman | Wonder if I can get a review of https://review.openstack.org/#/c/422062/ | 23:00 |
*** thorst has joined #openstack-ansible | 23:03 | |
*** schwicht has joined #openstack-ansible | 23:03 | |
*** jrobinson_ has joined #openstack-ansible | 23:05 | |
*** thorst has quit IRC | 23:07 | |
*** jrobinson has quit IRC | 23:07 | |
*** gouthamr has joined #openstack-ansible | 23:11 | |
*** jrobinson_ has quit IRC | 23:18 | |
*** jrobinson_ has joined #openstack-ansible | 23:18 | |
*** jrobinson_ is now known as jrobinson | 23:19 | |
*** esberglu has quit IRC | 23:21 | |
*** ngupta has joined #openstack-ansible | 23:25 | |
*** h5t4_ has quit IRC | 23:27 | |
*** schwicht has quit IRC | 23:27 | |
*** h5t4_ has joined #openstack-ansible | 23:28 | |
*** schwicht has joined #openstack-ansible | 23:31 | |
*** schwicht has quit IRC | 23:33 | |
*** esberglu has joined #openstack-ansible | 23:33 | |
*** phalmos has quit IRC | 23:36 | |
*** esberglu has quit IRC | 23:37 | |
*** marst has quit IRC | 23:37 | |
*** marst has joined #openstack-ansible | 23:37 | |
*** klamath has quit IRC | 23:37 | |
*** galstrom is now known as galstrom_zzz | 23:40 | |
*** h5t4_ has quit IRC | 23:42 | |
*** kstev_ has quit IRC | 23:42 | |
*** acormier has quit IRC | 23:44 | |
*** pmannidi has joined #openstack-ansible | 23:44 | |
*** cjloade__ has joined #openstack-ansible | 23:48 | |
*** DimGR2 has joined #openstack-ansible | 23:49 | |
*** cjloader_ has quit IRC | 23:51 | |
*** DimGR has quit IRC | 23:51 | |
*** rmelero has quit IRC | 23:53 | |
*** cjloade__ has quit IRC | 23:53 | |
*** MasterOfBugs has quit IRC | 23:53 | |
*** rmelero has joined #openstack-ansible | 23:53 | |
*** MasterOfBugs has joined #openstack-ansible | 23:53 | |
*** DimGR2 has quit IRC | 23:56 | |
*** DimGR has joined #openstack-ansible | 23:56 | |
*** rmelero has quit IRC | 23:58 | |
*** jrobinson has quit IRC | 23:58 | |
*** schwicht has joined #openstack-ansible | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!