Monday, 2022-08-22

opendevreviewwangxiyuan proposed openstack/kolla-ansible master: Upgrade openEuler Distro  https://review.opendev.org/c/openstack/kolla-ansible/+/85237200:51
opendevreviewMichal Nasiadka proposed openstack/kolla master: Add Ubuntu Jammy MariaDB repository  https://review.opendev.org/c/openstack/kolla/+/85380706:35
opendevreviewMichal Nasiadka proposed openstack/kolla master: Add Ubuntu Jammy MariaDB repository  https://review.opendev.org/c/openstack/kolla/+/85380706:35
opendevreviewMichal Nasiadka proposed openstack/kolla-ansible master: add basic CentOS Stream 9 / Rocky Linux 9 support  https://review.opendev.org/c/openstack/kolla-ansible/+/83971507:03
admin1what is the release date for 22.04  ubuntu support in kolla ( not in the master branch ) 07:31
yoctozeptoadmin1: if you mean kolla-ansible, on the host, you can disable the os version checks in prechecks and all the steps should "just work" iirc; if you mean kolla, then we are not going to switch the base os version in the released branches07:43
*** RamonaRautenberg[m] is now known as RamonaBeermann[m]07:55
opendevreviewRadosław Piliszek proposed openstack/kolla-ansible master: Use Docker healthchecks for mariadb-server service  https://review.opendev.org/c/openstack/kolla-ansible/+/80561608:27
admin1yoctozepto, thanks .. meant kolla-ansible 08:49
wuchunyanghello, guys, how do we maintain the prometheus-server version ? the current version in kolla is still 2.26.1 which is out-dated. currently the latest version is 2.38 which supports some nice features such as http sd. 09:05
mnasiadkayoctozepto: that Ubuntu CI fail with registry error is a bit bizarre09:12
mnasiadkawell, push error ;)09:12
fricklerwuchunyang: I don't have an answer to your question, just a friendly reminder that not everyone likes to be addressed as "guys", please consider being more neutral09:17
opendevreviewMichal Nasiadka proposed openstack/kolla-ansible master: add basic CentOS Stream 9 / Rocky Linux 9 support  https://review.opendev.org/c/openstack/kolla-ansible/+/83971509:17
wuchunyangfrickler:  hi, sorry for my word, my english is bad,  sorry again. 09:19
mnasiadkawuchunyang: we maintain it as long, as there's an interested maintainer in bumping up the version :)09:20
mnasiadkawe don't have any bot to follow releases of external components09:21
wuchunyangnice, I think we should  upgrade to the latest version now. 09:23
opendevreviewRadosław Piliszek proposed openstack/kolla-ansible master: [docs] Overview of Ironic, instead of scaring  https://review.opendev.org/c/openstack/kolla-ansible/+/85393509:35
opendevreviewVerification of a change to openstack/kolla master failed: Switch to use Zed binary packages from UCA  https://review.opendev.org/c/openstack/kolla/+/85307209:37
yoctozeptomeh, it looks like the CI is red09:39
yoctozeptomarvelous (-:09:39
yoctozeptoI added details to the whiteboard09:40
yoctozeptolooks like some python3.10 incompat09:41
yoctozeptobut not sure09:41
yoctozeptoothers welcome to debug further09:41
mnasiadkawonder it did not show up initially when we merged Jammy09:45
yoctozeptothe k-a jobs ran on bionic09:52
yoctozeptogeez, focal09:52
yoctozeptoneed to update the previous version in my head ^^09:52
yoctozeptoanyhow, we missed it because of the magic of building&pushing only if required09:53
mnasiadkaOk, so the rabbitmq OOM issue is both on CentOS Stream 9 and Rocky Linux 910:13
opendevreviewMichal Nasiadka proposed openstack/kolla master: rabbitmq: Update to 3.10  https://review.opendev.org/c/openstack/kolla/+/85331810:14
admin1is there a variable to skip distro check .. as it fails in bootstrap also 10:24
yoctozeptomnasiadka: well, it's the same upstream kernel10:26
kevkohi, guys, can I somehow tell in my images profile that one image i want to build for example centos and others debian ? 10:33
kevkofor kolla images build 10:33
yoctozeptokevko: not really, but you can build them separately10:35
kevkoyeah, i know that I can 10:36
kevkojust wondering ..10:36
kevkobecause we have customer he was using centos before ..and there are some changes in libvirt hard to migrate to debian .. so vy are using centos for libvirt ..others are defina10:36
kevkodebian10:36
kevkoproblem is that we has to build it and want to have some nice workflow ..10:37
kevko(we need to edit config for Skylake CPU ... remove some CPU feature )10:37
kevkoso, i was just wondering if somehow i can define profile ..eveything debian ..but this and this image centos ...tag same 10:38
yoctozeptonot supported10:39
kevkook, i will write some jenkins wrapper pipeline 10:46
kevkobtw, proxysql merged ..thank you to all who were patient with me :P 10:47
kevkohave you ever tried ? :) 10:47
kevkoanyone ? 10:47
opendevreviewMerged openstack/kolla-ansible master: Use Docker healthchecks for mariadb-server service  https://review.opendev.org/c/openstack/kolla-ansible/+/80561611:02
frickleryoctozepto: mnasiadka: so is one of you looking deeper into the Jammy issue? I'm here to help, but would like to avoid duplicated work11:04
* yoctozepto not11:04
fricklerdocker-5.0.3 vs. docker-6.0.0 is very likely the trigger, so not Jammy for once. sadly https://docker-py.readthedocs.io/en/stable/change-log.html doesn't even list 6.0.0 yet11:29
yoctozeptofrickler: but why does it work on debian?11:34
yoctozeptooh, I may know11:34
yoctozeptoyeah, we still avoid our push on debian11:35
yoctozeptohence why it was missed11:35
yoctozeptook, so it's the new awesome docker-py, roger that11:36
fricklerhmm, still it doesn't fail for me locally. will hold a node for further debugging, may be related to some infra special foobar11:45
yoctozeptofrickler: have you enabled kolla-build push?11:48
yoctozeptoit's off by default11:48
fricklersure. but I found that the tox install caps docker via u-c, which still has 5.0.3. rerunning with 6.0.0 now11:52
yoctozeptoah, so we are missing caps11:55
frickleroh, but looks like this is an easy one. docker.version is now a whole module instead of a string11:57
yoctozeptonice change12:03
fricklerseems according to how they use it, docker.version never was a stable interface, we should use "importlib.metadata.version('docker')" instead, that works for both versions. patch in 312:04
yoctozeptook, superb12:06
yoctozeptotbh, we probably should not be checking the version in the first place...12:07
yoctozepto:D12:07
fricklerI was just looking at the code and wondering whether we can't simple require docker>=3.0.0 now12:08
fricklerthat's from 201812:09
fricklersaves a lot of mocking and special casing in the tests, too12:10
* yoctozepto approves12:12
opendevreviewDr. Jens Harbott proposed openstack/kolla master: Bump minimum docker-py version  https://review.opendev.org/c/openstack/kolla/+/85395312:17
opendevreviewDr. Jens Harbott proposed openstack/kolla master: Switch to use Zed binary packages from UCA  https://review.opendev.org/c/openstack/kolla/+/85307212:18
mnasiadkafrickler: nice work, thanks12:24
mnasiadkayoctozepto: doesn't have to be the same ;-)12:25
mnasiadka(kernel)12:25
yoctozeptomnasiadka: surely, but I bet it's close :-)12:25
mnasiadkamight be, now that DIB produces working RL9 builds - I'll test that locally...12:26
opendevreviewMichal Nasiadka proposed openstack/kolla master: rabbitmq: Update to 3.10  https://review.opendev.org/c/openstack/kolla/+/85331812:32
opendevreviewFranco Mariotti proposed openstack/kolla-ansible master: Allow exposing OpenStack exporter via HAProxy  https://review.opendev.org/c/openstack/kolla-ansible/+/85155312:52
opendevreviewFranco Mariotti proposed openstack/kolla-ansible master: Expose OpenStack exporter via HAProxy  https://review.opendev.org/c/openstack/kolla-ansible/+/85155313:22
opendevreviewFranco Mariotti proposed openstack/kolla-ansible master: Allow exposing OpenStack exporter via HAProxy  https://review.opendev.org/c/openstack/kolla-ansible/+/85155313:22
opendevreviewPierre Riteau proposed openstack/kayobe master: Support additional build host packages for IPA & overcloud  https://review.opendev.org/c/openstack/kayobe/+/85090313:25
opendevreviewPierre Riteau proposed openstack/kayobe master: [DNM] Test that GitHub dependencies work  https://review.opendev.org/c/openstack/kayobe/+/85397913:29
fricklermnasiadka: do you have time for a review of https://review.opendev.org/c/openstack/kolla/+/853953 to unblock gate? tests have passed now13:38
kevkofrickler: done 13:56
opendevreviewWill Szumski proposed openstack/kolla-ansible master: Fix issue with genconfig and octavia_autoconfigure  https://review.opendev.org/c/openstack/kolla-ansible/+/85398914:01
fricklerthx kevko 14:02
kevkofrickler: can you push this ? https://review.opendev.org/c/openstack/kolla-ansible/+/81319314:04
mnasiadkafrickler: triple +2, what can go wrong :)14:05
kevkomnasiadka: Thank you sir 14:07
mnasiadkakevko: np14:17
kevkobtw, I would like to ask something 14:19
kevkoand if you met this problem before 14:19
kevkowe had problem with centos libvirt package ...as they (centos) included  feature 'mpx' in some version of libvirt /usr/share/libvirt/cpu_map/x86_Skylake-Server-noTSX-IBRS.xml and in another version they removed ...14:21
kevkowe decided to fix image by removing this feature from libvirt image and rebuild image14:21
kevko(to fix migrations)14:21
kevkobut what would be kolish way ? 14:22
opendevreviewMichal Nasiadka proposed openstack/kolla master: curl: Add retries  https://review.opendev.org/c/openstack/kolla/+/85339814:33
mnasiadkakevko: there's no kolish way, we depend on what distros provide :) agree it's a bit of an issue if you want to do live migrations, so an image customisation is probably the way to go14:38
kevkowell, i was wondering that *maybe* kolla-ansible can inject libvirt configuration if user wants 14:40
kevkomnasiadka: ^^14:40
mnasiadkawell, if that can be overridden in libvirt.conf, then sure14:41
mnasiadkaDon't we allow overriding libvirt.conf?14:41
kevkowell, this is for /usr/share/libvirt/cpu_map/x86_Skylake-Server-noTSX-IBRS.xml << in our case 14:41
kevkoi was just wondering, in case user has same/similar problem and know that he can override package's xml ...he can do it in k-a 14:42
kevkoand not needed to modify image14:42
mnasiadkaI never heard anybody else doing that, so maybe it's not that common after all14:43
kevkook nevermind 14:46
opendevreviewWill Szumski proposed openstack/kolla-ansible master: Fix issue with genconfig and octavia_autoconfigure  https://review.opendev.org/c/openstack/kolla-ansible/+/85398914:46
opendevreviewWill Szumski proposed openstack/kolla-ansible master: Fix issue with genconfig and octavia_autoconfigure  https://review.opendev.org/c/openstack/kolla-ansible/+/85398914:49
opendevreviewWill Szumski proposed openstack/kolla-ansible master: Fix issue with genconfig and octavia_auto_configure  https://review.opendev.org/c/openstack/kolla-ansible/+/85398914:49
opendevreviewMichal Nasiadka proposed openstack/kolla-ansible master: add basic CentOS Stream 9 / Rocky Linux 9 support  https://review.opendev.org/c/openstack/kolla-ansible/+/83971515:05
opendevreviewMerged openstack/kolla master: Bump minimum docker-py version  https://review.opendev.org/c/openstack/kolla/+/85395315:06
admin1how to have kolla-ansible continue playbook from cinder and onwards ( skip the ones already deployed ) ? 15:11
opendevreviewMerged openstack/kolla master: Switch to use Zed binary packages from UCA  https://review.opendev.org/c/openstack/kolla/+/85307215:17
opendevreviewMerged openstack/kolla-ansible master: Add api_workers for each service to defaults  https://review.opendev.org/c/openstack/kolla-ansible/+/81319315:30
opendevreviewRadosław Piliszek proposed openstack/kolla master: curl: Add retries  https://review.opendev.org/c/openstack/kolla/+/85339815:36
opendevreviewRadosław Piliszek proposed openstack/kolla master: mariadb: Fix RPM repository URLs  https://review.opendev.org/c/openstack/kolla/+/85380615:37
opendevreviewRadosław Piliszek proposed openstack/kolla master: Add Ubuntu Jammy MariaDB repository  https://review.opendev.org/c/openstack/kolla/+/85380715:37
jingvaradmin1: as any ansible playbook ,  you should determine which tags you need to run15:39
opendevreviewMichal Nasiadka proposed openstack/kolla-ansible master: ovn: Break out role into ovn-db and ovn-controller roles  https://review.opendev.org/c/openstack/kolla-ansible/+/84776916:18
opendevreviewMichal Nasiadka proposed openstack/kolla-ansible master: ovn: Break out role into ovn-db and ovn-controller roles  https://review.opendev.org/c/openstack/kolla-ansible/+/84776916:18
opendevreviewMichal Nasiadka proposed openstack/kolla-ansible master: add basic CentOS Stream 9 / Rocky Linux 9 support  https://review.opendev.org/c/openstack/kolla-ansible/+/83971516:24
opendevreviewPierre Riteau proposed openstack/kayobe master: [DNM] Test that GitHub dependencies work  https://review.opendev.org/c/openstack/kayobe/+/85397916:42
admin1does kolla-ansible bring up the vip automatically ? 17:17
admin1i do not see a vip .. but controller services seem to have registerd themselves .. while nova-compute process from hypervisor is not able to register itself or reach the vip 17:18
yoctozeptothe vip is managed by keepalived17:36

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