Wednesday, 2018-10-24

*** vnogin has quit IRC00:00
*** aredinger has joined #openstack-ansible00:03
*** hamzy has joined #openstack-ansible00:05
ThiagoCMCAnd here is the controller bare metal syslog (while OSA is trying to start glance/cinder nspawn): systemd-nspawn[21746]: Failed to resolve interface mv-storage: No such device00:06
ThiagoCMCThe bridge name looks wrong: mv-storage? I have "br-storage"...00:06
*** aredinger has quit IRC00:07
*** jbadiapa has quit IRC00:08
nsmedsThiagoCMC: not sure if I'm helpful here, but: mv = macvlan and br = bridge00:09
nsmedsso its possible some .nspawn config needs to be changed?00:09
ThiagoCMCHmmm...00:09
ThiagoCMCI was planning to just rename "br-storage" to "mv-storage" lol00:10
ThiagoCMCI think that I found something here: https://cloudnull.io/2017/06/networkd-for-nspawn-with-openstack-ansible/00:11
*** jbadiapa has joined #openstack-ansible00:11
nsmedsyep cloudnull's blog has some good posts related to nspawn00:11
*** priteau has joined #openstack-ansible00:12
nsmedson the server, compare the actual interfaces to /etc/systemd/nspawn/ files00:12
nsmedscan either be BRIDGE= or MACVLAN=, and results in different interfaces inside the containers00:12
nsmedserr, Bridge= and MACVLAN=00:13
ThiagoCMCThat sounds very helpful, thanks!00:13
*** priteau has quit IRC00:16
*** nsmeds has quit IRC00:38
*** fatdragon has quit IRC00:38
*** cshen has joined #openstack-ansible00:40
*** cshen has quit IRC00:46
cloudnullThiagoCMC yo00:48
cloudnullhows it going?00:49
ThiagoCMCTrying to create the mv-storage for nspawn!  =P00:49
ThiagoCMCThe macvlan thing00:49
cloudnullha00:49
ThiagoCMClol00:49
cloudnullso with the nspawn I generally use a radically simpler approach00:49
* cloudnull gets the config to show00:49
cloudnullhttps://gist.github.com/cloudnull/eab22ba500843343470a7fd1e3f55d1c#file-openstack_user_config-yml-L15-L7400:50
cloudnullso everything is built off the named interface.00:51
ThiagoCMCMy glance and cinder nspawn containers was failing to start because they have access to the storage area (NFS share, iSCSI net) via this mv-storage interface. First time ever trying this! Fun times. :-D00:51
ThiagoCMCLet me check that!00:51
cloudnullin this case bond000:51
cloudnullso my host setup is just that. I make bond0 and that's it00:51
cloudnullall of the mv-* interfaces will be automatically created for me00:51
cloudnulland built off of what's defined in the "container_bridge" option00:52
ThiagoCMC:-O00:52
ThiagoCMCThis looks awesome!00:52
cloudnullits a lot less to setup before you get started.00:52
ThiagoCMCWait, I don't need to manually create the systemd networkd files for mv-* ?00:52
cloudnullhttps://review.openstack.org/#/q/project:%255Eopenstack/openstack-ansible-nspawn.*+branch:stable/rocky+branch:stable/rocky+status:open,n,z00:54
cloudnullThiagoCMC nope00:54
ThiagoCMCYou just configure all mv-* on top of bond0!? No need for bond0.10, bond.11 (vlans for each mv-*)?00:54
ThiagoCMCcloudnull, I have to try this now!  LOL00:54
cloudnullyou can setup the network in any way you want. hell, you can use eth0 for all the system cars00:54
cloudnull**cares00:54
cloudnullI'd probably still use VLANs to isolate traffic00:55
cloudnullbut no, its not required.00:55
ThiagoCMCDaammnn! Now we're talking!00:55
cloudnullthe one requirement is that you have the interface name you use for "container_bridge" consistent throughout the environment. IE: bond0, eth0, p1p0, etc00:56
ThiagoCMCI was ask you about that now! :-)00:57
ThiagoCMC"container_bridge: "bond0"", but, "bond0" isn't a bridge! Right?00:57
ThiagoCMCJust your regular Linux bond0 interface...?00:57
cloudnullcorrect its not a bridge.00:57
cloudnullyes.00:57
cloudnullwhen you have a heterogeneous environment it may be useful to define specific VLAN tagged interfaces, bonds, or use a bridge to get a consistent name across your hosts. but again, none of that is required.00:58
cloudnullIn my case, I have a mess of servers a single bond, and I'm done.00:59
ThiagoCMCLOL01:00
cloudnullthat review link i shared before, there are two nspawn related patches that need to be pulled into rocky to make it go01:00
ThiagoCMCSounds cool!  =)01:00
cloudnullit is cool, IMHO :)01:00
ThiagoCMCHave you ever tried nspawn / networkd with OpenvSwitch (i.e., the bond0 being a OVS interface)?01:01
cloudnullnope01:02
* cloudnull does not use OvS01:02
*** aredinger has joined #openstack-ansible01:03
ThiagoCMC^_^01:03
ThiagoCMCGoing SmartNICs ?  lol01:03
cloudnullcouple screenshots of nspawn: containers -- https://i.snag.gy/Mg7Lmy.jpg -+- links on the controller -- https://i.snag.gy/hDUH2C.jpg?nocache=154034312299901:06
cloudnullmost of my deployments are all linuxbridge01:06
*** aredinger has quit IRC01:07
ThiagoCMCNiiice! Actually, my OSA "mv-nspawn0@nspawn0" and "mv-mgmt@veth-mgmt2", first time that I'm seeing those!  :-D01:08
ThiagoCMCI'm trying to figure out why mv-storage isn't there but, I believe that I have to try yours: https://gist.github.com/cloudnull/eab22ba500843343470a7fd1e3f55d1c#file-openstack_user_config-yml-L15-L7401:08
cloudnullyea get that type of configuration a go. and let me know what you think.01:10
*** medberry has joined #openstack-ansible01:11
cloudnullfor prod I'd still recommend VLANs for traffic isolation but with this type of setup the "container_bridge" would be something like "bond0.10" for the storage traffic and "bond0.20" for the management traffic01:12
ThiagoCMCThat's what I already have but, my "bond0.20" is being used by "br-storage" Linux Bridge (OSA Recommendation for LXC)...01:13
cloudnullyes.01:13
ThiagoCMCSo, I don't need that "br-storage" bridge anymore? Since it will be directly on top of bond0.20 ??!01:13
ThiagoCMC:-O01:13
cloudnullyup01:14
ThiagoCMCDaammnn!!!  :-D01:14
cloudnullno more bridges, with nspawn that is01:14
cloudnullunless you want them :)01:14
ThiagoCMCNo wonder why you don't use OVS! LOL01:14
ThiagoCMCThis is so simple.01:14
* cloudnull has a hate relationship with OvS 01:14
ThiagoCMCLMFAO!01:15
ThiagoCMCThank you so much for your today's help!01:15
ThiagoCMCI learned a LOT!01:15
ThiagoCMC:-D01:15
cloudnullhappy to help :)01:18
ThiagoCMCThanks!01:19
ThiagoCMCCool! I manually created the mv-storage, by following: https://cloudnull.io/2017/06/networkd-for-nspawn-with-openstack-ansible/ - glance and cinder nspawn container started!01:19
cloudnullnice!01:20
*** mmercer has quit IRC01:21
*** cshen has joined #openstack-ansible01:40
*** cshen has quit IRC01:45
*** fatdragon has joined #openstack-ansible01:54
*** aredinger has joined #openstack-ansible02:03
*** fatdragon has quit IRC02:04
*** aredinger has quit IRC02:08
*** priteau has joined #openstack-ansible02:13
*** priteau has quit IRC02:18
*** fatdragon has joined #openstack-ansible02:38
*** fatdragon has quit IRC02:45
*** aredinger has joined #openstack-ansible03:03
*** aredinger has quit IRC03:07
*** fatdragon has joined #openstack-ansible03:14
*** priteau has joined #openstack-ansible03:14
*** priteau has quit IRC03:18
*** Leo_m has quit IRC03:19
*** fatdragon has quit IRC03:23
*** cshen has joined #openstack-ansible03:41
*** cshen has quit IRC03:45
*** udesale has joined #openstack-ansible03:50
*** udesale has quit IRC03:50
*** udesale has joined #openstack-ansible03:51
*** fatdragon has joined #openstack-ansible03:57
*** aredinger has joined #openstack-ansible04:03
*** fatdragon has quit IRC04:06
*** aredinger has quit IRC04:07
*** priteau has joined #openstack-ansible04:15
*** priteau has quit IRC04:19
*** spsurya has joined #openstack-ansible04:24
*** fatdragon has joined #openstack-ansible04:39
*** hamzaachi has joined #openstack-ansible04:42
*** chhagarw has joined #openstack-ansible04:43
*** fatdragon has quit IRC04:45
*** dave-mccowan has quit IRC04:57
*** aredinger has joined #openstack-ansible05:03
*** chkumar|off is now known as chandankumar05:03
*** aredinger has quit IRC05:07
*** hamzaachi has quit IRC05:14
*** hamzaachi has joined #openstack-ansible05:15
*** pvradu has joined #openstack-ansible05:16
*** fatdragon has joined #openstack-ansible05:18
*** faizy_ has joined #openstack-ansible05:21
*** fatdragon has quit IRC05:23
*** faizy98 has quit IRC05:25
*** priteau has joined #openstack-ansible05:26
*** priteau has quit IRC05:31
*** cshen has joined #openstack-ansible05:41
*** ThiagoCMC has quit IRC05:43
*** cshen has quit IRC05:46
*** fatdragon has joined #openstack-ansible05:54
*** fatdragon has quit IRC05:59
*** aredinger has joined #openstack-ansible06:03
*** aredinger has quit IRC06:07
*** cshen has joined #openstack-ansible06:17
*** pvradu has quit IRC06:18
*** cshen has quit IRC06:25
*** raginbajin has quit IRC06:32
*** fatdragon has joined #openstack-ansible06:33
*** raginbajin has joined #openstack-ansible06:34
*** bertys has joined #openstack-ansible06:36
*** pvradu has joined #openstack-ansible06:38
*** fatdragon has quit IRC06:38
*** hamzaachi has quit IRC06:40
bertyscores - may I draw your attention to https://review.openstack.org/#/c/549956/? thanks in advance for your reviews/feedback.06:40
*** aedc has quit IRC06:41
*** aedc has joined #openstack-ansible06:41
*** pvradu has quit IRC06:42
*** pvradu has joined #openstack-ansible06:43
*** aedc has quit IRC06:46
*** aedc has joined #openstack-ansible06:47
*** cshen has joined #openstack-ansible06:47
*** aludwar has quit IRC06:50
*** aedc has quit IRC06:52
*** aludwar has joined #openstack-ansible06:53
*** faizy_ has quit IRC06:55
*** aredinger has joined #openstack-ansible07:03
*** ivve has joined #openstack-ansible07:03
*** fatdragon has joined #openstack-ansible07:05
*** pcaruana has joined #openstack-ansible07:05
*** aredinger has quit IRC07:07
*** fatdragon has quit IRC07:10
*** threestrands has quit IRC07:13
openstackgerritMerged openstack/ansible-role-systemd_networkd master: Set container_name as host_var in test inventory  https://review.openstack.org/61234307:17
*** thuydang has joined #openstack-ansible07:18
*** faizy98 has joined #openstack-ansible07:19
openstackgerritMerged openstack/ansible-role-systemd_service master: Set container_name as host_var in test inventory  https://review.openstack.org/61234407:19
*** thuydang has quit IRC07:22
*** hamzaachi has joined #openstack-ansible07:30
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_cloudkitty stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61289807:32
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_watcher stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61289907:33
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zun stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290007:34
openstackgerritMerged openstack/openstack-ansible-repo_build stable/rocky: Create virtualenv without downloading  https://review.openstack.org/61264007:34
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_masakari stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290107:34
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_zaqar stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290207:35
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_panko stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290307:35
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_searchlight stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290407:36
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_blazar stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290607:36
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_monasca-agent stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290707:36
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_tempest stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290807:38
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_neutron stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61290907:38
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_magnum stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291007:38
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_octavia stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291107:39
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_swift stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291207:39
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_nova stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291307:40
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_ironic stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291407:40
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_cinder stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291507:40
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_aodh stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291707:41
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_barbican stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291807:41
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_ceilometer stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61291907:42
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_designate stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292007:42
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_horizon stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292107:42
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_tacker stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292207:43
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_glance stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292307:43
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_sahara stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292407:43
*** fatdragon has joined #openstack-ansible07:44
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_keystone stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292507:44
openstackgerritMerged openstack/openstack-ansible-tests master: test-log-collect: Disable repositories when collecting installed pkgs on SUSE  https://review.openstack.org/61266107:44
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_trove stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292607:44
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_congress stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292707:45
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_rally stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292807:45
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_heat stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292907:45
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_gnocchi stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61293007:46
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-rabbitmq_server stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61293107:46
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-galera_server stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61293207:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-repo_server stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61293307:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-repo_build stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61293407:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-lxc_container_create stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61293507:48
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-nspawn_container_create stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61293607:48
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/ansible-role-python_venv_build stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61293707:48
*** fatdragon has quit IRC07:48
*** shyamb has joined #openstack-ansible07:50
*** tosky has joined #openstack-ansible07:52
openstackgerritJonathan Rosser proposed openstack/openstack-ansible master: Upgrade ceph to mimic release  https://review.openstack.org/61016507:53
openstackgerritManuel Buil proposed openstack/openstack-ansible-os_neutron stable/rocky: V2 driver is needed to work with ODL 9.0  https://review.openstack.org/61293907:53
*** shyamb has quit IRC07:58
*** shyamb has joined #openstack-ansible07:59
*** aredinger has joined #openstack-ansible08:01
*** ianychoi_ is now known as ianychoi08:03
*** aredinger has quit IRC08:06
*** hw_wutianwei_ has quit IRC08:06
*** pvradu_ has joined #openstack-ansible08:08
*** shyamb has quit IRC08:09
*** pvradu has quit IRC08:11
*** FuzzyFerric has joined #openstack-ansible08:22
*** fatdragon has joined #openstack-ansible08:23
openstackgerritMarkos Chandras (hwoarang) proposed openstack/openstack-ansible master: SUSE: Add support for openSUSE Leap 15  https://review.openstack.org/60436608:28
*** fatdragon has quit IRC08:28
*** thuydang has joined #openstack-ansible08:30
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_glance master: Install missing libxml2 distro package  https://review.openstack.org/61270408:30
*** suggestable has joined #openstack-ansible08:31
odyssey4mejrosser: great catch on that one, I wonder where else we could save some time by using the right package for the install part08:31
jrosserprobably quite a few - debtree is ace08:31
openstackgerritTaseer Ahmed proposed openstack/openstack-ansible master: Integrate Blazar with OpenStack Ansible  https://review.openstack.org/54995608:34
*** shyamb has joined #openstack-ansible08:43
openstackgerritMerged openstack/ansible-role-python_venv_build master: Mark build task changed only when wheels are built  https://review.openstack.org/61177008:45
openstackgerritMerged openstack/openstack-ansible-openstack_openrc stable/rocky: Add default for openrc_os_domain_name and update example  https://review.openstack.org/61276408:47
*** priteau has joined #openstack-ansible08:48
odyssey4mehmm, that's nice - it seems that ansible 2.5.10 is causing breakage all over the place08:51
*** faizy98 has quit IRC08:52
openstackgerritMerged openstack/ansible-config_template master: Set container_name as host_var in test inventory  https://review.openstack.org/61231208:52
openstackgerritMerged openstack/openstack-ansible-rabbitmq_server stable/ocata: rabbitmq_upgrade_check: Do not complain for upgrades on distro packages  https://review.openstack.org/60749008:55
*** bertys has quit IRC09:00
evrardjpI am looking at the keystone fetch issue09:00
jrosserit's that across everything isnt it09:00
openstackgerritMerged openstack/openstack-ansible-rabbitmq_server stable/pike: rabbitmq_upgrade_check: Do not complain for upgrades on distro packages  https://review.openstack.org/60748909:00
odyssey4meeverything that uses keystone it seems09:03
*** Emine has joined #openstack-ansible09:13
openstackgerritMarkos Chandras (hwoarang) proposed openstack/openstack-ansible-os_nova master: zuul: Switch to distro job template  https://review.openstack.org/61295709:16
openstackgerritMarkos Chandras (hwoarang) proposed openstack/openstack-ansible-os_neutron master: zuul: Switch to distro job template  https://review.openstack.org/61295809:19
openstackgerritMarkos Chandras (hwoarang) proposed openstack/openstack-ansible-os_nova master: zuul: Switch the Xenial lxd job to Bionic  https://review.openstack.org/61295909:20
evrardjpso currently the state for rocky is indeed brokenness. I checked the diff of 2.5.8 and 2.5.10 and nothing changed on fetch module. Fetch module itself uses different things, including slurp module. slurp hasn't changed. So right now I am guessing connection changes.09:26
evrardjpI can not tell as I don't have a failing environment yet. My environment is re-creating with a 2.5.8 and said patches, and I will auto bissect the ansible commits.09:26
*** thuydang has quit IRC09:27
evrardjpit might take a while (vs fixing directly)09:27
evrardjpbut it's easier to do on the side :D09:27
evrardjpif you want I can rush this too09:27
jrosserodyssey4me: looks like some good opportunities to prune -dev packages http://paste.openstack.org/show/732951/09:27
evrardjppython-dev is required :p09:28
odyssey4mejrosser: the ones on the repo container may need to stay - but yeah all the others, for sure09:28
openstackgerritMarkos Chandras (hwoarang) proposed openstack/openstack-ansible-tests master: zuul: Make SUSE and Ubuntu distro jobs non-voting  https://review.openstack.org/61296109:28
evrardjpgenerally they are required for building wheels and pip packages09:28
*** thuydang has joined #openstack-ansible09:28
evrardjpso they probably need to stay on build machines09:29
odyssey4mejrosser evrardjp yep, but they should be moved into a *_dev_distro_packages var, then only used for building the wheels09:29
evrardjpexcept python-dev which should be everywhere09:29
odyssey4mejrosser evrardjp much like https://review.openstack.org/#/c/612704/09:29
odyssey4meI think python-dev may only need to be wherever the wheels are built.09:31
openstackgerritMarkos Chandras (hwoarang) proposed openstack/openstack-ansible-tests master: zuul: Make SUSE and Ubuntu distro jobs non-voting  https://review.openstack.org/61296109:31
*** shyamb has quit IRC09:37
*** shyamb has joined #openstack-ansible09:37
evrardjpok so for rocky/keystone failure, a downgrade to 2.5.8 didn't work. So we have something else going on.09:38
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-ops master: MNAIO: Implement branch var for pinning Ansible & Plugins  https://review.openstack.org/61296309:39
openstackgerritChandan Kumar proposed openstack/openstack-ansible-os_tempest master: Added support for installing tempest from distro  https://review.openstack.org/59142409:39
odyssey4meevrardjp jrosser FYI the reason I pushed up that series of backports is because I saw other rocky patches failing after the ansible 2.5.10 upgrade merged... only for role tests though09:43
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/ansible-role-python_venv_build stable/rocky: Mark build task changed only when wheels are built  https://review.openstack.org/61296609:44
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/ansible-role-python_venv_build master: Only install the appropriate distro packages  https://review.openstack.org/61150809:45
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-tests stable/rocky: test-log-collect: Disable repositories when collecting installed pkgs on SUSE  https://review.openstack.org/61296709:45
evrardjpodyssey4me: I think there was a race condition that made us believe the 2.5.10 could have been the cause09:46
evrardjpas the rollback to 2.5.8 should have deployed just fine, but wasn't on my env09:47
evrardjpexcept if pebkac ofc09:47
openstackgerritArx Cruz proposed openstack/openstack-ansible-os_tempest master: WIP - Enable python-tempestconf support  https://review.openstack.org/61296809:47
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible stable/rocky: Update repo_build SHA for virtualenv creation fix  https://review.openstack.org/61297109:48
hwoarangjrosser: isn't https://review.openstack.org/#/c/611610/ already fixed by https://review.openstack.org/#/c/611843/ ?10:01
openstackgerritMerged openstack/openstack-ansible-os_heat stable/rocky: Replace Chinese punctuation with English punctuation  https://review.openstack.org/60944910:03
openstackgerritMerged openstack/openstack-ansible-repo_server stable/rocky: Replace Chinese punctuation with English punctuation  https://review.openstack.org/61006210:03
odyssey4meevrardjp: http://logs.openstack.org/04/612704/2/check/openstack-ansible-functional-ubuntu-bionic/a1e1de8/job-output.txt.gz#_2018-10-24_09_40_28_62738610:04
odyssey4methat's from a patch to master10:04
evrardjpsame issue indeed10:05
evrardjpworried now10:06
odyssey4mehttps://github.com/openstack/keystone/commit/ea6755a82588ab4881f41280e981364439b4b4a2#diff-e80f17310109447772dca82b45ef35a510:07
openstackgerritMerged openstack/openstack-ansible-os_neutron stable/rocky: Replace Chinese punctuation with English punctuation  https://review.openstack.org/61006310:07
odyssey4mesomething is fishy10:07
odyssey4merocky still has it10:08
evrardjpwhen I will have an env ready with 2.5.8 I can tell you more10:13
evrardjpI am waiting for my env to be ready as pie!10:13
*** shyamb has quit IRC10:14
*** shyam89 has joined #openstack-ansible10:14
*** maharg101 has joined #openstack-ansible10:14
*** shyam89 has quit IRC10:18
maharg101I have a question about multiple horizon instances with different customization modules. It looks like openstack-ansible-os_horizon just supports a single customization module. Has anyone here had experience of setting up multiple horizon instances with different customisations ?10:20
evrardjpok I got a machine running! that will change things10:20
evrardjpyeah it's only that file that's missing10:21
evrardjpthe other fetch instruction work10:21
jrosserhwoarang: yes you are right https://review.openstack.org/#/c/611610/ got missed in reviews and the later patch got merged10:22
evrardjpfound it10:22
evrardjpso keystone removed the api-paste 2 hours ago on master10:23
evrardjpin setup.cfg10:23
evrardjpso that's it :)10:23
odyssey4meok, that means that rocky's not fetching the paste file from the rocky branch - which is not good10:23
evrardjpwe are using that package setup.cfg content in rocky branch.10:23
*** strobelight has joined #openstack-ansible10:25
benkohlgettting this with osa 18.0.0: https://gist.github.com/benkuly/69a8735deb574988c6060c056c651a0010:27
benkohlthe logs in the repo container's /var/log/repo say :8181/simple/pkg-resources/ returns a 404.10:27
odyssey4meevrardjp https://github.com/openstack/openstack-ansible-tests/blob/stable/rocky/test-vars.yml#L2110:29
*** strobelight has quit IRC10:30
odyssey4methe changes for that env var to work properly have not merged into rocky - only master10:31
odyssey4meso we need to change that default10:31
evrardjpyup that would be important to merge very quick10:32
odyssey4mecurrently for almost all the rocky roles, tox.ini does not allow that env var to be passed into the tox venv10:32
*** strobelight has joined #openstack-ansible10:32
evrardjpwhen this will be in, the patches of jimmy can go in and we can return to happy life10:32
evrardjpso summary: os_keystone master needs cleanup to remove references of api-paste, all roles for rocky and below needs adaption of tox.ini, and we need to merge jmccrory 's patches.10:35
*** pvradu_ has quit IRC10:38
*** pvradu has joined #openstack-ansible10:38
*** maddtux_ has joined #openstack-ansible10:45
*** shyamb has joined #openstack-ansible10:45
jrosserbenkohl: this might be related to your issue https://review.openstack.org/#/c/612640/10:45
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-tests stable/rocky: Do not use master branch for role tests  https://review.openstack.org/61298310:45
evrardjpodyssey4me: jrosser : https://review.openstack.org/#/c/612983/ please?10:46
*** cshen has quit IRC10:48
openstackgerritManuel Buil proposed openstack/openstack-ansible-os_neutron stable/rocky: V2 driver is needed to work with ODL 9.0  https://review.openstack.org/61293911:01
*** udesale has quit IRC11:01
*** chhagarw has quit IRC11:06
*** hamzaachi has quit IRC11:10
*** faizy98 has joined #openstack-ansible11:11
*** cshen has joined #openstack-ansible11:13
*** cshen has quit IRC11:18
openstackgerritMerged openstack/openstack-ansible stable/rocky: Restore OpenSUSE voting jobs  https://review.openstack.org/61239111:26
*** cshen has joined #openstack-ansible11:28
*** shyamb has quit IRC11:30
*** cshen has quit IRC11:34
*** fatdragon has joined #openstack-ansible11:36
openstackgerritArx Cruz proposed openstack/openstack-ansible-os_tempest master: WIP - Enable python-tempestconf support  https://review.openstack.org/61296811:41
*** fatdragon has quit IRC11:41
*** cshen has joined #openstack-ansible11:44
noonedeadpunkfolks, probably we would like to install some text editor inside each container? As in bionic it seems there is no less, vi, vim, nano inside containers11:44
noonedeadpunkwhat do you think about that?11:44
noonedeadpunkor, probably, it's a topic for the next meeting11:45
jrosserthere are vars for adding your own extra things to the containers if you would like them11:45
jrosserhere for example https://github.com/openstack/openstack-ansible-lxc_hosts/blob/master/defaults/main.yml#L18211:46
noonedeadpunkI mean, that in xenial there was vi by default, but nothing present in bionic.11:46
noonedeadpunkyep, thanks, i'll use it)11:47
noonedeadpunk*less is present, but it's not about editor11:47
noonedeadpunkjrosser: should I lcear lxc cache after adding some package there?11:48
*** ansmith has quit IRC11:48
jrosseryou will need to make it rebuild the base image yes, plus it wont put any extra packages into the containers11:49
jrosser*containers that are already running11:49
noonedeadpunkok, got it, thanks11:50
jrossernoonedeadpunk: there are other places you can specify extra packages too https://review.openstack.org/#/q/topic:distro_extra+(status:open+OR+status:merged)11:51
*** shyamb has joined #openstack-ansible11:52
noonedeadpunkgreat patch, thank you!11:53
jrosseri never quite got the openstack_hosts one to pass tests - must get back to that, unless you want to take a look?11:53
*** hamzaachi has joined #openstack-ansible11:55
noonedeadpunkjrosser: if you wish, I may try to look into it once have some time. Now I'm upgrading Q->R and xenial -> bionic, but I'm almost done with that11:56
*** shyamb has quit IRC11:58
*** pvradu_ has joined #openstack-ansible12:04
*** pvradu has quit IRC12:08
*** fatdragon has joined #openstack-ansible12:10
*** fatdragon has quit IRC12:14
*** udesale has joined #openstack-ansible12:17
*** udesale has quit IRC12:25
*** smoke87 has joined #openstack-ansible12:28
*** rgogunskiy has joined #openstack-ansible12:32
*** maddtux_ has quit IRC12:33
*** rgogunskiy has quit IRC12:34
noonedeadpunkare repos on zuul upgraded via periodic tasks?12:37
nicolasbockYes noonedeadpunk (IRC)12:38
noonedeadpunkthanks, than I should ait for a while before re-checking then12:41
noonedeadpunks/ait/wait12:41
*** fatdragon has joined #openstack-ansible12:42
*** fatdragon has quit IRC12:47
*** hamzaachi has quit IRC12:50
jrosserargh http://logs.openstack.org/83/612983/1/check/openstack-ansible-functional-centos-7/c594bf1/job-output.txt.gz#_2018-10-24_12_44_13_57905512:51
openstackgerritJesse Pretorius (odyssey4me) proposed openstack/openstack-ansible-os_keystone stable/rocky: Set container_name as host_var in test inventory  https://review.openstack.org/61292512:52
*** ansmith has joined #openstack-ansible12:57
*** FuzzyFerric has quit IRC12:59
*** dave-mccowan has joined #openstack-ansible13:04
*** hamzaachi has joined #openstack-ansible13:05
openstackgerritMerged openstack/openstack-ansible stable/queens: Fix missing virtualenv package  https://review.openstack.org/60691013:12
*** fatdragon has joined #openstack-ansible13:14
*** fatdragon has quit IRC13:19
*** strattao has joined #openstack-ansible13:20
*** udesale has joined #openstack-ansible13:22
*** chhagarw has joined #openstack-ansible13:31
*** vakuznet has joined #openstack-ansible13:35
arxcruzis os_keystone with problems ?13:44
noonedeadpunkarxcruz: it seems that we need https://review.openstack.org/#/c/612673/ to be implemented in zuul via periodic tasks13:46
*** smoke87 has quit IRC13:46
arxcruznoonedeadpunk: i'm getting this http://logs.openstack.org/68/612968/1/check/openstack-ansible-functional-opensuse-423/c7aa515/job-output.txt.gz#_2018-10-24_11_30_01_39487313:47
arxcruznot sure if is related13:47
noonedeadpunkyeah, probably not related.13:48
openstackgerritJean-Philippe Evrard proposed openstack/openstack-ansible-os_keystone master: Remove paste references in Keystone  https://review.openstack.org/61303013:48
*** strattao has quit IRC13:49
evrardjparxcruz: I just forgot to push a patch this morning that I wrote.13:49
arxcruzevrardjp: are you going to summit?13:50
chandankumarodyssey4me: http://logs.openstack.org/24/591424/42/check/openstack-ansible-functional-centos-7/3ba2141/job-output.txt.gz#_2018-10-24_11_21_54_61510513:51
chandankumarfailed: [openstack1] (item=keystone-paste.ini) => {"changed": false, "item": "keystone-paste.ini", "msg": "file not found: /openstack/venvs/keystone-testing/etc/keystone/keystone-paste.ini"}13:51
evrardjparxcruz: I am13:53
arxcruzevrardjp: no beer for you :P13:54
evrardjpchandankumar: see patch above13:54
evrardjparxcruz: Don't worry I am Belgian :D13:54
arxcruzdammit!13:54
arxcruzlol13:54
arxcruzevrardjp: i need to visit you13:54
evrardjparxcruz: and also I am fixing it, I didn't break it! :D13:54
evrardjphahahah13:55
*** fatdragon has joined #openstack-ansible13:55
arxcruzneed to increase my number of belgian beers13:55
arxcruzevrardjp: here in berlin there's a belgian pub13:55
evrardjpThere is a pub like maybe a km from my place that has 2018 beers13:55
evrardjpjust saying ;)13:55
*** vnogin has joined #openstack-ansible13:56
evrardjparxcruz: I am fine everywhere where there is beer (as long as its no 1664).13:56
evrardjpit is not 1664*13:56
arxcruzhehehe13:56
evrardjp'it's no' is confusing13:56
arxcruzevrardjp: we'll drink some beers on summit :D13:56
evrardjpfor sure!13:56
*** strattao has joined #openstack-ansible13:58
* noonedeadpunk wants to drink some beer as well13:58
*** fatdragon has quit IRC14:00
*** cshen has quit IRC14:03
chandankumarevrardjp: what is the suse package name for subunit-filters14:03
chandankumar?14:03
chandankumarevrardjp: regartding this failure http://logs.openstack.org/24/591424/42/check/openstack-ansible-functional-distro_install-opensuse-423/7ce063c/job-output.txt.gz#_2018-10-24_11_40_50_05764714:05
arxcruzevrardjp: so, when the patch get merged for keystone, let me know so i can recheck :)14:05
chandankumarevrardjp: this gate is timing pout http://logs.openstack.org/24/591424/42/check/openstack-ansible-functional-distro_install-ubuntu-bionic/a02986a/job-output.txt.gz#_2018-10-24_11_48_14_13833414:05
arxcruzor if you point me the review i can monitor14:06
*** ThiagoCMC has joined #openstack-ansible14:06
*** udesale has quit IRC14:07
evrardjpchandankumar: let me check14:08
evrardjparxcruz: for sure14:08
evrardjpchandankumar: oh that's interesting14:08
evrardjpchandankumar: that's generally when systemd manages to start the service and everything is fine, but in fact it's not fine14:09
evrardjpwe can check that later14:09
evrardjplet me first check the package name for subunit14:09
evrardjpchandankumar: 423?14:09
ThiagoCMCcloudnull, good morning! Quick question, with LXC, I can easily attach to each container, but with nspawn, there is the `machinectl login ...` and it asks for login/pass! Where is it configured? Or, is there another way to attach to nspawn containers without user/pass?14:10
evrardjpThiagoCMC: nsenter14:10
chandankumarevrardjp: https://review.openstack.org/591424 it is a massive change14:10
evrardjpfind the root pid and use that14:10
evrardjpchandankumar: we've been there, don't worry we'll get you there :)14:11
evrardjp(sorry for the current state of master)14:11
ThiagoCMCevrardjp, nester?14:12
evrardjpnsenter14:12
evrardjpallows you to enter the namspace14:12
chandankumarevrardjp: no problem14:12
ThiagoCMCOh, I see14:13
ThiagoCMC=)14:13
evrardjpchandankumar: I am not sure if that would help you but the only thing I see for 42.3 is python-python-subunit on a search14:13
chandankumarevrardjp: that got added yesterday14:13
evrardjpThiagoCMC: I am using machinectl to find info about pids then enter with nsenter14:13
evrardjpThiagoCMC: But I can't remember everything14:13
evrardjpmy old brain :p14:13
evrardjpchandankumar: what do you mean?14:13
ThiagoCMCSounds good to start! Thanks!14:14
odyssey4meThiagoCMC: I think we've added a convenience script called something like 'nspawn-attach'14:14
*** pvradu_ has quit IRC14:14
evrardjpchandankumar: oh you mean python-python-subunit ?14:14
chandankumarevrardjp: https://review.openstack.org/#/c/591424/42/vars/suse.yml@2214:14
evrardjpyeah that sounds like it14:14
evrardjpso what's missing?14:14
*** pvradu has joined #openstack-ansible14:14
chandankumarsubunit-filters14:14
evrardjpI am not sure it's packaged14:15
chandankumarthe same error we hit for centos then we added subunit-filters now it is working14:15
ThiagoCMCnspawn-attach worked! Thanks!14:15
evrardjpcool14:16
*** shyamb has joined #openstack-ansible14:16
* chandankumar will wait for sensei odyssey4me to come and have a look :-)14:16
evrardjpI am not sure odyssey4me will be helpful on packaging new things for an old suse :p14:17
evrardjphahaha14:17
*** aredinger has joined #openstack-ansible14:18
evrardjpchandankumar: what's the command you are looking for?14:20
evrardjpchecking if I can find a package that could map14:20
hwoarangmaybe there is some value to have this package in the OBS cloud repo14:20
*** maharg101 has quit IRC14:21
hwoarangthe rules are more relaxed there14:21
hwoarangi think...14:21
chandankumarevrardjp: https://github.com/openstack/openstack-ansible-os_tempest/blob/master/tasks/tempest_run.yml#L5214:22
evrardjphwoarang: I am checking on obs14:22
evrardjpI see other packages matching subunit14:22
evrardjphwoarang: but I don't think the exact match is there14:22
evrardjpsomeone with the srpm can probably do something on obs indeed14:22
suggestablejamesdenton: ping. Are you online yet? I have some news!14:22
jamesdentoni am! but will be OOO soon. Whatcha got?14:22
chandankumarevrardjp: https://review.openstack.org/#/c/591424/42/tasks/tempest_run.yml@6114:22
suggestablejamesdenton: I got it working!14:23
suggestableL3HA works!14:23
jamesdentonhey, cool!14:23
jamesdentonwhat did you do?14:23
suggestableBasically, I took https://bugs.launchpad.net/openstack-ansible/+bug/1782195 and added a bit extra...14:24
openstackLaunchpad bug 1782195 in openstack-ansible "neutron l3 agent fails to spawn HA router" [High,In progress]14:24
*** cshen has joined #openstack-ansible14:24
suggestablejamesdenton: The key seems to be that the neutron-server containers have the HA interface set in neutron.conf to eth11, which doesn't exist on the neutron-server containers. Switching it to eth1 makes it work.14:25
evrardjpchandankumar: in the meantime I wouldn't mind if we add two conditionals : running said step when not distro installs and not suse. With an extra TODO14:25
jamesdentoninteresting. did you see the errors in the l3 agent log?14:25
suggestablejamesdenton: I had to adjust the path for the neutron venv in the symlink, of course, as I'm running 18.0.0, but it just worked!14:26
suggestablejamesdenton: I saw the exact same error in the l3 agent log, but no stacktrace.14:26
jamesdentonhmmm, ok. well.. good job! i'm deploying now, so ifthere's something to fix i'll try and nail it down14:27
suggestableOK. Hopefully what I've just said will help somebody to make a patch for this, so that others deploying with L3HA won't face this problem. That bug's been open since July...14:28
chandankumarevrardjp: http://logs.openstack.org/24/591424/42/check/openstack-ansible-functional-distro_install-opensuse-423/7ce063c/logs/ara-report/result/f8efe2c6-9157-4d13-a4eb-d13f83f66577/14:28
chandankumarevrardjp: i got the issue14:29
chandankumarevrardjp: python-junitxml will fix the issue14:29
evrardjplet me check the package real quick then14:29
jamesdentonsuggestable do you have the actual config option you modified?14:30
suggestablejamesdenton: Sure. Let me get it for you.14:30
suggestablejamesdenton: In addition to what was mentioned in the patch (fixing the keepalived state change stuff), I edited this line in neutron.conf on the neutron-server container:14:32
suggestablejamesdenton: ha_network_physical_name = eth114:32
chandankumarevrardjp: https://pkgs.org/download/python-junitxml14:32
jamesdentonsuggestable what is l3_ha_network_type set to? anything?14:33
suggestablejamesdenton: By default, it is set to eth11. I set it to eth1.14:33
jamesdentonright, sorry. it's a different one: l3_ha_network_type14:34
suggestablejamesdenton: Sorry. ha_network_type = vlan14:34
jamesdentonahh ok14:34
suggestableAs you know, we're running VXLAN, but eth1 (br-mgmt) is a flat network, so VLAN seemed appropriate there.14:35
openstackgerritChandan Kumar proposed openstack/openstack-ansible-os_tempest master: Added support for installing tempest from distro  https://review.openstack.org/59142414:35
*** fatdragon has joined #openstack-ansible14:35
jamesdentonl3_ha_network_physical_name should be the provider label and not necessarily a physical interface name.14:38
suggestablejamesdenton: Within the container, there's only eth0 (br-lxc0) and eth1 (br-mgmt). The container doesn't know any names other than eth0 and eth1.14:39
jamesdentonright - neutron-server container isn't used for any network traffic, though.14:40
*** fatdragon has quit IRC14:41
suggestablejamesdenton: OK, but neutron-server itself runs inside the container, no?14:41
evrardjpchandankumar: I was on obs to check14:41
chandankumarevrardjp: what is the full url of obs?14:41
evrardjphttps://build.opensuse.org/package/view_file/openSUSE:Leap:42.3/python-junitxml/python-junitxml.spec?expand=114:41
*** shyamb has quit IRC14:42
evrardjpseems it would do the trick for you14:42
chandankumarevrardjp: thanks :-)14:42
evrardjpSorry I was sidetracked14:42
evrardjp:)14:42
jamesdentonit runs inside a container, yes. those config options are used when implementing the ha network on the l3-agent node(s). if l3_ha_network_type is defined as vlan, then l3_ha_network_physical_name can be used as an override to specify the desired provider interface label. if l3_ha_network_type is left undefined, then the default tenant network type is used (so vxlan)14:42
suggestablejamesdenton: There is no l3_ha_network_type specified in neutron.conf in the container, only ha_network_type, which is set to vlan by default.14:43
jamesdentonit may be ha_network_type14:44
jamesdentonk14:44
*** shyamb has joined #openstack-ansible14:44
*** spatel has joined #openstack-ansible14:47
yetiszafjamesdenton: I fear I need to bother you with a question as well14:50
yetiszafIs there anything I can do if the l2 population in a dvr-ovs-vlan-environment is inconsistent apart from restarting the agents or rebooting?14:51
*** thuydang has quit IRC14:53
spotzAbout if needed14:53
*** chhagarw has quit IRC14:57
suggestableAnyone got any advice for how to migrate from an old Icehouse POC-turned-Prod environment to our shiny new everything-done-properly Rocky environment? Manually exporting/importing images of the ~300 instances will cost us a lot of disk space (and lose the benefits of QCOW).14:57
jamesdentonyetiszaf i have to step away for a few hours14:59
jamesdentonyetiszaf l don't care much for l2pop and just end up disabling in favor of multicast/broadcast14:59
jamesdentonor better yet, vlan14:59
*** shyamb has quit IRC15:00
yetiszafjamesdenton: Ok, Thanks.15:01
*** Leo_m has joined #openstack-ansible15:01
spotzsuggestable: could you potentially script and export, import with delete before moving on? Might be able to do it without losing anything using the APIs15:06
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-repo_server master: Use distro packages only after they are installed  https://review.openstack.org/61306915:11
*** fatdragon has joined #openstack-ansible15:13
suggestablespotz: "import with delete"? What's that?15:14
spotzsuggestable: so write a script that does an export, imports into the new system then deletes on the filesystem:)15:15
*** gyee has joined #openstack-ansible15:15
spotzYou were worried about disk space but if you do it as you go no disk issues:)15:15
suggestablespotz: Won't that impact my ability to migrate instances or shutdown/restart them if they've lost their base image?15:17
*** fatdragon has quit IRC15:18
suggestablespotz: Ideally, I'd like to migrate the base images, then migrate the QCOW delta for each instance, along with all its metadata (adjusted for the new environment) so that the instances don't really notice much has changed other than their IPs.15:18
spotzsuggestable: I'm just saying delete the image you've exported from where it's exported too, not from the cluster itself. Basically you'd export from cluster a on a machine1 running the script. import into cluster b and then clean up machine1 before moving to the next image15:18
spotzNothing has changed on cluster a15:19
suggestablespotz: OK, that's easy. What results from it, though, is cluster b ends up with images for every instance that was migrated, and the instances have lost their association with the base image they were built from.15:19
*** Emine has quit IRC15:22
spotzsuggestable: could just clean up afterwards with a database update. Other options are to bring everything over on the filesystem to the same location providing that's where glance is keeping the images and do a dump and load with any fixes. Not sure of DB schema compatability though15:22
spotzThis might be a better question for the ops channel in case someone has done it already15:22
suggestablespotz: OK. Thank you :-)15:23
suggestableI'll join #openstack-ops.15:24
spotz#openstack-operators :)15:24
spotzNice folks over there too:)15:24
suggestableThat would be why there was nobody in -ops... :-(15:24
spotzmay not be as active so be patient getting a response15:24
suggestableNo worries. Thank you! :-)15:25
*** vnogin has quit IRC15:26
spotzYou're welcome:)15:28
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-lxc_hosts master: Minimise distro packages installed into the lxc image  https://review.openstack.org/61307815:31
*** fatdragon has joined #openstack-ansible15:32
*** ThiagoCMC has quit IRC15:40
*** fghaas has quit IRC15:42
*** pcaruana has quit IRC15:49
mbuilI am having some issues with the rabbitmq role because the amount of forks increases over the limit of the cgroup when the service is started. I saw that the role includes a config which limits the amount of threads to 128 and fixes my problem: https://github.com/openstack/openstack-ansible-rabbitmq_server/blob/master/templates/rabbitmq-env.j2#L4. Nevertheless, the first time the service is started is in the rabbitmq_install.yml and15:51
mbuilat that point the config generated by OSA is not there yet. That config is generated in the rabbitmq_post_install.yml (and the service is restarted)15:51
openstackgerritMerged openstack/openstack-ansible-ops master: MNAIO: Implement branch var for pinning Ansible & Plugins  https://review.openstack.org/61296315:51
mbuilDoes anyone understand why the service is started in the install.yml playbook? Just checking before I create a patch15:51
*** fghaas has joined #openstack-ansible15:57
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-lxc_hosts master: Minimise distro packages installed into the lxc image  https://review.openstack.org/61307815:57
*** dave-mccowan has quit IRC16:02
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-memcached_server master: Add netcat as a required package  https://review.openstack.org/61309916:11
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-lxc_hosts master: Minimise distro packages installed into the lxc image  https://review.openstack.org/61307816:14
*** suggestable has quit IRC16:15
*** vnogin has joined #openstack-ansible16:16
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_keystone master: Add cron as a required package  https://review.openstack.org/61310216:17
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-lxc_hosts master: Minimise distro packages installed into the lxc image  https://review.openstack.org/61307816:18
cloudnullmbuil I thought that we disabled the service start on install. however its possible Im mistaken there.16:19
*** nsmeds_ has joined #openstack-ansible16:19
cloudnullThiagoCMC evrardjp there's also `nspawn-attach $CONTAINERNAME` or `machinectl shell $CONTAINERNAME``16:20
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_glance master: Add cron as a required package  https://review.openstack.org/61310316:22
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-lxc_hosts master: Minimise distro packages installed into the lxc image  https://review.openstack.org/61307816:23
*** vnogin has quit IRC16:24
*** pvradu has quit IRC16:26
*** pvradu has joined #openstack-ansible16:26
*** aedc has joined #openstack-ansible16:27
openstackgerritManuel Buil proposed openstack/openstack-ansible-rabbitmq_server master: Start rabbitmq service when config is in place  https://review.openstack.org/61310416:29
*** pvradu has quit IRC16:31
nsmeds_also, can specify a shell with machinectl, which I find handy16:33
nsmeds_`machinectl shell $CONTAINERNAME /bin/bash` for example16:33
*** vnogin has joined #openstack-ansible16:33
antonymanyone familiar with the cinder service reload vs restart in os-cinder-install?  it appears that it was set to restart to avoid a cpu issues but then reordered and set to reload https://github.com/openstack/openstack-ansible/commit/4b7527917dd18d6d0d3f98e2eceb7264e10cfd41  i'm noticing after a N2Q upgrade that cinder scheduler is spinning at 100% complaining about a connection loss to db which16:35
antonymseems to settle after a final restart16:35
*** vnogin has quit IRC16:38
openstackgerritManuel Buil proposed openstack/openstack-ansible-rabbitmq_server master: Start rabbitmq service when config is in place  https://review.openstack.org/61310416:39
*** ansmith has quit IRC16:39
*** pcaruana has joined #openstack-ansible16:46
openstackgerritMerged openstack/openstack-ansible-tests stable/rocky: Do not use master branch for role tests  https://review.openstack.org/61298316:50
jrosserodyssey4me: i made a stab at reducing all those -dev packages - https://review.openstack.org/#/q/topic:reduce-packages+(status:open+OR+status:merged)17:05
jrosseri'm a bit stuck on cinder when installing packages into the cinder venv17:05
*** irclogbot_0 has quit IRC17:08
*** pvradu has joined #openstack-ansible17:23
*** ansmith has joined #openstack-ansible17:27
*** pvradu has quit IRC17:27
*** reineruhry has joined #openstack-ansible17:33
*** spatel has quit IRC17:36
reineruhryHi anybody there?17:43
*** ThiagoCMC has joined #openstack-ansible17:47
*** reineruhry has quit IRC17:47
*** hamzaachi has quit IRC17:48
*** brent_u has joined #openstack-ansible17:50
*** reineruhry has joined #openstack-ansible17:52
reineruhryI wanna rebuild a node, is there a playbook where I can clean everything?17:54
brent_uwhat type of node?18:01
openstackgerritGerman Eichberger proposed openstack/openstack-ansible-os_octavia master: Stop arbitrary shutting down services  https://review.openstack.org/60622118:02
reineruhryIt's one of the hosts running mixed services, want to be sure that I can remove it and all configurations pointing to it, will also be removed!18:02
*** electrofelix has quit IRC18:05
*** aredinger has quit IRC18:07
openstackgerritGerman Eichberger proposed openstack/openstack-ansible-os_octavia master: Break out config files for each octavia service  https://review.openstack.org/60322818:08
jrosserreineruhry: I don’t think there is such a thing as “remove configurations pointing to it”18:10
jrosserIf you have a HA deployment then in principle the services should be resilient to a node being removed18:10
reineruhryYes, but the configuration files will keep a little "dirt", as it will have the old config, in it, right?18:11
jrosserThere are instructions for “major upgrades” which quite likely involve something similar, I woulld give those a read18:11
reineruhryOk, I'll, thank you!18:12
jrosserI assume that when you say rebuild a node you want to bring it back online again doing the same function?18:12
reineruhryno, I wan't it doing only one function...18:13
jrosserAh well that is a bit different I guess18:13
reineruhrybefore I had the node running, horizon, galera, cinder...18:14
reineruhrywe decided to dedicate the node to cinder...18:14
reineruhrybut after "cleaning" as much as possible, I started having issues with repo, and many others...18:14
jrosserRight, so that sounds more like you want to redistribute the existing containers18:14
reineruhrybtw... it's a "fresh" setup18:15
jrosserYou shouldn’t need to do any cleaning, deleting containers from one host, updating the inventory to change the physical host and redeploying the container should require no config changes18:15
reineruhrybut as we're facing this kind of situation now, we would like to understand what to do later18:16
reineruhryright...18:16
reineruhryso I'll bring the error that I'm having now...18:16
reineruhrythe repository is failing with file not found...18:17
reineruhrycalling http://IP:8181/venvs/18.0.0/ubuntu-18.04-x86_64/keystone-18.0.0-x86_64.chec18:17
*** ivve has quit IRC18:18
reineruhryI've tried to rebuild the repos containers, but keeps the same error18:18
openstackgerrittonytan4ever proposed openstack/openstack-ansible-ops master: Parameterize ansible version in embedded runtime  https://review.openstack.org/61313318:18
openstackgerrittonytan4ever proposed openstack/openstack-ansible-ops master: Parameterize ansible version in embedded runtime  https://review.openstack.org/61313318:19
jrosserreineruhry: sorry I have to go now - there will be folks in better time zones who can help too....18:20
reineruhrythank you!18:21
openstackgerritVictor Palma proposed openstack/openstack-ansible-ops master: update to osquery  https://review.openstack.org/61313618:23
*** reineruhry has quit IRC18:26
*** brent_u has quit IRC18:28
*** tridde has joined #openstack-ansible18:43
*** jhesketh_ has joined #openstack-ansible18:44
*** FrankZhang has quit IRC18:48
*** ThiagoCMC has quit IRC18:48
*** priteau has quit IRC18:48
*** aludwar has quit IRC18:48
*** raginbajin has quit IRC18:48
*** jbadiapa has quit IRC18:48
*** trident has quit IRC18:48
*** sum12 has quit IRC18:48
*** dcdamien has quit IRC18:48
*** mcarden has quit IRC18:48
*** spotz has quit IRC18:48
*** radez has quit IRC18:48
*** errr has quit IRC18:48
*** jhesketh has quit IRC18:48
*** jbadiapa has joined #openstack-ansible18:49
*** sum12 has joined #openstack-ansible18:49
*** dcdamien has joined #openstack-ansible18:49
*** errr has joined #openstack-ansible18:50
*** spotz has joined #openstack-ansible18:52
*** aludwar has joined #openstack-ansible18:54
*** openstackgerrit has quit IRC19:06
*** DanyC has joined #openstack-ansible19:14
*** ivve has joined #openstack-ansible19:20
*** hamzaachi has joined #openstack-ansible19:24
*** irclogbot_0 has joined #openstack-ansible19:27
*** irclogbot_0 has quit IRC19:27
*** irclogbot_0 has joined #openstack-ansible19:32
*** DanyC has quit IRC19:45
*** openstackgerrit has joined #openstack-ansible19:54
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_keystone master: Remove paste references in Keystone  https://review.openstack.org/61303019:54
openstackgerritJonathan Rosser proposed openstack/openstack-ansible-os_keystone master: Remove paste references in Keystone  https://review.openstack.org/61303019:58
*** strattao has quit IRC20:17
*** ivve has quit IRC20:19
*** irclogbot_0 has quit IRC20:21
*** DanyC has joined #openstack-ansible20:23
*** ansmith has quit IRC20:34
*** mmercer has joined #openstack-ansible20:43
*** DanyC has quit IRC20:49
*** pcaruana has quit IRC20:50
*** openstack has quit IRC21:03
*** openstack has joined #openstack-ansible21:07
*** ChanServ sets mode: +o openstack21:07
*** fghaas has left #openstack-ansible21:10
*** Leo_m has quit IRC21:10
*** spsurya has quit IRC21:21
*** vnogin has joined #openstack-ansible21:25
*** vnogin has quit IRC21:29
*** ansmith has joined #openstack-ansible21:30
openstackgerritNicolas Bock proposed openstack/openstack-ansible-os_nova master: Add `cpu_model` configuration option  https://review.openstack.org/61316821:37
*** vakuznet has quit IRC21:40
*** spatel has joined #openstack-ansible21:44
*** isitirctime has joined #openstack-ansible21:46
isitirctimeHope everyone is well21:46
isitirctimeSeem to have an issue going from pike to queens with ansible bootstrap21:46
isitirctimeailed: [localhost] (item={'scm': u'git', 'src': u'https://git.openstack.org/openstack/openstack-ansible-os_tacker', 'version': u'30bd74292021e5507cdfad4b9a7f827a5f8452f6', 'name': u'os_tacker'}) => {"attempts": 2, "changed": false, "cmd": "/usr/bin/git checkout --force 30bd74292021e5507cdfad4b9a7f827a5f8452f6", "failed": true, "item": {"name": "os_tacker", "scm": "git", "src": "https://git.openstack.org/openstack/openstack-a21:46
isitirctimensible-os_tacker", "version": "30bd74292021e5507cdfad4b9a7f827a5f8452f6"}, "msg": "Failed to checkout 30bd74292021e5507cdfad4b9a7f827a5f8452f6", "rc": 128, "stderr": "fatal: reference is not a tree: 30bd74292021e5507cdfad4b9a7f827a5f8452f6\n", "stderr_lines": ["fatal: reference is not a tree: 30bd74292021e5507cdfad4b9a7f827a5f8452f6"], "stdout": "", "stdout_lines": []}21:46
isitirctimethe repo exist and I can pull it down on my desk and git check out. Kind of perplexed21:47
*** irclogbot_0 has joined #openstack-ansible21:48
openstackgerritVictor Palma proposed openstack/openstack-ansible-ops master: update to osquery  https://review.openstack.org/61313621:49
*** hamzaachi has quit IRC21:50
*** irclogbot_0 has quit IRC21:50
*** tosky has quit IRC21:53
*** spatel has quit IRC22:21
*** cshen has quit IRC22:37
*** aredinger has joined #openstack-ansible23:07
isitirctimedeleting /etc/ansible/roles/os_tacker and rerunning the setup worked for me23:09
isitirctimeMy test openstack updating to the same version of queens did not run into that problem so probably just an issue with the preexisting pike repo23:16
*** openstackgerrit has quit IRC23:20
*** spatel has joined #openstack-ansible23:33
*** spatel has quit IRC23:37
*** ansmith has quit IRC23:38

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