*** vnogin has joined #openstack-ansible | 00:01 | |
*** vnogin has quit IRC | 00:06 | |
*** markvoelker has quit IRC | 00:17 | |
*** markvoelker has joined #openstack-ansible | 00:17 | |
*** markvoelker has quit IRC | 00:21 | |
*** gyee has quit IRC | 00:29 | |
*** vnogin has joined #openstack-ansible | 00:31 | |
*** vnogin has quit IRC | 00:35 | |
*** vnogin has joined #openstack-ansible | 00:41 | |
*** vnogin has quit IRC | 00:41 | |
*** vnogin has joined #openstack-ansible | 00:51 | |
*** vnogin has quit IRC | 00:56 | |
*** macza has joined #openstack-ansible | 00:59 | |
*** macza has quit IRC | 01:03 | |
*** hamzy has joined #openstack-ansible | 01:12 | |
*** ianychoi has quit IRC | 01:17 | |
*** cshen has joined #openstack-ansible | 01:19 | |
*** spatel has joined #openstack-ansible | 01:20 | |
*** mmercer has quit IRC | 01:23 | |
*** cshen has quit IRC | 01:23 | |
*** ianychoi has joined #openstack-ansible | 01:28 | |
cloudnull | evenings | 01:41 |
---|---|---|
*** ianychoi has quit IRC | 01:42 | |
guilhermesp | hello cloudnull 🤘🏼 | 01:42 |
cloudnull | hey there ! | 01:42 |
cloudnull | hows it ? | 01:42 |
guilhermesp | allll good | 01:43 |
jamesdenton | hey cloudnull - do we have netplan networking docs somewhere? | 01:47 |
cloudnull | not that i'm aware of | 01:47 |
cloudnull | we're not using any netplan | 01:47 |
cloudnull | its all systemd-networkd across the board | 01:47 |
jamesdenton | ahh, ok | 01:48 |
cloudnull | you needing netplan or just playing with 1804? | 01:48 |
jamesdenton | working on an 1804 deploy, knew netplan replaced ifupdown, just couldn't remember if that was the way to go or not. evidently not! but, i have a working config. | 01:49 |
cloudnull | if needed you can still install ifup/down | 01:49 |
cloudnull | however the recommendation at this time is networkd which works across all of the distros we support | 01:50 |
jamesdenton | i don't think i need it, honestly. ok, cool. i'll work with that | 01:51 |
cloudnull | for networkd i have lots of example config im happy to share if needed. we also have the systemd_networkd role which is useful to just composing the network you want and automating the deployment of it | 01:53 |
jamesdenton | i'll take what you've got | 01:54 |
cloudnull | https://github.com/openstack/ansible-role-systemd_networkd | 01:54 |
jamesdenton | gracias | 01:55 |
*** dave-mccowan has joined #openstack-ansible | 01:56 | |
*** jbadiapa has quit IRC | 01:56 | |
*** jbadiapa has joined #openstack-ansible | 01:58 | |
openstackgerrit | Merged openstack/openstack-ansible stable/queens: Bump repo_server for latest P2Q upgrade fixes https://review.openstack.org/607057 | 01:58 |
*** vnogin has joined #openstack-ansible | 02:00 | |
cloudnull | jamesdenton https://gist.github.com/cloudnull/5e97eca762f210721cedd99adab46a2f | 02:01 |
cloudnull | thats the running configs from one of my compute hosts with bonding | 02:02 |
jamesdenton | even better! thank you | 02:02 |
openstackgerrit | Merged openstack/openstack-ansible-os_octavia master: Fixes too low security group rules quota https://review.openstack.org/600826 | 02:02 |
*** vnogin has quit IRC | 02:04 | |
*** fatdragon has quit IRC | 02:10 | |
*** tinwood has quit IRC | 02:10 | |
cloudnull | jamesdenton here's another one from my infra node which is bonded with DHCP https://gist.github.com/cloudnull/f38516639a31ef42b91fa3acbf7e28a0 | 02:10 |
jamesdenton | noted | 02:11 |
*** tinwood has joined #openstack-ansible | 02:11 | |
jamesdenton | where do these files sit? /etc/systemd/network? | 02:11 |
cloudnull | yes | 02:12 |
jamesdenton | k | 02:12 |
cloudnull | if you feel like digging into it - https://www.freedesktop.org/software/systemd/man/systemd.network.html | 02:13 |
cloudnull | lots of possibilities there | 02:13 |
cloudnull | https://www.freedesktop.org/software/systemd/man/systemd.netdev.html | 02:13 |
jamesdenton | oye | 02:13 |
cloudnull | https://www.freedesktop.org/software/systemd/man/systemd.link.html | 02:13 |
jamesdenton | i guess i should plan to get ahead of this, huh | 02:14 |
cloudnull | the role does most of what someone might want. | 02:17 |
openstackgerrit | Andriy Shevchenko proposed openstack/openstack-ansible-nspawn_hosts master: fix tox python3 overrides https://review.openstack.org/607450 | 02:17 |
cloudnull | however there's a lot going on there. | 02:17 |
jamesdenton | fair enough. suitable for bootstrapping networking of an environment in preparation of a deploy? | 02:18 |
*** markvoelker has joined #openstack-ansible | 02:18 | |
*** ianychoi has joined #openstack-ansible | 02:19 | |
cloudnull | yes. | 02:19 |
cloudnull | https://github.com/openstack/openstack-ansible/blob/master/tests/roles/bootstrap-host/tasks/prepare_networking.yml#L16-L137 | 02:20 |
cloudnull | thats a pretty good example | 02:21 |
jamesdenton | indeed. that's for an AIO, though? | 02:21 |
cloudnull | if each host had a var for the different IPs you could probably just change the ip addresses to "{{ VAR_WHATEVER }}" and just use that. | 02:21 |
jamesdenton | k | 02:21 |
cloudnull | yes you'd want to convert the dummy addresses to the real eth device names | 02:22 |
openstackgerrit | Merged openstack/openstack-ansible stable/queens: Fix for proper package name depending on base OS distribution https://review.openstack.org/607035 | 02:23 |
cloudnull | here's a user config where i did just that https://gist.github.com/cloudnull/69bde16011d1ea94edf926252ea93933#file-openstack_user_config-yml | 02:23 |
jamesdenton | oh man, you misspelled bridge. :P | 02:24 |
cloudnull | and the playbook i used to deploy it https://gist.github.com/cloudnull/69bde16011d1ea94edf926252ea93933#file-playbook-networkd-host-interfaces-yml | 02:24 |
cloudnull | meh | 02:24 |
jamesdenton | bookmarked. thanks for the tips. | 02:25 |
cloudnull | ++ have fun :) | 02:25 |
jamesdenton | oh yeah :| | 02:25 |
cloudnull | let me know if you have questions, happy to help | 02:25 |
jamesdenton | thanks :) | 02:25 |
cloudnull | my 2 lab environments are both using it, so far so good | 02:26 |
jamesdenton | nice. i'm in the middle of this deploy with netplan and it's fine so far, but i will ultimately move to networkd. i'm trying to deploy a 1+3 setup with an lxb/sriov node, ovs node, and ovs+dpdk node. had it all working once, but needed to wipe and redeploy | 02:27 |
jamesdenton | some days i miss writing ACLs and iRules. | 02:28 |
jamesdenton | 'twas a simpler time | 02:29 |
cloudnull | hahaha | 02:34 |
cloudnull | any/any for the win! | 02:34 |
jamesdenton | "It's temporary. Only for testing" | 02:34 |
cloudnull | hahaha! | 02:35 |
*** shyamb has joined #openstack-ansible | 02:36 | |
spatel | jamesdenton: no luck so far | 02:38 |
jamesdenton | yeah, i saw that. once i get mine in working order i'll take a look. right now i don't have any suggestions | 02:38 |
spatel | jamesdenton: i am curious how does that work in your environment | 02:38 |
jamesdenton | well, for one, i wasn't pinning, and two, i wasn't spinning up large instances | 02:39 |
spatel | if it doesn't work then i am going to lose my 50% capacity :( | 02:39 |
jamesdenton | never tested beyond one numa node | 02:39 |
spatel | I am not pinning also | 02:39 |
jamesdenton | k | 02:39 |
spatel | it feel like its a bug or some strange config issue... | 02:40 |
spatel | I think i need to pick DPDK path if its not work out | 02:41 |
spatel | not sure how DPDK solve my issue but worth try | 02:41 |
jamesdenton | not sure that it will, honestly. these things sometimes take time to work through | 02:41 |
spatel | hmm | 02:43 |
*** markvoelker has quit IRC | 02:51 | |
openstackgerrit | Taseer Ahmed proposed openstack/openstack-ansible master: Integrate Blazar with OpenStack Ansible https://review.openstack.org/549956 | 02:54 |
*** shyam89 has joined #openstack-ansible | 02:55 | |
*** ram5391_ has joined #openstack-ansible | 02:58 | |
*** shyamb has quit IRC | 02:59 | |
jamesdenton | spatel can you share your flavor/image details and method of creating the ports/instances? via pastebin | 02:59 |
spatel | ok | 02:59 |
ram5391_ | maybe stupid question, but doing a fresh .bootstrap-ansible.sh is yielding 404 errors on git clone using these urls: https://git.openstack.org/openstack/ansible-hardening | 03:00 |
ram5391_ | is there a known issue there? | 03:00 |
spatel | jamesdenton: http://paste.openstack.org/show/731314/ | 03:04 |
ram5391_ | for clarification, that was on the stable/rocky branch | 03:04 |
jamesdenton | thanks spatel. And the second instance you spin up: done the same way but with its own ports? same flavor/image? | 03:06 |
spatel | yes just change name to sriov-vm-2 | 03:06 |
jamesdenton | ram5391_ not sure. Did one a few hours ago that was OK. Will have to defer | 03:06 |
spatel | everytime it create new ports when i launch instance | 03:07 |
jamesdenton | k | 03:07 |
spatel | ram5391_: I would say change URL to https://github.com/openstack/ansible-hardening | 03:07 |
spatel | github.com is very reliable | 03:07 |
ram5391_ | spatel: seems like theres a config mismatch from the stable/rocky branch. Master is okay though | 03:08 |
jamesdenton | spatel it will likely be tomorrow before i'm in a position to spin up instances. but I will try your method and let you know how i compare. | 03:08 |
*** dave-mccowan has quit IRC | 03:08 | |
*** vnogin has joined #openstack-ansible | 03:09 | |
spatel | jamesdenton: thanks! i am very curious | 03:09 |
spatel | jamesdenton: thanks for helping me with this :) | 03:09 |
jamesdenton | i think i'm more surprised that your existing VM is being shutdown when the second comes up. I would just expect some kind of scheduling failure | 03:10 |
spatel | very few people here using these kind of technologies so hard to get help from community | 03:10 |
jamesdenton | no problem. this issue is important to me. need to understand how it works and why it's happening | 03:10 |
jamesdenton | we're learning together! | 03:10 |
spatel | jamesdenton: sometime VM got shutdown and sometime it go to paused mode | 03:10 |
jamesdenton | weirf | 03:11 |
jamesdenton | *weird | 03:11 |
ram5391_ | jamesdenton: I'm coming up on this error trying to do a fresh install. Have you seen it before? http://paste.openstack.org/show/731316/ | 03:11 |
spatel | but if i spin two vm with 8 vCPU and 8GB memory they works great | 03:11 |
spatel | Because in that case they stay in same numa node 0 | 03:12 |
jamesdenton | ram5391_ actually, yes, sort of. I had given the same IP to multiple hosts defined in openstack_user_config.yml | 03:12 |
cloudnull | ram5391_ i've only seen something like that when ... ^ jamesdenton beat me to it :) | 03:12 |
spatel | as soon as they cross numa it start acting up... | 03:12 |
cloudnull | o/ spatel | 03:12 |
ram5391_ | jamesdenton: cloudnull: so I'm deploying a _really_ small installation, headnode going to be doing all the fun stuff, how do I avoid that? | 03:13 |
jamesdenton | ram5391_ i would double check that file to make sure things are properly defined and parsed. | 03:13 |
ram5391_ | cloudnull: actually following your tutorial a bit | 03:13 |
spatel | I am going to open bug anyway to see what folks thinking about this | 03:13 |
*** vnogin has quit IRC | 03:13 | |
ram5391_ | jamesdenton: will do thanks, this is my config for reference: http://paste.openstack.org/show/731317/ | 03:14 |
jamesdenton | spatel go for it. i should be able to confirm soon enough. these are the G8s, right? | 03:14 |
spatel | Yes, HP DL360p G8 | 03:15 |
cloudnull | ram5391_ the issue is on line 125, storage1 doesn't have an ip | 03:15 |
jamesdenton | ^^ | 03:15 |
jamesdenton | Thats why: KeyError: 'ip'. | 03:16 |
*** maddtux has joined #openstack-ansible | 03:16 | |
ram5391_ | cloudnull: jamesdenton: *facepalm* thanks | 03:17 |
cloudnull | no worries, it happens :) | 03:18 |
spatel | jamesdenton: this is interesting... i have spun 3 VM with 8vcp core and they works | 03:19 |
*** cshen has joined #openstack-ansible | 03:19 | |
jamesdenton | these are 2x 8/16 CPUs? | 03:19 |
jamesdenton | 8c/16t | 03:20 |
spatel | you are talking about 3 VM ? | 03:20 |
spatel | they are 8vCPU / 8GB mem | 03:21 |
jamesdenton | no, the computes. what are the CPU specs | 03:21 |
spatel | Compute node has 32 Core / 32GB memory | 03:21 |
jamesdenton | and can you run 'virsh vcpuinfo instance-XXXXXX' and report that back? | 03:21 |
spatel | let me pastebin | 03:21 |
jamesdenton | cloudnull what is the preference for rolling features on a per-OS basis... say, ubuntu, then centos, then suse, for example. Or is the expectation that all three be supported out of the gate? | 03:23 |
spatel | jamesdenton: here you go http://paste.openstack.org/show/731318/ | 03:23 |
cloudnull | jamesdenton i generally do ubuntu, suse, cent | 03:24 |
cloudnull | however its kinda up to you | 03:24 |
*** cshen has quit IRC | 03:24 | |
jamesdenton | i guess the better question is.. do you merge the ubuntu patches, then go back and add support for the others? | 03:24 |
cloudnull | yes | 03:24 |
jamesdenton | k | 03:25 |
*** shyam89 has quit IRC | 03:25 | |
cloudnull | i'll just add a debug statement that says "not implemented yet..." | 03:25 |
cloudnull | or something similar | 03:25 |
spatel | jamesdenton: my compute node CPU is Intel(R) Xeon(R) CPU E5-2660 0 @ 2.20GHz | 03:25 |
jamesdenton | ok cool | 03:25 |
jamesdenton | spatel can you install numactl and report back: numactl --hardware | 03:26 |
spatel | jamesdenton: http://paste.openstack.org/show/731319/ | 03:26 |
jamesdenton | do you have hugepages reserved? | 03:27 |
spatel | no | 03:28 |
spatel | i didn't configure that | 03:28 |
jamesdenton | k | 03:28 |
spatel | i have tried that with 2M hugepages but same result so i have removed that option | 03:29 |
spatel | as per result look like 8vCPU VMs works but 10vCPU vm doesn't work | 03:29 |
spatel | that is very strange.. | 03:30 |
spatel | let me try again and see.. 10vCPU VM | 03:30 |
jamesdenton | based on that vcpuinfo, it looks like the vcpus are bound to cores across both nodes, so that doesn't really appear to be an issue | 03:32 |
jamesdenton | how many vCPUs do you intend to assign to VMs on these nodes? | 03:33 |
spatel | for production application 15vCPU per VM (total 2VM) | 03:33 |
spatel | my application is CPU hungry VoIP realtime RTP stream | 03:34 |
spatel | I am testing with 10vCPU lets see | 03:35 |
spatel | This is interesting when i launch with 10vCPU i get this error in nova.log --> No net device was found for VF 0000:03:09.7: PciDeviceNotFoundById: PCI device 0000:03:09.7 not found | 03:37 |
spatel | virsh list shows VM is running but i can't get console :( | 03:37 |
*** shyam89 has joined #openstack-ansible | 03:37 | |
spatel | going to remove "hw:pci_numa_affinity_policy='preferred'" option and try | 03:38 |
jamesdenton | k | 03:38 |
spatel | Got this again - No net device was found for VF 0000:03:09.7: PciDeviceNotFoundById: PCI device 0000:03:09.7 not found | 03:40 |
spatel | vm showing running but can't console it and ping it.. | 03:41 |
spatel | let me try 16vCPU and see | 03:41 |
spatel | look like instance need to be correct vCPU combo | 03:41 |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/ansible-role-python_venv_build master: Add the option to define pip index arguments https://review.openstack.org/607458 | 03:43 |
*** markvoelker has joined #openstack-ansible | 03:48 | |
spatel | jamesdenton: ^^ | 03:49 |
-spatel- 14 instance-000002a0 running | 03:49 | |
-spatel- 15 instance-000002a3 running | 03:49 | |
jamesdenton | so 16 worked? | 03:49 |
spatel | i used 16vCP and 8GB memory and that works | 03:49 |
spatel | but if i try 10vCPU then it didn't work | 03:50 |
spatel | very odd | 03:50 |
spatel | i wonder if its related to Memory issue ? | 03:50 |
spatel | your memory need to be on same numa node ?? | 03:50 |
spatel | let me try more combination! | 03:51 |
* jamesdenton shrug | 03:51 | |
spatel | openstack flavor create --id 19 --ram 10000 --vcpus 16 --disk 10 sriov-2 | 03:54 |
spatel | in this case memory will go across numa lets see | 03:54 |
spatel | jamesdenton: so that works with 10G memory.. hmmm | 03:57 |
-spatel- 16 instance-000002a6 running | 03:57 | |
-spatel- 17 instance-000002a9 running | 03:57 | |
spatel | both VM up and pinging | 03:57 |
spatel | let me try more combination | 03:57 |
jamesdenton | nice | 03:58 |
spatel | going to try 15vCPU and 14G mem | 03:59 |
jamesdenton | have you had success with odd vCPU counts? | 03:59 |
spatel | 10vCPU didn't work so now trying 15vCP | 04:01 |
spatel | i am going to try all number 1 by 1 | 04:01 |
jamesdenton | science. | 04:01 |
spatel | :) | 04:01 |
spatel | That also works! | 04:05 |
spatel | how this thing got fixed itself?? | 04:05 |
spatel | it was broken earlier but right now look like everything working.. can't believe it | 04:06 |
jamesdenton | were you only trying 10 vCPU earlier? | 04:06 |
jamesdenton | i can't recall. Either way, congrats. Now continue testing it and find the breaking points, and report back :D | 04:06 |
spatel | afternoon i was trying 15 vCPU and they was causing issue | 04:07 |
spatel | I am not going to leave it.. tomorrow i am going to pick other compute node and try to reproduce it again | 04:07 |
spatel | going to try 10 vCPU again because that one is still broken | 04:08 |
*** shyam89 has quit IRC | 04:11 | |
spatel | 10vCPU / 10GB memory flavor not working | 04:11 |
spatel | very odd look like flavor had issue, i have create similar size flavor and that works.. | 04:16 |
spatel | is it possible flavor had issue.. strange i have compare both flavor and they are same but still one is working other not | 04:16 |
jamesdenton | for 10/10? | 04:17 |
spatel | yes | 04:18 |
jamesdenton | interesting. | 04:18 |
spatel | one thing i did different, earlier i have add numa_policy on one of flavor but later i have removed it | 04:19 |
spatel | may be its showing it has been gone but its still there somewhere.. hmm | 04:19 |
jamesdenton | hmmm. | 04:19 |
spatel | let me add that setting on new flavor and try | 04:19 |
jamesdenton | i'm gonna take off. Nice work tonight. Keep me posted if you don't mind | 04:20 |
*** markvoelker has quit IRC | 04:21 | |
spatel | i will | 04:21 |
spatel | jamesdenton: thank you so much!! and will keep digging | 04:22 |
spatel | good night | 04:22 |
jamesdenton | thanks! you too. see ya | 04:22 |
cloudnull | night all | 04:24 |
*** macza has joined #openstack-ansible | 04:26 | |
*** macza has quit IRC | 04:30 | |
*** gkadam has joined #openstack-ansible | 04:32 | |
*** gkadam has quit IRC | 04:32 | |
*** cshen has joined #openstack-ansible | 04:36 | |
*** vnogin has joined #openstack-ansible | 04:41 | |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-os_keystone master: Add tasks to remove legacy files https://review.openstack.org/607462 | 04:41 |
*** cshen has quit IRC | 04:42 | |
*** vnogin has quit IRC | 04:45 | |
*** maddtux has quit IRC | 04:45 | |
*** maddtux has joined #openstack-ansible | 04:46 | |
*** chandankumar has quit IRC | 04:46 | |
*** chandankumar has joined #openstack-ansible | 04:47 | |
*** spatel has quit IRC | 04:49 | |
*** shyamb has joined #openstack-ansible | 04:53 | |
*** priteau has joined #openstack-ansible | 04:56 | |
*** Bhujay has joined #openstack-ansible | 05:01 | |
*** priteau has quit IRC | 05:01 | |
*** Bhujay has quit IRC | 05:01 | |
*** Bhujay has joined #openstack-ansible | 05:02 | |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-os_glance master: Remove infectious distro service packages on source installs https://review.openstack.org/607466 | 05:02 |
*** ram5391_ has quit IRC | 05:06 | |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-os_barbican master: Remove infectious distro service packages on source installs https://review.openstack.org/607467 | 05:09 |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-os_cinder master: Remove infectious distro service packages on source installs https://review.openstack.org/607469 | 05:15 |
*** markvoelker has joined #openstack-ansible | 05:18 | |
chandankumar | odyssey4me: Hello | 05:29 |
chandankumar | odyssey4me: https://review.openstack.org/#/c/591424/6/tasks/install/distro.yml@19 at this distro support for tempest role is failing | 05:30 |
chandankumar | odyssey4me: need some help there | 05:30 |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-os_glance master: Remove infectious distro service packages on source installs https://review.openstack.org/607466 | 05:37 |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-os_glance master: Remove infectious distro service packages on source installs https://review.openstack.org/607466 | 05:39 |
*** udesale has joined #openstack-ansible | 05:41 | |
*** mma has joined #openstack-ansible | 05:45 | |
*** mma has quit IRC | 05:49 | |
*** shyamb has quit IRC | 05:51 | |
*** markvoelker has quit IRC | 05:52 | |
openstackgerrit | Chandan Kumar proposed openstack/openstack-ansible-os_tempest master: Added support for installing tempest from distro https://review.openstack.org/591424 | 06:01 |
*** DanyC has joined #openstack-ansible | 06:11 | |
*** mma has joined #openstack-ansible | 06:11 | |
*** shyamb has joined #openstack-ansible | 06:21 | |
*** DanyC has quit IRC | 06:22 | |
*** DanyC has joined #openstack-ansible | 06:23 | |
*** DanyC has quit IRC | 06:28 | |
openstackgerrit | Andriy Shevchenko proposed openstack/openstack-ansible-openstack_hosts master: fix tox python3 overrides https://review.openstack.org/607473 | 06:28 |
*** vnogin has joined #openstack-ansible | 06:29 | |
*** vnogin has quit IRC | 06:34 | |
*** cshen has joined #openstack-ansible | 06:37 | |
*** mma has quit IRC | 06:38 | |
openstackgerrit | Max Kochubey proposed openstack/openstack-ansible-os_horizon master: An openstack-ansible deployment does not have any options to set the local_settings.py options for Horizon to support Keystone V3 multiple domains dropdown menu and its variants to choose. These options in local_settings.py are: https://review.openstack.org/607474 | 06:42 |
*** cshen has quit IRC | 06:46 | |
openstackgerrit | Max Kochubey proposed openstack/openstack-ansible-os_horizon master: Horizon configuration to support domains dropdown https://review.openstack.org/607474 | 06:50 |
*** pcaruana has joined #openstack-ansible | 06:51 | |
openstackgerrit | Max Kochubey proposed openstack/openstack-ansible-os_horizon master: Horizon configuration to support domains dropdown https://review.openstack.org/607474 | 06:52 |
*** cshen has joined #openstack-ansible | 07:01 | |
*** tosky has joined #openstack-ansible | 07:03 | |
*** monty has joined #openstack-ansible | 07:12 | |
openstackgerrit | Max Kochubey proposed openstack/openstack-ansible-os_horizon master: Horizon configuration to support domains dropdown https://review.openstack.org/607474 | 07:13 |
*** aedc has joined #openstack-ansible | 07:15 | |
*** mbuil has joined #openstack-ansible | 07:18 | |
*** sep has quit IRC | 07:19 | |
*** jroll has quit IRC | 07:19 | |
*** logan- has quit IRC | 07:19 | |
*** mrda has quit IRC | 07:19 | |
*** jehane has quit IRC | 07:19 | |
*** canori01 has quit IRC | 07:19 | |
*** alongwayup has quit IRC | 07:19 | |
*** mbuil_ has quit IRC | 07:19 | |
*** odyssey4me has quit IRC | 07:19 | |
*** monte has quit IRC | 07:19 | |
*** bgmccollum has quit IRC | 07:19 | |
*** jehane has joined #openstack-ansible | 07:22 | |
*** olivierb has joined #openstack-ansible | 07:24 | |
*** DanyC has joined #openstack-ansible | 07:24 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/openstack-ansible master: Imported Translations from Zanata https://review.openstack.org/607481 | 07:24 |
*** vnogin has joined #openstack-ansible | 07:28 | |
*** aedc has quit IRC | 07:31 | |
*** sep has joined #openstack-ansible | 07:32 | |
*** jroll has joined #openstack-ansible | 07:32 | |
*** logan- has joined #openstack-ansible | 07:32 | |
*** alongwayup has joined #openstack-ansible | 07:32 | |
*** bgmccollum has joined #openstack-ansible | 07:32 | |
*** odyssey4me has joined #openstack-ansible | 07:32 | |
*** vnogin has quit IRC | 07:32 | |
*** gkadam has joined #openstack-ansible | 07:44 | |
*** hamzaachi has joined #openstack-ansible | 07:45 | |
*** shyamb has quit IRC | 07:46 | |
openstackgerrit | Markos Chandras (hwoarang) proposed openstack/openstack-ansible-rabbitmq_server stable/rocky: rabbitmq_upgrade_check: Do not complain for upgrades on distro packages https://review.openstack.org/607487 | 07:55 |
openstackgerrit | Markos Chandras (hwoarang) proposed openstack/openstack-ansible-rabbitmq_server stable/queens: rabbitmq_upgrade_check: Do not complain for upgrades on distro packages https://review.openstack.org/607488 | 07:55 |
openstackgerrit | Markos Chandras (hwoarang) proposed openstack/openstack-ansible-rabbitmq_server stable/pike: rabbitmq_upgrade_check: Do not complain for upgrades on distro packages https://review.openstack.org/607489 | 07:55 |
openstackgerrit | Markos Chandras (hwoarang) proposed openstack/openstack-ansible-rabbitmq_server stable/ocata: rabbitmq_upgrade_check: Do not complain for upgrades on distro packages https://review.openstack.org/607490 | 07:55 |
*** francois has joined #openstack-ansible | 08:00 | |
*** mma has joined #openstack-ansible | 08:04 | |
*** hamzaachi_ has joined #openstack-ansible | 08:05 | |
*** DanyC has quit IRC | 08:08 | |
*** shardy has joined #openstack-ansible | 08:11 | |
*** hamzaachi has quit IRC | 08:13 | |
*** sep has quit IRC | 08:13 | |
*** jroll has quit IRC | 08:13 | |
*** logan- has quit IRC | 08:13 | |
*** alongwayup has quit IRC | 08:13 | |
*** odyssey4me has quit IRC | 08:13 | |
*** bgmccollum has quit IRC | 08:13 | |
*** DanyC has joined #openstack-ansible | 08:17 | |
*** markvoelker has joined #openstack-ansible | 08:18 | |
jrosser | The are a lot of integrated build ubuntu jobs timing out and it looks like very slow apt installation - it's unclear if this slow repos or hosts slow to install | 08:22 |
*** sep has joined #openstack-ansible | 08:27 | |
*** jroll has joined #openstack-ansible | 08:27 | |
*** logan- has joined #openstack-ansible | 08:27 | |
*** alongwayup has joined #openstack-ansible | 08:27 | |
*** bgmccollum has joined #openstack-ansible | 08:27 | |
*** odyssey4me has joined #openstack-ansible | 08:27 | |
*** electrofelix has joined #openstack-ansible | 08:34 | |
*** francois has quit IRC | 08:40 | |
*** Emine has joined #openstack-ansible | 08:41 | |
*** shyamb has joined #openstack-ansible | 08:42 | |
*** francois has joined #openstack-ansible | 08:44 | |
*** sep has quit IRC | 08:51 | |
*** jroll has quit IRC | 08:51 | |
*** logan- has quit IRC | 08:51 | |
*** alongwayup has quit IRC | 08:51 | |
*** odyssey4me has quit IRC | 08:51 | |
*** bgmccollum has quit IRC | 08:51 | |
*** markvoelker has quit IRC | 08:51 | |
*** rgogunskiy has joined #openstack-ansible | 08:56 | |
evrardjp | good morning | 09:00 |
evrardjp | wow. I was unlogged from gerrit today. It's been a while that didn't happen. | 09:00 |
noonedeadpunk | morning evrardjp:) I have several questions about keepalived since friday. Do you have some time? | 09:05 |
*** sep has joined #openstack-ansible | 09:05 | |
*** jroll has joined #openstack-ansible | 09:05 | |
*** logan- has joined #openstack-ansible | 09:05 | |
*** alongwayup has joined #openstack-ansible | 09:05 | |
*** bgmccollum has joined #openstack-ansible | 09:05 | |
*** odyssey4me has joined #openstack-ansible | 09:05 | |
evrardjp | I need to first catch up my thousand of things -- are you the one that did two PR during my holidays? | 09:06 |
evrardjp | I will ping you back a little later if you don't mind | 09:06 |
noonedeadpunk | evrardjp: yeah, that was me. And I didn't get why check was failed | 09:06 |
noonedeadpunk | yep, sure | 09:07 |
evrardjp | I now I applied for a new version of semaphore, so maybe my testing is broken now | 09:07 |
*** aedc has joined #openstack-ansible | 09:07 | |
*** mma has quit IRC | 09:10 | |
*** mma has joined #openstack-ansible | 09:11 | |
*** Emine has quit IRC | 09:12 | |
olivierb | good morning everyone | 09:12 |
*** priteau has joined #openstack-ansible | 09:13 | |
olivierb | evrardjp could you please have a quick look at https://review.openstack.org/606899 and https://review.openstack.org/606910. Trying to fix the great healthcheck-* playbooks | 09:13 |
openstackgerrit | Markos Chandras (hwoarang) proposed openstack/openstack-ansible-tests stable/queens: common-tasks: nodepool: Set openSUSE OBS mirror for OpenStack CI https://review.openstack.org/607505 | 09:18 |
evrardjp | olivierb: thanks | 09:21 |
evrardjp | it makes sense and easy to review | 09:21 |
*** cshen has quit IRC | 09:21 | |
olivierb | evrardjp many thanks to you | 09:23 |
*** Emine has joined #openstack-ansible | 09:25 | |
*** cshen has joined #openstack-ansible | 09:25 | |
*** vnogin has joined #openstack-ansible | 09:26 | |
evrardjp | fdz to answer your question, I am not sure code was written up, and I am not familiar enough with designate to ensure this is the proper way to do things. Maybe you discussed dns_domain_ports in this channel already and got your answer? (it's about http://eavesdrop.openstack.org/irclogs/%23openstack-ansible/%23openstack-ansible.2018-01-19.log.html#t2018-01-19T13:28:51 ) | 09:29 |
*** vnogin has quit IRC | 09:31 | |
chandankumar | odyssey4me: Hello | 09:40 |
chandankumar | odyssey4me: https://review.openstack.org/#/c/591424/6/tasks/install/distro.yml for yum/dnf will I write a seperate task ? | 09:41 |
odyssey4me | chandankumar: no, you have no need to - just remove those entries from the list and the default(omit) in the ternary will result in ansible leaving out that option for anything that is not zypper or apt | 09:46 |
odyssey4me | chandankumar: basically the 'package' module is an action plugin which acts as an interface on top of the package manager modules under it - the package module will accept any of the options applicable to the underlying package modules, but it will pass the options to them all, and if one does not support it then it will error out | 09:47 |
odyssey4me | so in this case you're saying if the package manager is zypper/apt, then pass down the update_cache option - otherwise, do not | 09:48 |
evrardjp | odyssey4me: hey -- for https://review.openstack.org/#/c/607291/1/tasks/keystone_post_install.yml@24 I just realized it's a backport | 09:54 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_keystone master: Only do sshd enablement task on the first play host https://review.openstack.org/607522 | 09:55 |
openstackgerrit | Chandan Kumar proposed openstack/openstack-ansible-os_tempest master: Added support for installing tempest from distro https://review.openstack.org/591424 | 09:55 |
evrardjp | odyssey4me: I think I will downgrade my vote -- it seems it's very unclear the reason we are doing this | 09:56 |
chandankumar | odyssey4me: thanks, | 09:56 |
chandankumar | odyssey4me: but still I am not getting how yum install will work for distro mode is used? | 09:56 |
odyssey4me | chandankumar: what do you mean? | 09:56 |
chandankumar | odyssey4me: sorry got it | 09:57 |
odyssey4me | evrardjp: the issue is that in the nspawn container base images, sshd is masked so that it does not start -> for the repo server and keystone, we use rsync to copy things between the cluster members, that's why we need to add a task to enable them | 09:58 |
evrardjp | ok | 09:58 |
chandankumar | odyssey4me: one more thing https://review.openstack.org/#/c/591424/8/tasks/install/distro.yml will I merge tempest and tempest plugin installation in a single task or keep it seperate? | 09:58 |
evrardjp | understood | 09:58 |
evrardjp | maybe worth adding in the comment | 09:59 |
evrardjp | wait | 09:59 |
evrardjp | scratch that last comment | 09:59 |
*** shyamb has quit IRC | 10:01 | |
*** shyamb has joined #openstack-ansible | 10:03 | |
*** vnogin has joined #openstack-ansible | 10:06 | |
*** Emine has quit IRC | 10:07 | |
noonedeadpunk | I don't know if it's known problem or not, but it seems that bootstrap-ansible.sh script from stable/rocky is not functional due to ansible-role-requirements.yml, as fails at cloning repos step http://paste.openstack.org/show/731284/ | 10:11 |
*** vnogin has quit IRC | 10:11 | |
*** kukacz has quit IRC | 10:12 | |
*** kukacz has joined #openstack-ansible | 10:13 | |
openstackgerrit | Nicolas Bock proposed openstack/openstack-ansible-os_octavia master: Added suse vars https://review.openstack.org/607304 | 10:16 |
odyssey4me | chandankumar: there's no reason to have two tasks if you're installing the same thing the same way | 10:19 |
openstackgerrit | Chandan Kumar proposed openstack/openstack-ansible-os_tempest master: Added support for installing tempest from distro https://review.openstack.org/591424 | 10:21 |
chandankumar | odyssey4me: Done, Thanks :-) | 10:21 |
evrardjp | noonedeadpunk: rocky seems fine in periodic logs | 10:24 |
*** gkadam has quit IRC | 10:24 | |
odyssey4me | noonedeadpunk: I saw you note that yesterday, but I haven't seen the same. It's a bit concerning. | 10:25 |
*** udesale has quit IRC | 10:26 | |
evrardjp | odyssey4me: noonedeadpunk maybe worth deleting the roles and re-running it | 10:26 |
evrardjp | I am expecting ansible module does a fancy thing and doesn't try to refetch all the references | 10:26 |
odyssey4me | evrardjp: it's a bit concerning, given that we've not seen this happen before until recently | 10:31 |
*** shyamb has quit IRC | 10:34 | |
noonedeadpunk | evrardjp: yes. removing /etc/ansible/roles worked, thanks | 10:36 |
openstackgerrit | Nicolas Bock proposed openstack/openstack-ansible master: Pretty-print output during bootstrap process https://review.openstack.org/607526 | 10:37 |
*** shyamb has joined #openstack-ansible | 10:41 | |
*** vnogin has joined #openstack-ansible | 10:45 | |
*** markvoelker has joined #openstack-ansible | 10:49 | |
*** vnogin has quit IRC | 10:49 | |
evrardjp | odyssey4me: let me check the recent changes in git module | 10:54 |
evrardjp | It would be nice to know when this has started, as early 2.5 have the same patches as our 2.5.8 | 10:58 |
jamesdenton | mornin | 11:01 |
evrardjp | how are things jamesdenton ? | 11:20 |
jamesdenton | good! | 11:20 |
jamesdenton | how about you? | 11:20 |
*** markvoelker has quit IRC | 11:22 | |
nicolasbock | Hi, good morning | 11:30 |
jamesdenton | hi | 11:30 |
nicolasbock | Can I re-run a particular check on Zuul? Or is it all or nothing? | 11:30 |
hwoarang | nicolasbock: all or nothing | 11:32 |
nicolasbock | Too bad | 11:32 |
nicolasbock | Even Travis-CI can do that ;) | 11:32 |
nicolasbock | I mean re-run a particular job | 11:32 |
hwoarang | yeah you can't | 11:32 |
nicolasbock | oh well | 11:33 |
*** shyamb has quit IRC | 11:34 | |
*** shyamb has joined #openstack-ansible | 11:34 | |
*** macza has joined #openstack-ansible | 11:37 | |
*** vollman has joined #openstack-ansible | 11:37 | |
*** shyamb has quit IRC | 11:42 | |
*** macza has quit IRC | 11:42 | |
francois | evrardjp: yep thanks, I got a pointer yesterday to using neutron_ml2_conf_ini_overrides which worked great | 11:43 |
francois | and now I'm not so sure that I actually need dns_domain_ports instead of dns :/ | 11:44 |
francois | still testing :) | 11:44 |
*** hamzaachi_ has quit IRC | 11:52 | |
olivierb | hwoarang I replied to your concern in https://review.openstack.org/#/c/606899/1 ;-) | 12:00 |
hwoarang | olivierb: if the fix is in rocky and master why not do a backport then? | 12:01 |
*** ansmith has quit IRC | 12:02 | |
olivierb | because the code has changed a lot and I think it was just "forgotten" aka was not a single fix/change | 12:02 |
*** shyamb has joined #openstack-ansible | 12:02 | |
olivierb | this is a backport from my perspective | 12:02 |
olivierb | but not cherry-picked -x if this is what you mean | 12:03 |
*** udesale has joined #openstack-ansible | 12:03 | |
*** Emine has joined #openstack-ansible | 12:14 | |
*** hamzaachi_ has joined #openstack-ansible | 12:14 | |
*** dave-mccowan has joined #openstack-ansible | 12:20 | |
olivierb | hwoarang concerning https://review.openstack.org/#/c/607007/ and if I understood cloudnull well, this is on a per release basis meaning all versions of rabbitmq + erlang are specific to master/rocky/... therefore this change only applies to queens | 12:23 |
*** vnogin has joined #openstack-ansible | 12:24 | |
hwoarang | ok i see | 12:24 |
*** vnogin has quit IRC | 12:28 | |
*** fghaas has joined #openstack-ansible | 12:34 | |
*** kaiokmo has quit IRC | 12:49 | |
odyssey4me | if anyone's got some time, I've got a few patches ready for review - several of which are backports: https://goo.gl/k9cCfF | 12:51 |
*** kaiokmo has joined #openstack-ansible | 12:58 | |
openstackgerrit | Dmitriy Rabotjagov (noonedeadpunk) proposed openstack/openstack-ansible-os_cinder master: Added volume usage collection, when cinder_ceilometer_enabled https://review.openstack.org/605769 | 13:01 |
*** udesale has quit IRC | 13:05 | |
*** shyamb has quit IRC | 13:05 | |
openstackgerrit | Dmitriy Rabotjagov (noonedeadpunk) proposed openstack/openstack-ansible-os_cinder master: Added volume usage collection, when cinder_ceilometer_enabled https://review.openstack.org/605769 | 13:07 |
*** shyamb has joined #openstack-ansible | 13:07 | |
openstackgerrit | Arx Cruz proposed openstack/openstack-ansible-os_tempest master: Enable stackviz support https://review.openstack.org/603100 | 13:08 |
*** ansmith has joined #openstack-ansible | 13:12 | |
*** spatel_ has joined #openstack-ansible | 13:14 | |
*** aedc has quit IRC | 13:18 | |
spatel_ | jamesdenton: morning | 13:18 |
jamesdenton | hi spatel_ | 13:18 |
spatel_ | I did this configuration, tell me if you seeing anything wrong http://paste.openstack.org/show/731366/ | 13:18 |
spatel_ | i have specified two nic eno1/eno2 in sriov_nic_agent | 13:19 |
spatel_ | but in nova.conf whitelist only one which i am using for VF eno2 | 13:19 |
jamesdenton | it might work. not really sure. i would try to spin up small instances to consume all the VFs and see what happens | 13:22 |
spatel_ | I am testing it and its working | 13:23 |
spatel_ | i was just wanted to check if in future it cause any issue | 13:23 |
jamesdenton | TBD | 13:23 |
*** maddtux has quit IRC | 13:28 | |
mgariepy | hwoarang, http://logs.openstack.org/89/605789/1/check/openstack-ansible-functional-opensuse-423/927ae60/job-output.txt.gz#_2018-10-03_01_34_04_239516 | 13:32 |
mgariepy | is this new or you already know about that and it's fixed ? | 13:32 |
hwoarang | mgariepy: should be fixed by now... | 13:32 |
chandankumar | odyssey4me: need some help here http://logs.openstack.org/24/591424/9/check/openstack-ansible-functional-centos-7/0d18ba5/job-output.txt.gz#_2018-10-03_12_14_28_313123 | 13:34 |
chandankumar | odyssey4me: I am not sure what I am doing wrong here https://review.openstack.org/#/c/591424/ | 13:35 |
mgariepy | chandankumar, check my comment | 13:41 |
chandankumar | mgariepy: Thanks :-) | 13:41 |
mgariepy | you are welcome | 13:42 |
openstackgerrit | Merged openstack/openstack-ansible-os_keystone stable/rocky: Add variable for the ssh service https://review.openstack.org/607291 | 13:46 |
openstackgerrit | Chandan Kumar proposed openstack/openstack-ansible-os_tempest master: Added support for installing tempest from distro https://review.openstack.org/591424 | 13:47 |
*** kaiokmo has quit IRC | 13:47 | |
openstackgerrit | Merged openstack/openstack-ansible stable/queens: Add count to ping command for predictive process termination https://review.openstack.org/606899 | 13:51 |
*** tosky__ has joined #openstack-ansible | 13:51 | |
*** tosky has quit IRC | 13:51 | |
*** kaiokmo has joined #openstack-ansible | 13:51 | |
*** tosky__ is now known as tosky | 13:52 | |
*** shyamb has quit IRC | 13:58 | |
mnaser | cloudnull: you around? | 14:01 |
mnaser | i'm building a compute node using LVM and i am having an issue where stuff runs under qemu user, but the lvm device is created under 'root' .. so i think it's unable to read it | 14:01 |
*** shyamb has joined #openstack-ansible | 14:01 | |
*** olivierb_ has joined #openstack-ansible | 14:02 | |
*** rpittau_ has joined #openstack-ansible | 14:02 | |
*** olivierb has quit IRC | 14:03 | |
*** rpittau has quit IRC | 14:03 | |
*** spatel_ has quit IRC | 14:04 | |
*** Bhujay has quit IRC | 14:06 | |
*** Bhujay has joined #openstack-ansible | 14:07 | |
*** spatel has joined #openstack-ansible | 14:07 | |
*** shananigans has joined #openstack-ansible | 14:07 | |
*** skiedude has joined #openstack-ansible | 14:15 | |
*** Bhujay has quit IRC | 14:16 | |
*** chandankumar is now known as chkumar|pyconind | 14:21 | |
*** shyamb has quit IRC | 14:24 | |
cloudnull | mornings all | 14:24 |
cloudnull | mnaser I am now | 14:25 |
mnaser | cloudnull: ^ about the lvm stuff.. not sure if you ran into that | 14:25 |
cloudnull | like the device ownership is "qemu" ? | 14:26 |
cloudnull | in /dev/mapper/... | 14:26 |
noonedeadpunk | FYI I've added yesterday's etherpad for berlin summit on the page https://wiki.openstack.org/wiki/Forum/Berlin2018#Etherpads_from_Teams_and_Working_Groups | 14:28 |
cloudnull | noonedeadpunk: excellent! | 14:29 |
mnaser | cloudnull: yeah.. but it's actually root, not qemu | 14:34 |
mnaser | so qemu cant start up properly | 14:34 |
mnaser | mgariepy: how did you end up solving your slow big ram machine boot issues? | 14:34 |
mgariepy | new kernel | 14:35 |
mgariepy | mnaser, the kernel in proposed fixed it. | 14:35 |
mnaser | mgariepy: ah but this isnt centos? | 14:35 |
mgariepy | nop it's not. | 14:35 |
mgariepy | was ubunut | 14:35 |
mgariepy | also it was only with pike. | 14:36 |
mgariepy | queens has a new version of libvirt which didn't had the same issue. | 14:36 |
odyssey4me | mnaser: it seems that some of our product folks are a bit confused about our stance on xenial/bionic for rocky and stein given that devstack is not yet using bionic, but is only moving to use it in stein | 14:36 |
odyssey4me | perhaps we should write it up as a spec to be clear about why we're doing the transition in rocky, rather than in stein... what do you think | 14:37 |
*** cshen has quit IRC | 14:37 | |
*** ivve has joined #openstack-ansible | 14:38 | |
openstackgerrit | Panagiotis Karalis proposed openstack/openstack-ansible-os_tacker master: Tacker uses OpenStack Barbican for secret keys https://review.openstack.org/605784 | 14:40 |
cloudnull | mnaser is that just a permissions issue, someting you can chown / facl ? | 14:42 |
*** spatel has quit IRC | 14:42 | |
*** spatel has joined #openstack-ansible | 14:44 | |
*** weezS has joined #openstack-ansible | 14:48 | |
shananigans | Should be a quick one if anyone has the time: https://review.openstack.org/#/c/607334/ | 14:48 |
*** spatel has quit IRC | 14:48 | |
*** spatel has joined #openstack-ansible | 14:49 | |
cloudnull | anyone want to review https://review.openstack.org/#/c/607466 - should help resolve a source of transient failures ? | 14:50 |
cloudnull | 's/?/./g' | 14:50 |
*** iurygregory has joined #openstack-ansible | 14:50 | |
*** KeithMnemonic has quit IRC | 14:51 | |
*** spatel has quit IRC | 14:55 | |
*** Emine has quit IRC | 14:58 | |
*** rgogunskiy has quit IRC | 15:02 | |
hwoarang | cloudnull: oops my bad I guess :/ +2 | 15:03 |
openstackgerrit | Manuel Buil proposed openstack/openstack-ansible-os_neutron master: Provide support for "force_metadata" in dnsmasq https://review.openstack.org/607608 | 15:04 |
*** cshen has joined #openstack-ansible | 15:05 | |
*** spatel_ has joined #openstack-ansible | 15:05 | |
spatel_ | jamesdenton: ^^ | 15:05 |
*** ArchiFleKs has quit IRC | 15:06 | |
spatel_ | if i set "aggregate_instance_extra_specs:pinned='true', hw:cpu_policy='dedicated', hw:pci_numa_affinity_policy='preferred'" in flavor then its only allowing me to run instance on NUMA 0 and if i try to add instance in NUMA1 it saying no host available 500 error | 15:06 |
*** FuzzyFerric has joined #openstack-ansible | 15:07 | |
spatel_ | If i remove those properties values then it allowing me to run instance on both NUMA node but without pinning :( | 15:07 |
*** FuzzyFerric has left #openstack-ansible | 15:08 | |
*** FuzzyFerric has joined #openstack-ansible | 15:09 | |
*** kwu83tw has joined #openstack-ansible | 15:09 | |
*** kwu_83tw has joined #openstack-ansible | 15:09 | |
*** cshen has quit IRC | 15:09 | |
*** cshen has joined #openstack-ansible | 15:15 | |
*** spatel_ has quit IRC | 15:17 | |
openstackgerrit | Manuel Buil proposed openstack/openstack-ansible-os_neutron master: Provide support for "force_metadata" in dnsmasq https://review.openstack.org/607608 | 15:21 |
*** mma has quit IRC | 15:21 | |
*** mma has joined #openstack-ansible | 15:32 | |
*** mma has quit IRC | 15:33 | |
*** pcaruana has quit IRC | 15:33 | |
*** macza has joined #openstack-ansible | 15:39 | |
*** hamzy has quit IRC | 15:40 | |
openstackgerrit | German Eichberger proposed openstack/openstack-ansible-os_octavia master: Break out config files for each octavia service https://review.openstack.org/603228 | 15:40 |
*** hamzy has joined #openstack-ansible | 15:43 | |
mnaser | odyssey4me: i think that's a good idea, i was thinking that would probably be part of our documentation | 15:43 |
mnaser | as of the upgrades | 15:43 |
mnaser | cloudnull: it seems to look like just a permission issue on the surface, i havent played a lot with facl but i dont think chown would work because it always creates new devices | 15:43 |
mnaser | so things like /dev/dm-N appear | 15:43 |
*** spatel has joined #openstack-ansible | 15:44 | |
spotz | odyssey4me: Question for that ssl bug, If I check to see if openstack_external_ssl: false (not sure yet if I need to check for haproxy_ssl: false) can I tell it to use one jinja2 file over another? Or would it be more proper to have one file but select one set of contents over the other? I'd like to match what we're doing | 15:44 |
spatel | damn it!! my client getting disconnect very often today | 15:44 |
spatel | jamesdenton: ^^ | 15:44 |
*** spatel has quit IRC | 15:47 | |
odyssey4me | spotz: I don't think I understand the question. What do you mean by 'would it be more proper to have one file but select one set of contents over the other' ? | 15:48 |
spotz | odyssey4me: so templates/openstack_dashboard.conf.j2 is the current file, for the patch I need a different virtual host config to be applied | 15:49 |
odyssey4me | spotz: that template has conditionals in it already to change the content based on various settings... | 15:50 |
*** spatel has joined #openstack-ansible | 15:50 | |
spotz | odyssey4me: Hrm, !=on yo would think would take care of the issue, I wonder why it stopped functioning:( | 15:51 |
spotz | Cause we definitely need to turn off the recrite | 15:51 |
spotz | rewrite even | 15:51 |
odyssey4me | spotz: but that all keys off horizon_external_ssl - is that var being set correctly? | 15:52 |
spotz | odyssey4me: Hrm, no one had given me that one:) I have haproxy_ssl and openstack_external_ssl. Let me build a new AIO with that, this might turn into a docs patch | 15:53 |
odyssey4me | spotz: I think that's supposed to be set from group_vars. Take a look around before using it as an override. | 15:54 |
spotz | odyssey4me: Glad I asked before I went too far down a rabbit hole:) | 15:56 |
spotz | odyssey4me: So it sets based on openstack_external_ssl which I did have as false, so maybe not being passed correctly? | 15:58 |
skiedude | So I've disabled haproxy SSL, I've enabled http endpoint traffic on external/internal. However going to tho the LB IP I'm being redirected to https,which isn't going to work with all SSL disabled | 16:00 |
skiedude | is there a horizon setting somewhere I missed to not force https? | 16:00 |
*** spatel has quit IRC | 16:00 | |
*** spatel has joined #openstack-ansible | 16:01 | |
*** FuzzyFerric has left #openstack-ansible | 16:04 | |
mgariepy | skiedude, the redirect is done in haproxy | 16:05 |
*** spatel has quit IRC | 16:06 | |
skiedude | thats what I figured, but I've disabled SSL, and there is no reference to 443, or https in the /etc/haproxy/haproxy.cfg | 16:06 |
*** gyee has joined #openstack-ansible | 16:06 | |
skiedude | https://pastebin.com/fZ9Mkesb | 16:07 |
skiedude | is the horizon section of the haproxy config, all http config'd | 16:07 |
*** spatel_ has joined #openstack-ansible | 16:08 | |
skiedude | however if I do a curl -I, I can see I'm getting 302'd to https | 16:09 |
mgariepy | set horizon_external_ssl to true | 16:09 |
mgariepy | https://github.com/openstack/openstack-ansible-os_horizon/blob/master/templates/openstack_dashboard.conf.j2#L12 | 16:09 |
skiedude | ok I can try that, this leads me to another question I've wondered, if I add this to the user_variables, do I just rerun the whol setup-openstack.yml, or is there documentation somewhere of what tags can be used | 16:10 |
skiedude | or do I need to dive into each role to find the tags | 16:10 |
mgariepy | you can just run the specific service | 16:10 |
mgariepy | os_horizon in this case | 16:10 |
skiedude | ok so I'd do an `openstack-ansible os-horizon-install.yml` | 16:11 |
*** shyamb has joined #openstack-ansible | 16:17 | |
*** hamzaachi_ has quit IRC | 16:18 | |
*** macza has quit IRC | 16:22 | |
*** macza has joined #openstack-ansible | 16:22 | |
*** AJaeger has joined #openstack-ansible | 16:23 | |
cloudnull | mnaser oh, so this is nova compute deploying VMs in logical volumes ? | 16:23 |
* cloudnull i think i was not understanding things -- needed coffee | 16:23 | |
cloudnull | hwoarang all good :) | 16:23 |
AJaeger | ansible cores, for the python3-first goal, here's the list of open changes for your repos http://paste.openstack.org/show/731415/ | 16:24 |
*** macza has quit IRC | 16:24 | |
cloudnull | thanks AJaeger! | 16:24 |
AJaeger | there are 6 "import zuul jobs from project-config" changes that need to be done first | 16:24 |
AJaeger | But they all fail;( | 16:24 |
noonedeadpunk | I'm a bit stuck here with patch at pretty easy moment. Does this structure has sense to anyone? swift_oslomsg_notify_userid: "{{ swift_oslomsg_notify_userid | default('swift') }}" | 16:25 |
AJaeger | mnaser, cloudnull, could you figure out what to do with these, please? | 16:25 |
noonedeadpunk | the thing is, that for some reason swift uses swift_oslomsg_notify_* and not swift_oslomsg_rpc_* like other ones | 16:26 |
cloudnull | noonedeadpunk "{{ swift_oslomsg_notify_userid | default(swift_system_user_name) }}" -- assuming thats being added to the swift role | 16:26 |
cloudnull | AJaeger ill have a look | 16:27 |
AJaeger | thanks, cloudnull | 16:27 |
AJaeger | evrardjp: on https://review.openstack.org/#/c/594666/ - I suggest you abandon that one. | 16:27 |
AJaeger | cloudnull, evrardjp, but if you do that, then you have to add this at a later time (which is not a problem) | 16:28 |
*** shyamb has quit IRC | 16:28 | |
AJaeger | cloudnull, odyssey4me, for https://review.openstack.org/#/c/594755/ and https://review.openstack.org/#/c/597006/ - let me push a change that removes the docs job from that branch for project-config... | 16:29 |
*** olivierb_ has quit IRC | 16:29 | |
noonedeadpunk | cloudnull: not really, I'm defining varibales that were used in ceilometer https://github.com/openstack/openstack-ansible-os_ceilometer/blob/master/templates/ceilometer.conf.j2#L84-L87 | 16:30 |
*** iurygregory has quit IRC | 16:33 | |
noonedeadpunk | oh, solution is too easy, and I may just put swift_oslomsg_notify_userid: "swift", as in case of re-defining this var globally it will be overrided. Thanks cloudnull:) | 16:33 |
AJaeger | mnaser, cloudnull, odyssey4me https://review.openstack.org/607636 is the project-config change to help merging the python3-first on stable/ocata for openstack-ansible-os_monasca . | 16:34 |
evrardjp | AJaeger: it's a call for contributions at the same time :D | 16:34 |
evrardjp | AJaeger: me and my hopes :) | 16:34 |
evrardjp | Abandonned | 16:34 |
AJaeger | evrardjp: thanks | 16:35 |
AJaeger | evrardjp: also, could you +2 https://review.openstack.org/#/c/597006/ (https://review.openstack.org/#/c/594755/2 will fix it) and abandon https://review.openstack.org/#/c/594755/ , please? | 16:36 |
evrardjp | ofc | 16:37 |
AJaeger | evrardjp: oh, that's your change - so need cloudnull to +2 ;) | 16:37 |
evrardjp | yeah | 16:37 |
cloudnull | which one? | 16:38 |
* cloudnull ready's my +2 fingers | 16:38 | |
AJaeger | cloudnull "evrardjp: also, could you +2 https://review.openstack.org/#/c/597006/ (https://review.openstack.org/#/c/594755/2 will fix it) and abandon https://review.openstack.org/#/c/594755/ , please?" | 16:38 |
openstackgerrit | Kevin Carter (cloudnull) proposed openstack/openstack-ansible-os_monasca-agent stable/ocata: Setup branch for gerrit https://review.openstack.org/597006 | 16:40 |
noonedeadpunk | So if you are in good mood, probably you will set + for my https://review.openstack.org/#/c/605769/ ? :) | 16:40 |
*** kwu_83tw has quit IRC | 16:41 | |
*** kwu83tw has quit IRC | 16:41 | |
noonedeadpunk | I've moved systemd task from post_install to main.yml as includes more obvious here as for me. But probably I shouldn't place "name" for include task. | 16:45 |
mnaser | cloudnull: yyes, nova-compute deploying VMs in logical volumes | 16:45 |
AJaeger | thanks, cloudnull | 16:47 |
AJaeger | So, that leaves openstack/openstack-ansible-os_horizon and openstack/openstack-ansible-os_ironic - I hope openstack/openstack-ansible-os_neutron will work with next recheck ;( | 16:48 |
kaiokmo | hwoarang: permission denied on one of your repositories http://logs.openstack.org/45/588545/4/check/openstack-ansible-functional-opensuse-423/6422fa5/job-output.txt.gz#_2018-10-02_21_51_08_786721 | 16:49 |
*** chkumar|pyconind has quit IRC | 16:51 | |
AJaeger | kaiokmo: download.opensuse.org has a problem today ;( | 16:51 |
odyssey4me | AJaeger: if any of them are still stuck in the morning, then I'll take a crack at resolving them - I need to !computering for the day | 16:51 |
*** spatel_ has quit IRC | 16:52 | |
AJaeger | odyssey4me: thanks! Enjoy your !computering day! | 16:52 |
*** chandankumar has joined #openstack-ansible | 16:56 | |
*** macza has joined #openstack-ansible | 16:57 | |
*** spatel has joined #openstack-ansible | 16:57 | |
openstackgerrit | Kaio Kassiano Moura Oliveira proposed openstack/openstack-ansible-os_monasca master: Add support for CentOS 7 https://review.openstack.org/588545 | 17:04 |
*** chandankumar has quit IRC | 17:07 | |
openstackgerrit | Dmitriy Rabotjagov (noonedeadpunk) proposed openstack/openstack-ansible-os_ceilometer master: Fix of oslomsg undefined variables for services notifications https://review.openstack.org/607653 | 17:12 |
openstackgerrit | Merged openstack/openstack-ansible stable/rocky: Fix for proper package name depending on base OS distribution https://review.openstack.org/607031 | 17:35 |
openstackgerrit | Merged openstack/openstack-ansible-os_horizon master: SUSE: Add support for openSUSE Leap 15 https://review.openstack.org/605390 | 17:39 |
*** olivierb has joined #openstack-ansible | 17:41 | |
cloudnull | mnaser is that on Rocky? | 17:43 |
mnaser | cloudnull: nope on a queens deployment | 17:43 |
cloudnull | and the nova.conf has something like http://paste.openstack.org/show/731424/ defined ? | 17:44 |
cloudnull | thats just about everything I have to do to make nova w/ LV instances go | 17:45 |
*** shardy has quit IRC | 17:47 | |
mnaser | cloudnull: yeah that part all works but nova creates LVs which end up getting root:root permissions | 17:49 |
mnaser | which i believe qemu doesnt have access to | 17:49 |
openstackgerrit | Kaio Kassiano Moura Oliveira proposed openstack/openstack-ansible-os_monasca master: Add support for CentOS 7 https://review.openstack.org/588545 | 17:49 |
cloudnull | maybe qemu needs to be added to the some admin group? | 17:50 |
*** ivve has quit IRC | 17:51 | |
spotz | skidude - work aruond is in this bug https://bugs.launchpad.net/openstack-ansible/+bug/1794337 | 17:53 |
openstack | Launchpad bug 1794337 in openstack-ansible "Apache and Horizon configs not automatically turning off SSL when overridden" [High,Confirmed] - Assigned to Amy Marrich (amy-marrich) | 17:53 |
cloudnull | mnaser so when the new vm is created it fails due to not having permission to create a Logical volume ? | 17:56 |
mnaser | cloudnull: qemu-kvm seems to be stuck spinning at 100%.. the LV is already created (using nova with roothelper so thats fine) | 17:56 |
mnaser | my theory to confirm it was, sudo -u qemu /bin/bash; dd if=/dev/vg_foo/bar_disk of=/dev/null gives me a permission denied | 17:57 |
mnaser | and when going back to good o'l qcow2 images locally it worked fine | 17:57 |
cloudnull | ok. that was my next suggestion , rootwrap config being out of date | 17:57 |
cloudnull | do you have the error logs from nova | 17:59 |
cloudnull | does it cause a stack trace? | 17:59 |
cloudnull | or is it just hung | 17:59 |
mnaser | cloudnull: nova is fine, it boots up everything ok, i just see a hung qemu-kvm process | 18:02 |
mnaser | for all nova cares everything is up | 18:02 |
mnaser | its just the instance is hung because (my assumption) that the `qemu` user cant access the device | 18:03 |
cloudnull | on centos? | 18:03 |
cloudnull | or ubuntu | 18:03 |
*** hamzaachi_ has joined #openstack-ansible | 18:04 | |
*** kwu83tw has joined #openstack-ansible | 18:04 | |
*** kwu_83tw has joined #openstack-ansible | 18:04 | |
*** dw_ is now known as dw | 18:07 | |
mnaser | cloudnull: centos | 18:09 |
*** spatel has quit IRC | 18:10 | |
openstackgerrit | Merged openstack/openstack-ansible-lxc_hosts master: fix tox python3 overrides https://review.openstack.org/606765 | 18:14 |
*** strattao has joined #openstack-ansible | 18:15 | |
openstackgerrit | Merged openstack/openstack-ansible-galera_client master: fix tox python3 overrides https://review.openstack.org/606762 | 18:16 |
*** spatel has joined #openstack-ansible | 18:19 | |
openstackgerrit | Merged openstack/openstack-ansible-os_monasca-agent master: fix tox python3 overrides https://review.openstack.org/606768 | 18:21 |
*** pcaruana has joined #openstack-ansible | 18:24 | |
*** spatel has quit IRC | 18:28 | |
openstackgerrit | Arx Cruz proposed openstack/openstack-ansible master: Add stackviz directory to the list of find_log_files https://review.openstack.org/606084 | 18:30 |
*** gyee has quit IRC | 18:50 | |
*** spatel has joined #openstack-ansible | 18:50 | |
*** pcaruana has quit IRC | 18:50 | |
*** spatel has quit IRC | 18:58 | |
*** spatel has joined #openstack-ansible | 18:58 | |
*** hamzaachi_ has quit IRC | 19:10 | |
*** kwu_83tw has quit IRC | 19:23 | |
*** kwu83tw has quit IRC | 19:23 | |
*** hamzaachi has joined #openstack-ansible | 19:23 | |
*** spartakos has joined #openstack-ansible | 19:25 | |
*** spatel has quit IRC | 19:29 | |
*** spatel has joined #openstack-ansible | 19:31 | |
*** vnogin has joined #openstack-ansible | 19:34 | |
*** spatel has quit IRC | 19:38 | |
*** canori01 has joined #openstack-ansible | 19:46 | |
*** spatel has joined #openstack-ansible | 19:47 | |
*** spatel has quit IRC | 19:56 | |
*** spatel has joined #openstack-ansible | 19:58 | |
*** spatel has quit IRC | 20:03 | |
*** spatel has joined #openstack-ansible | 20:04 | |
*** vnogin has quit IRC | 20:12 | |
*** macza has quit IRC | 20:15 | |
*** macza has joined #openstack-ansible | 20:16 | |
*** spartakos has quit IRC | 20:17 | |
*** gyee has joined #openstack-ansible | 20:24 | |
openstackgerrit | Kaio Kassiano Moura Oliveira proposed openstack/openstack-ansible-os_monasca master: Add support for CentOS 7 https://review.openstack.org/588545 | 20:24 |
*** vnogin has joined #openstack-ansible | 20:26 | |
*** ansmith has quit IRC | 20:30 | |
*** spatel has quit IRC | 20:31 | |
*** spatel has joined #openstack-ansible | 20:31 | |
*** spatel has quit IRC | 20:36 | |
*** spatel has joined #openstack-ansible | 20:37 | |
*** vnogin has quit IRC | 20:42 | |
*** ullbeking has quit IRC | 20:42 | |
*** vnogin has joined #openstack-ansible | 20:43 | |
*** cshen has quit IRC | 20:46 | |
*** fghaas has quit IRC | 20:46 | |
*** olivierb has quit IRC | 20:47 | |
*** vnogin has quit IRC | 20:47 | |
*** spatel has quit IRC | 20:50 | |
spotz | cloudnull: You here? | 20:52 |
*** spartakos has joined #openstack-ansible | 20:55 | |
*** priteau has quit IRC | 21:01 | |
*** hamzaachi has quit IRC | 21:06 | |
*** spartakos has quit IRC | 21:08 | |
*** cshen has joined #openstack-ansible | 21:13 | |
cloudnull | spotz i am now | 21:18 |
cloudnull | for a min more | 21:18 |
cloudnull | mnaser i have a couple nodes with cent coming up on them | 21:18 |
spotz | cloudnull: Ok so how to I debug whether a global_var is being passed? | 21:18 |
cloudnull | i hope to have somethiong to try to recreate that issue | 21:18 |
cloudnull | sorry, been afk most the day | 21:18 |
cloudnull | spotz you can checkout the local facts in /etc/openstack_deploy/ansible_facts | 21:19 |
cloudnull | to see if the var is being defined as a fact | 21:19 |
cloudnull | you can also add a `- debug: var=$global_var` to the playbook where you expect it to be used | 21:19 |
cloudnull | that way you can see if it works? | 21:19 |
*** kwu83tw has joined #openstack-ansible | 21:21 | |
*** kwu_83tw has joined #openstack-ansible | 21:21 | |
spotz | cloudnull: Ok cause I think that might be the issue with turning off the ssl in my bugs, openstack_external_ssl isn't getting passed along | 21:21 |
spotz | It's supposed to be passed to the group_var horizon_external_ssl | 21:23 |
*** spatel has joined #openstack-ansible | 21:24 | |
*** spartakos has joined #openstack-ansible | 21:26 | |
evrardjp | mnaser: I am back from holiday and I haven't followed everything yet -- is there a reason to hold the release of Rocky more? I'd rather do that tomorrow early morning if no one is against that | 21:28 |
mnaser | evrardjp: welcome back. let me double check | 21:28 |
*** spatel has quit IRC | 21:29 | |
mnaser | reviewing https://review.openstack.org/#/q/project:%255Eopenstack/openstack-ansible.*+AND+is:open+branch:stable/rocky | 21:29 |
evrardjp | to what I checked all the pending ones were merged | 21:29 |
mnaser | evrardjp: https://review.openstack.org/#/c/606933/ and https://review.openstack.org/#/c/606386/ | 21:30 |
mnaser | what do you think about those 2 specificaly? | 21:30 |
mnaser | second one affects new deploys and might not break that much | 21:31 |
mnaser | but first one seems heavily affecting upgrades | 21:31 |
evrardjp | mnaser: I was thinking of others taht were more impactful last week | 21:31 |
evrardjp | I think we shouldn't hold the release much more. We'll always find bugs | 21:32 |
evrardjp | I'd rather we release and do . minor releases for bug fixes | 21:32 |
mnaser | evrardjp: i'll let you decide if the first patch is major enough | 21:32 |
mnaser | i'll leave it to be your call | 21:32 |
openstackgerrit | Merged openstack/openstack-ansible-os_glance master: Remove infectious distro service packages on source installs https://review.openstack.org/607466 | 21:33 |
evrardjp | well I don't take decisions, I prefer calling the community -- on that I discussed this morning, and people were keen on getting a release sooner rather than having this in. I still voted to get this in, if possible, but wanted to make sure you were okay | 21:33 |
evrardjp | we've released in the past a .0 with malfunctioning upgrades, sadly. There is no urgency (Nov 28th is deadline) but still... :D | 21:35 |
evrardjp | assuming those two are in, I will suggest a release. | 21:35 |
evrardjp | propose( | 21:35 |
evrardjp | * | 21:35 |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron master: Provide support for "force_metadata" in dnsmasq https://review.openstack.org/607608 | 21:38 |
evrardjp | I am off for today see you tomorrow | 21:39 |
*** vnogin has joined #openstack-ansible | 21:41 | |
openstackgerrit | Merged openstack/openstack-ansible-ops master: multi-noda-aio loadbalancer routing issues fix https://review.openstack.org/607334 | 21:48 |
*** strattao has quit IRC | 21:52 | |
openstackgerrit | Merged openstack/openstack-ansible-repo_server stable/rocky: Add variable for the ssh service https://review.openstack.org/606938 | 21:56 |
*** skiedude has quit IRC | 21:56 | |
openstackgerrit | Merged openstack/openstack-ansible-repo_build stable/rocky: Update repo_build test-vars data https://review.openstack.org/605675 | 22:03 |
openstackgerrit | Merged openstack/openstack-ansible-rabbitmq_server stable/rocky: rabbitmq_upgrade_check: Do not complain for upgrades on distro packages https://review.openstack.org/607487 | 22:10 |
*** spartakos has quit IRC | 22:17 | |
*** tosky has quit IRC | 22:24 | |
*** flaper87 has quit IRC | 22:32 | |
*** flaper87 has joined #openstack-ansible | 22:33 | |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/rocky: tasks: neutron_db_setup: Only create the DB from the first neutron server https://review.openstack.org/606386 | 22:36 |
*** shananigans has quit IRC | 22:48 | |
*** macza has quit IRC | 22:54 | |
*** macza_ has joined #openstack-ansible | 22:54 | |
*** fatdragon has joined #openstack-ansible | 23:00 | |
*** spartakos has joined #openstack-ansible | 23:02 | |
openstackgerrit | Merged openstack/openstack-ansible-os_neutron stable/pike: Clean up role tests https://review.openstack.org/603862 | 23:08 |
*** macza_ has quit IRC | 23:12 | |
*** DanyC has quit IRC | 23:19 | |
*** weezS has quit IRC | 23:20 | |
*** vnogin has quit IRC | 23:34 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_ironic stable/pike: Fix OpenSSL import in test config https://review.openstack.org/603939 | 23:37 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_ironic stable/pike: import zuul job settings from project-config https://review.openstack.org/595055 | 23:38 |
*** vnogin has joined #openstack-ansible | 23:44 | |
*** vnogin has quit IRC | 23:49 | |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/ansible-hardening master: docs: Write files in binary mode https://review.openstack.org/607738 | 23:55 |
openstackgerrit | Jesse Pretorius (odyssey4me) proposed openstack/ansible-hardening master: fix tox python3 overrides https://review.openstack.org/606510 | 23:55 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!