Friday, 2021-08-20

*** rpittau|afk is now known as rpittau07:38
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible master: Switch CentOS upgrade jobs to Stream ones  https://review.opendev.org/c/openstack/openstack-ansible/+/80535008:11
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible-os_neutron stable/wallaby: Exclude neutron from venv constraints  https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/79888108:58
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible master: Add integrated build job to use in sahara repo  https://review.opendev.org/c/openstack/openstack-ansible/+/80245708:59
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible master: Add heat service when scenario includes sahara  https://review.opendev.org/c/openstack/openstack-ansible/+/80253508:59
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible master: Enable tempest tests for sahara  https://review.opendev.org/c/openstack/openstack-ansible/+/80255108:59
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible-os_horizon master: Add option to override horizon policies  https://review.opendev.org/c/openstack/openstack-ansible-os_horizon/+/74826411:15
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible-os_horizon master: Add option to override horizon policies  https://review.opendev.org/c/openstack/openstack-ansible-os_horizon/+/74826411:16
tabachaHi I have problems updating Roles via ansible-galaxy install -r requirements.yml it always asks for a "Username for 'https://opendev.org'", has somebody a hint for me?11:42
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible master: Switch ceph-ansible to Pacific  https://review.opendev.org/c/openstack/openstack-ansible/+/80461012:06
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible master: Switch ceph-ansible to Pacific  https://review.opendev.org/c/openstack/openstack-ansible/+/80461012:06
noonedeadpunktabacha: most likely you;re asking for non-existent repo there12:07
tabachanoonedeadpunk: thank you, looks like it was that I copied the url once again and now it works12:19
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible-os_neutron master: Exclude neutron from venv constraints  https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/79896012:30
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible master: Include openstack_services for murano role  https://review.opendev.org/c/openstack/openstack-ansible/+/80537312:41
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible-os_murano master: Fix murano role  https://review.opendev.org/c/openstack/openstack-ansible-os_murano/+/78123912:42
*** rpittau is now known as rpittau|afk13:55
spatelnoonedeadpunk any luck here - https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/80399014:20
noonedeadpunkUm, why you ask me?:)14:31
noonedeadpunkdoh, I had draft that I haven;t posted lol14:32
noonedeadpunkBut I think we can go with current patch as well14:32
noonedeadpunkI had put +2 14:32
noonedeadpunkandrewbonney: we need to redesign https://opendev.org/openstack/ansible-role-python_venv_build/src/branch/master/tasks/python_venv_wheel_build.yml#L156-L16414:36
noonedeadpunkCurrent;y this task takes on it's own like 5 mins overall. It's kind of ridiculous https://zuul.opendev.org/t/openstack/build/a275b45ea7e94d4589198a0d39d9ffc3/log/job-output.txt#26529-2682014:37
dmsimardo/ btw, ansiblefest and the ansible contributor summit are coming up soon and they're both free -- it'd be nice to see you there: https://www.ansible.com/ansiblefest && https://ansiblecs202109.eventbrite.com/14:37
noonedeadpunkConsidering we do chown files in /tmp 14:37
andrewbonneyYeah, I've noticed it more on re-deploying things. Any suggestions?14:38
andrewbonneyJust target the whole directory?14:38
noonedeadpunkYeah with recurse14:38
noonedeadpunkAnd the correct directory14:38
noonedeadpunkother then that - we can leverage find but it would be resource consuming as well...14:39
noonedeadpunkdmsimard: thanks! I keep track on ansiblefest :)14:39
noonedeadpunkandrewbonney: because I think that correct wheels should be somewhere in /var/www/repo not /tmp?14:40
noonedeadpunkor the problem is that we can't move them later?14:41
andrewbonneyThey get moved there in a shell command in the next step14:41
andrewbonneyI didn't want to accidentally change permissions on other files, so did it pre-move14:42
noonedeadpunksorry, let's start from beginning - what problem we were solving with that task ?:)14:42
andrewbonneyWhen you build wheels they are owned by root. This prevents the lsyncd process from being able to delete them if they're created on a backup repo server14:42
andrewbonneyThe patch lets you set the owner to the one defined by the repo server role14:43
noonedeadpunkmaybe we can just use rsync instead of mv?14:43
noonedeadpunkI mean https://docs.ansible.com/ansible/latest/collections/ansible/posix/synchronize_module.html14:43
noonedeadpunkwe will 1. move files more efficiently 2. chown them14:44
andrewbonneyCould do, although we may then still want to tidy up /tmp in case they're larger files?14:45
noonedeadpunkyeah, agree14:45
noonedeadpunkalso we might need to add rsync to repo containers as well14:46
noonedeadpunkah, well, we already have lsyncd there :)14:47
spatelnoonedeadpunk i thought you are going to propose better solution so i was waiting for your draft :)14:52
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible-repo_server master: Cleanup CentOS 7 vars file  https://review.opendev.org/c/openstack/openstack-ansible-repo_server/+/80540114:52
spatelanyway lets go with existing one and later we can improve if we need. anyway we need more people to deploy OVN to find bugs14:52
noonedeadpunkspatel: meh :) yeah, I had some draft but eventually I realized that it's kind of almost the same14:53
noonedeadpunkyeah, agree14:53
spatelsounds good! 14:53
andrewbonneynoonedeadpunk: synchronize seems to let you preserve permissions but not set them. I'll do a quick patch that just changes perms, but can come back to it next week if we want another method14:53
spatelnoonedeadpunk i am planning to add support of skyline in OSA, any objection ? - https://satishdotpatel.github.io/openstack-skyline-dashborad/14:54
noonedeadpunkandrewbonney: damn, yes, you're right14:55
opendevreviewAndrew Bonney proposed openstack/ansible-role-python_venv_build master: Improve speed of permissions changes  https://review.opendev.org/c/openstack/ansible-role-python_venv_build/+/80540214:56
noonedeadpunkspatel: do you have some demo installed? But eventually that is not an official openstack project...14:57
spatelits not official.. i am running it in my lab and on my blog i have posted some screenshots 14:57
noonedeadpunkLooks really nice.14:58
spatelor i may add support inside openstack-ansible-ops for external service. 14:58
noonedeadpunkI think we can add it to ops repo at least and then decide14:58
spatelit can totally replace horizon with good way 14:59
spatelYesterday i upgrade from V 22.1.2 to W 23.0.1 and it went smoothly. 15:00
noonedeadpunkWell, replace horizon would be kind of tough until all projects make plugins for horizon only15:03
noonedeadpunkBut I really like your screenshots:)15:04
spatelOh yes! its anyway alternative. and may be if more people start using it then we will get more developers 15:04
spatelIt has lots of features like monitoring compute/neutron agent from GUI etc.. 15:04
noonedeadpunkAlso I guess it should be possible to get kind of same UI for horizon as well with proper theme... But other problem of horizon that it's slow...15:04
spatelhorizon is freaking slow... i have 800 vms in one project and it take hell of time to just click from 1 tab to other.. 15:05
spatelI have stopped using horizon.. 15:05
spatelSkyline use different way to pull data and its very fast.. 15:06
spatelUser friendly 15:06
spatelnoonedeadpunk check this out - https://www.youtube.com/watch?v=pFAJLwzxv0A&ab_channel=%E5%90%B4%E6%96%87%E7%9B%B815:06
jnamdarhi all, I'm still kinda struggling on my octavia network revamp15:16
jnamdarAre there some network examples on OSA? I recall seeing them in the docs but I can't seem to find them anymore15:16
noonedeadpunkjnamdar: these? https://docs.openstack.org/openstack-ansible-os_octavia/latest/configure-octavia.html15:19
jnamdarmmh nope there were some network diagrams iirc15:20
jnamdarin like example scenarios15:21
jnamdarsomething like this https://docs.openstack.org/openstack-ansible/stein/reference/architecture/container-networking.html but with examples15:22
noonedeadpunkjnamdar: I think there maybe was in spatels blog15:50
noonedeadpunkhttps://satishdotpatel.github.io//openstack-ansible-octavia/15:50
jnamdarnoonedeadpunk: got it, it was these pages https://docs.openstack.org/project-deploy-guide/openstack-ansible/newton/app-config-test.html15:57
jnamdarin appendices15:57
noonedeadpunkbut there was no octavia in newton?15:59
jnamdaryeah exactly lol15:59
jnamdarbasically I was looking for this kind of example but with some octavia lbaas networks16:00
jnamdarso I could compare my infra16:00
noonedeadpunkI believe these docs are now there https://docs.openstack.org/openstack-ansible/latest/reference/architecture/container-networking.html16:01
noonedeadpunknah, https://docs.openstack.org/openstack-ansible/latest/user/network-arch/example.html16:02
noonedeadpunkbut we haven't updated them with octavia16:02
jnamdarthat could help thx16:04
jnamdarbut yeah octavia is missing16:04
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible-os_murano master: Fix murano role  https://review.opendev.org/c/openstack/openstack-ansible-os_murano/+/78123916:12
opendevreviewDmitriy Rabotyagov proposed openstack/openstack-ansible-os_murano master: Fix murano role  https://review.opendev.org/c/openstack/openstack-ansible-os_murano/+/78123916:18
*** mgoddard- is now known as mgoddard17:43
opendevreviewMerged openstack/openstack-ansible stable/wallaby: Add guide for distribution upgrades to docs  https://review.opendev.org/c/openstack/openstack-ansible/+/80514019:39
opendevreviewMerged openstack/openstack-ansible stable/victoria: Add guide for distribution upgrades to docs  https://review.opendev.org/c/openstack/openstack-ansible/+/80514119:39
opendevreviewMerged openstack/openstack-ansible-rabbitmq_server stable/victoria: Fix erlang upgrades for rabbitmq external_repo installs  https://review.opendev.org/c/openstack/openstack-ansible-rabbitmq_server/+/80488422:04
opendevreviewMerged openstack/openstack-ansible-rabbitmq_server stable/wallaby: Fix erlang upgrades for rabbitmq external_repo installs  https://review.opendev.org/c/openstack/openstack-ansible-rabbitmq_server/+/80486122:05
opendevreviewMerged openstack/openstack-ansible-os_neutron master: Use list of cluster member for ovn ml2 agent to directly connect  https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/80399022:50
opendevreviewMerged openstack/openstack-ansible-os_neutron stable/wallaby: Replace centos-8.x jobs with centos-8-stream  https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/80444722:50
opendevreviewMerged openstack/openstack-ansible-os_neutron stable/wallaby: Set ovn hostname using nodename facts  https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/80444823:16
opendevreviewMerged openstack/openstack-ansible-os_neutron stable/wallaby: Fix OVN metadata protocol to point https  https://review.opendev.org/c/openstack/openstack-ansible-os_neutron/+/80444923:16

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!