Wednesday, 2024-06-26

tis_at_teutokevko: Good morning. Hi, is there anything needed to get https://review.opendev.org/c/openstack/kolla-ansible/+/922391 merged, or will it take some time? I see, there was a failed pipeline-run. Not sure but i think that was not related to my change.06:07
mnasiadkatis_at_teuto: replied in the patch06:55
mnasiadkamorning06:56
SvenKieskemorning07:30
SvenKieskethat's why I voted -1 for backporting :D07:30
stan_SvenKieske: I just deployed a fresh antelope cluster with OVN, I'm trying to list router with ovn-nbctl commands, but it is unable to connect to DB sock. ovn-nbctl: unix:/var/run/ovn/ovnnb_db.sock: database connection failed ()07:35
stan_am I missing something?07:35
SvenKieskeare you on a host/container where that socket is available? you need to check that you're actually somewhere where ovn-northdb runs07:39
stan_SvenKieske: I checked on container - ovn_nb_db on controller, is that incorrect? I'm not network guy, just figuring things out07:40
mnasiadkastan_: you need to run this command on the active node in the cluster - or add --no-leader-only option to the CLI07:41
stan_Where should I add this when deploying in kolla 07:42
stan_ ovn-nbctl list Logical_Router --no-leader-only ovn-nbctl: unix:/var/run/ovn/ovnnb_db.sock: database connection failed () ?07:43
mnasiadkawhen deploying?07:43
mnasiadkaovn-nbctl --no-leader-only list ?07:43
stan_one minute let me try this command07:44
SvenKieskeso that command works for me - without the no-leader part - in the ovn-northd container on a controller.07:48
SvenKieskeah nvm, I had a typo07:48
mhinerPlease review the migration patch, thanks: https://review.opendev.org/c/openstack/kolla-ansible/+/83694107:53
SvenKieskestan_ good question, actually, there's the --db flag with which you can alter the socket path07:55
SvenKieskemhm weird, I see a dangling symlink - or the user has insufficient permissions, between /etc/openvswitch/conf.db and /var/lib/openvswitch/conf.db07:57
opendevreviewMichal Nasiadka proposed openstack/kayobe master: Add internal vip address to no_proxy  https://review.opendev.org/c/openstack/kayobe/+/92278707:58
SvenKieskeyou can specify a different db/socket (the terminology is weird there in ovn land) via "--db=unix:/run/ovn/ovn-northd.ctl", but I also get "database connection failed ()". never used ovn-nbctl though08:03
stan_SvenKieske: mnasiadka --no-leader-only listed the routers08:03
SvenKieskeso you say it works? can you post your complete cli command? because it doesn't work for me08:06
stan_give me one second, 08:06
stan_docker container exec -t -u root ovn_nb_db ovn-nbctl --no-leader-only ls-list > This works on controller.. 08:09
stan_docker container exec -t -u root ovn_nb_db ovn-nbctl  ls-list >> Same controller, but did not work08:10
SvenKieskestan_ that works for me as well, notice, you don't need "-u root" afaik the container already runs as root08:11
stan_Where should I check traffic flow.. 08:11
SvenKieskeso I tested it without root and it works08:11
SvenKieskeyou mean logical flow or physical flow? :)08:12
stan_Logical flow08:15
stan_ sudo docker container exec -t -u root ovn_controller ovn-nbctl --no-leader-only ls-list >> This did not work on network node  ovn-nbctl: unix:/var/run/ovn/ovnnb_db.sock: database connection failed (No such file or directory)08:15
stan_This is command working for you in network node?08:21
PrzemekKfor me docker container exec -t -u root ovn_nb_db ovn-nbctl --no-leader-only ls-list > This works on all controllers  / docker container exec -t -u root ovn_nb_db ovn-nbctl  ls-list  This works on 1 controller08:22
PrzemekKdocker container exec -t -u root ovn_controller ovn-nbctl --no-leader-only ls-list / this is not working on network nodes (gw)08:25
opendevreviewPiotr Parczewski proposed openstack/kolla master: Add Let's Encrypt custom arguments support  https://review.opendev.org/c/openstack/kolla/+/91661708:25
stan_PrzemekK Is this nbctl command supposed to work only on controllers?08:26
stan_I'm having trouble accessing my openstack instances from outside, so we are trying to figure out where exactly is the traffic dropped. We are used to OVS, but not sure how to check this08:29
jheikkinI have a question about kolla-ansible upgrade process. Let's say a service DB schema needs to be upgraded as part of openstack version update. Is kolla-ansible doing this upgrade with some customised container image? Is there somewhere a Dockerfile which shows what kolla-ansible actually changes within the image?08:30
PrzemekKstan_ from what i know on GW (network node) there is only local copy of database https://docs.openstack.org/networking-ovn/latest/admin/refarch/refarch.html Service layout08:32
SvenKieskejheikkin: yes kolla does this, let me show you an example...08:38
SvenKieskethese are usually just tasks, e.g. here for keystone: https://github.com/openstack/kolla-ansible/blob/master/ansible/roles/keystone/tasks/upgrade.yml#L23 they trigger some handlers08:39
SvenKieskethis just starts, e.g. for keystone the container with a magic env variable "KOLLA_UPGRADE": https://github.com/openstack/kolla-ansible/blob/master/ansible/roles/keystone/handlers/main.yml#L1508:41
SvenKieskeyou can find then how the images handle this in our kolla repo: https://github.com/search?q=repo%3Aopenstack%2Fkolla%20KOLLA_UPGRADE&type=code08:42
SvenKieskejheikkin: It's even documented: https://github.com/openstack/kolla/blob/428f37124986019bedc897469f9b1f3470b62082/doc/source/admin/kolla_api.rst#environment-variables08:43
SvenKieskeHTH :)08:43
PrzemekKstan_ it looks like ovn-nbctl show command etc are on "You run OVN commands, such as ovn-nbctl show, in the ovn_controller container. The container runs on the Controller node and Compute nodes." https://docs.redhat.com/en/documentation/red_hat_openstack_platform/17.0/html/networking_guide/neutron-troubleshoot_rhosp-network#ovn-db-aliases-creating_neutron-troubleshoot 08:53
jheikkinSvenKieske: Thank you. I didn't realise to check under kolla, found the dockerfiles too. 09:15
SvenKieskejheikkin: you're welcome, no worries :) "kolla" is for building the images, and k-a for configuration/running, restarting, upgrading etc.09:17
SvenKieskeso we find the process to trigger the upgrade in kolla-ansible and the necessary tooling is of course already installed in kolla and defined there.09:25
*** mgoddard- is now known as mgoddard10:12
opendevreviewSylvère Kanapa proposed openstack/kayobe master: Add missing "cloud-init" as "cloud-init-datasource" don't have dependency on it.  https://review.opendev.org/c/openstack/kayobe/+/92279511:23
sylvrHello #openstack-kolla !11:23
sylvrjovial: I submitted the patch you asked for !11:24
jovialslyvr: Amazing, thanks. I'll take a look shortly :)11:25
opendevreviewSylvère Kanapa proposed openstack/kayobe master: Add missing "cloud-init" as "cloud-init-datasource" don't have dependency on it.  https://review.opendev.org/c/openstack/kayobe/+/92279511:35
SvenKieskeis anybody in here (still) using vagrant for anything? I got curious as I found out it even supports docker.12:30
SvenKieskeand I wanted to test if our vagrant docs still work at all :D12:31
opendevreviewPedro Henrique Pereira Martins proposed openstack/kolla-ansible master: Fix the docker container dimensions comparison for short notation  https://review.opendev.org/c/openstack/kolla-ansible/+/88650012:40
mnasiadkamgoddard mnasiadka bbezak frickler kevko SvenKieske mmalchuk gkoper jangutter jsuazo jovial osmanlicilegi mattcrees dougszu - weekly meeting in 9 minutes12:51
darmach\o13:01
kevko\o/13:01
SvenKieskeyou're to early ;)13:01
r-krceko/13:01
SvenKieske\o/13:01
mnasiadka#startmeeting kolla13:01
opendevmeetMeeting started Wed Jun 26 13:01:37 2024 UTC and is due to finish in 60 minutes.  The chair is mnasiadka. Information about MeetBot at http://wiki.debian.org/MeetBot.13:01
opendevmeetUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.13:01
opendevmeetThe meeting name has been set to 'kolla'13:01
mnasiadka#topic rollcall13:01
mnasiadkanow13:01
mnasiadkao/13:01
bbezako/13:01
SvenKieskeo/13:01
darmacho/13:01
r-krceko/13:01
mhinero/13:01
mnasiadka#topic agenda13:02
mnasiadka* Announcements13:02
mnasiadka* CI status13:02
mnasiadka* Release tasks13:02
mnasiadka* Regular stable releases (first meeting in a month)13:02
mnasiadka* Current cycle planning13:02
mnasiadka* Additional agenda (from whiteboard)13:02
mnasiadka* Open discussion13:02
mnasiadka#topic Announcements13:02
mnasiadkanext OpenInfra PTG[1] which will take place October 21-25, 2024 virtually!13:03
mnasiadka[1] PTG Site: https://openinfra.dev/ptg/13:03
mnasiadka[2] PTG Registration: http://ptg.openinfra.dev/13:03
mnasiadka#topic CI status13:03
mnasiadkaSo, Koalas - how is the CI?13:03
mnasiadkaI assume green that nobody is complaining :)13:04
mnasiadka#topic Release tasks13:04
SvenKieskeI personally didn't notice any strange failures, but I didn't look at overall CI status, just the on the reviews I did.13:04
mnasiadkaToday is R-14 week of the Dalmatian (2024.2) cycle - nothing for us13:05
mnasiadka#topic Current cycle planning13:05
mnasiadkaSo, what features do we need to get it - probably Ubuntu Noble (24.04)13:06
mnasiadkadarmach: you're taking that together with some advice from bbezak and me, right?13:06
darmachYes, that's right13:06
bbezakand some tasks from last cycle13:07
bbezaklike OVN BGP agent13:07
jovialI would like to get kayobe podman supported landed sooner rather than later. I added some dependent patches to the meeting agenda. Would it be possible to prioritize these?13:07
mnasiadkaany other features that we can't release without?13:07
kevkoi have older patch for CI and disk preparation for swift -> https://review.opendev.org/c/openstack/kolla-ansible/+/913942 << it's non-voting and probably we used to don't try to resolve ...but from time to time the old version of disk preparation is just not working ... this is working always ...13:08
SvenKieskedo we need to get the rmq/slurp stuff in before?13:09
mnasiadkamattcrees: how is it going with newer rmq releases in antelope and bobcat?13:09
bbezakyeah, this is needs to land in C13:09
SvenKieskeand what happened to the systemd logging stuff? I can't remember any patches in that regard, but I guess it's only "nice to have"?13:10
mnasiadkayeah, rather yes13:10
mnasiadkaI'm focusing on top priority and must have for now ;)13:10
SvenKieskeok13:10
mnasiadkakevko: SvenKieske has -1 on your patch, can you guys resolve it first? ;-)13:11
mattcreesFor rmq it's getting close, I'm looking for reviews for two backport chains right now. https://review.opendev.org/c/openstack/kolla/+/922605 https://review.opendev.org/c/openstack/kolla-ansible/+/92260713:12
mattcreesThen the main patch should be good to go https://review.opendev.org/c/openstack/kolla/+/91897413:12
mnasiadkabbezak: https://review.opendev.org/c/openstack/kolla/+/916617 - can you take RP from that change?13:12
kevkomnasiadka: well, actually ..i am not sure if I can ..because -1 was because of usage   bash_result ; if $? -eq 0 ...... but i am using that on several places in script ...13:13
bbezakdone mnasiadka13:14
SvenKieskekevko: there are six unaddressed comments in that changeset, maybe write something. even if you disagree with all of them, just write that down at least? I certainly won't lift a -1 from a patchset when I see no communication :)13:14
kevkoSvenKieske: ack 13:14
mnasiadkaOk, from Kolla RP+1 patches I see https://review.opendev.org/c/openstack/kolla/+/915440 - bbezak, frickler - should we try to prioritise reviews of that please?13:14
kevkoSvenKieske: i will ..but now working on something better ..but ack 13:14
mnasiadkaoh boy, kolla-ansible RP+1 list is huge13:15
SvenKieskethat last thing goes to all patch authors btw, I often see comments just..ignored? at least write that I'm wrong or whatever :P13:15
SvenKieske;)13:15
kevkoSvenKieske: ack 13:16
SvenKieskeor not just me, I also see that for other comments as well13:16
SvenKieskeI mean that's maybe 1-5% of comments, I guess it happens to everyone :) no big deal, most of the time.13:17
mnasiadkaI would very much like https://review.opendev.org/c/openstack/kolla-ansible/+/913908 to go forward, but I think we've been merging patches to this important functionality without any CI coverage13:19
mnasiadkaShouldn't there be some mock OIDC server code we could use in a CI job?13:19
SvenKieskeI can only support that, but my - albeit short - search didn't reveal anything in that regard, now that I'm thinking about it we _might_ have something in our downstream CI13:20
SvenKieskeand as we also use zuul maybe that could be adapted somehow13:21
mnasiadkaSomething like this https://github.com/appvia/mock-oidc-user-server ?13:21
SvenKieskenah, that's the problem, we deploy keycloak via k3s on the control plane: https://github.com/osism/ansible-collection-services/blob/main/roles/keycloak/tasks/deploy.yml13:23
kevkokeycloak ? 13:23
mnasiadkawell, I don't know if keycloak is small and fast ;)13:23
SvenKieskeso I think there aren't any tests we can leverage inside kolla from our side, at least not if you don't want to deploy k3s ;)13:23
SvenKieskethat mock server has no commits since 3 years ago :-/13:24
mnasiadkamaybe it's feature complete ;)13:24
SvenKieskecould be :)13:24
mnasiadkaanyway, if there's a volunteer that wants to have a look into that - I'm happy to help :)13:24
SvenKieskethat's 4 month old: https://github.com/oauth2-proxy/mockoidc13:25
SvenKieskebut only a go package :(13:25
kevkohmm, if we have proxies and caches and registries in opendev/zuul ...can we have also some permanent deployment of keycloak ? 13:26
SvenKieskeif I ever finish wrangling with ovn-exporter libs I can take a look, but that will be probably not this summer, as vacation time draws near13:26
SvenKieskeat least it's basically greenfield testing, so I don't need to fit it in with existing other tests I guess..but if anybody has more time, don't wait for me13:27
mnasiadkaok, let's move on13:28
opendevreviewMatúš Jenča proposed openstack/kolla-ansible master: Add support for RabbitMQ internode tls  https://review.opendev.org/c/openstack/kolla-ansible/+/92138113:29
SvenKieskeback to the original topic: I still think we should accept bugfixes for not tested code, it naturally will have the most need for bugfixes ;)13:29
mnasiadkawell, I'm just worried the bugfix for some people will cause issues for other people :)13:29
mnasiadkaso we'll need another bugfix13:29
fricklerbut that how community support works, isn't it?13:30
frickler+'s13:30
mnasiadkain theory yes ;)13:30
kevkoyeah, and it's master ... bugs expected ..13:30
mnasiadkawell, then we backport the fix :)13:31
kevkoexactly 13:31
mnasiadkaanyway - if there are cores more knowledgeable in haproxy area - https://review.opendev.org/c/openstack/kolla-ansible/+/91390813:31
mnasiadkabut I have no clue how haproxy would even start with bad configuration right now :)13:31
SvenKieskeI _think_ it rejects bad config, but I can test that part I guess.13:32
mnasiadka#topic Additional agenda (from whiteboard)13:32
mnasiadka(SvenKieske: please review patch for broken keystone federation backend https://bugs.launchpad.net/kolla-ansible/+bug/205865613:32
mnasiadkatrivial patch at https://review.opendev.org/c/openstack/kolla-ansible/+/913908 needs Cores <--still needs input13:32
mnasiadkahttps://review.opendev.org/c/openstack/kolla-ansible/+/921381/comment/56b11f74_f98925e8/ (rmq startuptime high, reason found, please share your opinion)13:32
mnasiadkaok, so the patch has been discussed13:32
mnasiadkaI think the rmq startuptime with inter node TLS has also been discussed13:33
mnasiadkaright SvenKieske ?13:33
kevkoi will check 13:33
SvenKieskeyes13:34
SvenKieskesorry, I need to clean that up on the whiteboard :)13:34
bbezakvery trivial for second core - https://review.opendev.org/c/openstack/kolla/+/92259313:34
bbezakpls13:34
SvenKieskebbezak: mhm, why not backport that docs change? if people read old docs they end up at the wrong bugtracker?13:35
SvenKieskeand google most of the time spits out old doc links :(13:36
mnasiadkabbezak: why is that not gating? :D13:36
mnasiadkaoh, it started now13:36
mnasiadkaphew13:36
bbezak:)13:37
mnasiadka(r-krcek): [26th June] anything more needed? https://review.opendev.org/c/openstack/kolla-ansible/+/91499713:37
SvenKiesketime for the review I guess, it's a large patch ;)13:38
r-krcekOk, thanks for the info. 13:38
mnasiadkaI replied - the patch is LGTM, but we need the improvement numbers in the commit message13:38
SvenKieskeyes, it would actually be a shame to sweep the rather good analysis under the rug of a gerrit comment :)13:39
mnasiadka(jovial): [26th June] Podman support patches (please review)13:39
mnasiadkahttps://review.opendev.org/c/openstack/kolla-ansible/+/91001613:39
mnasiadkahttps://review.opendev.org/c/openstack/kolla-ansible/+/91050113:39
mnasiadkaCould I possibly get an RP+1. Hoping to land these soon, so podman support can be added to Kayobe.13:39
mnasiadkaI reviewed the first one13:40
mnasiadkathe second one seems needs some reno love and resolving the comment ;)13:40
mnasiadkajovial: can you have a look?13:40
mnasiadkanext one13:41
jovialYeah, have just seen that comment from Sven. Seems reasonable, I will update the patch.13:41
mnasiadka(jovial): [26th June] Additional node exporter targets (please review)13:41
mnasiadkahttps://review.opendev.org/c/openstack/kolla-ansible/+/91597513:41
mnasiadkaand jovial - please resolve the comments when you adapt code to fix them :)13:42
mnasiadkareviewed13:42
mnasiadkaneeds second core outside of SHPC13:42
mnasiadkalast one13:43
mnasiadka(mhiner): Please review: https://review.opendev.org/c/openstack/kolla-ansible/+/83694113:43
jovialThanks - good point. I was never sure if I should be resolving the comments or if the person who made the comment should resolve them if they are happy with the change13:43
mnasiadkalet's assume they will reply on your resolution if they are not fine13:43
mnasiadka:)13:43
mnasiadkamhiner: can you make zuul happy before I start reviewing? :)13:43
mnasiadka#topic Open discussion13:44
mnasiadkaTime for everything else13:44
SvenKieskeyes, I usually reply on every reply I get. you can ping me here if I did miss something. Sometimes it just takes 1-3 days, due to the amount of reviews.13:44
opendevreviewMartin Hiner proposed openstack/kolla-ansible master: Add container engine migration scenario  https://review.opendev.org/c/openstack/kolla-ansible/+/83694113:46
mnasiadkaAnybody anything?13:46
SvenKieskenope :)13:47
mnasiadkathen let's finish :)13:47
mnasiadkaThanks for coming13:47
mnasiadka#endmeeting13:47
opendevmeetMeeting ended Wed Jun 26 13:47:48 2024 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)13:47
opendevmeetMinutes:        https://meetings.opendev.org/meetings/kolla/2024/kolla.2024-06-26-13.01.html13:47
opendevmeetMinutes (text): https://meetings.opendev.org/meetings/kolla/2024/kolla.2024-06-26-13.01.txt13:47
opendevmeetLog:            https://meetings.opendev.org/meetings/kolla/2024/kolla.2024-06-26-13.01.log.html13:47
kevkoi just read SvenKieske comment here 13:48
kevkohttps://review.opendev.org/c/openstack/oslo.messaging/+/92260913:48
kevkojust wanted to point that this is nice example why we should have patch feature for kolla :) 13:48
kevkooh, i forgot ...did anyone notice that openstack-base is built every time ? even if i have it built already ? i mean ..why cache is not used ? 13:49
kevko(without dockerfile changes ..without cwd changes )13:50
opendevreviewRafael Weingartner proposed openstack/kolla-ansible master: Customize the authentication error timeout page in modOIDC  https://review.opendev.org/c/openstack/kolla-ansible/+/83280613:51
opendevreviewMatúš Jenča proposed openstack/kolla-ansible master: Add support for RabbitMQ internode tls  https://review.opendev.org/c/openstack/kolla-ansible/+/92138113:51
SvenKieskekevko: yeah I really didn't get that -1; I mean I personally don't need zed, but still, what's the point if there is a volunteered patch?13:51
kevkoSvenKieske: that just means ..sorry we are not going to do anything with unmaintained/* branches 13:51
mnasiadkaIf a person doesn't want to maintain the unmaintained (TM) branch - he should just ignore that Gerrit review ;-)13:51
mnasiadkabut another thing is - they are not going to release a new tag13:52
kevkoSvenKieske: point is that unmaintained changes can be approved from unmaintainedcore group in gerrit ...and for example noone from oslo team is inside ... :D 13:52
kevkomnasiadka: yeah, new tag which basically means new pip package will not be released anymore for unmaintained branches ...13:53
kevkobecause of new policy13:53
mnasiadkawell, upgrade to antelope ;-)13:53
kevkomnasiadka: haha :D ... dear customer, we've found critical bug in oslo.messaging but we can't fix it in zed ...we need to upgrade all 150 servers to the antelope 13:54
kevkomnasiadka: even if it is two lines :D 13:55
kevkoinstead of ...dear customer, we fixed bug and we are prepared to reconfigure your zed platform with fixed images 13:55
mnasiadkawell, dear customer - you're using unmaintained version of OpenStack - just plan the damn upgrade13:56
kevkoit's planned in october ...and there are another processes to be done before action will start ...what to do until october ? 13:57
mnasiadkain october they should be on C ;-)14:03
opendevreviewPierre Riteau proposed openstack/kayobe master: Allow operators to customise selinux_reboot_timeout  https://review.opendev.org/c/openstack/kayobe/+/92282614:04
opendevreviewPierre Riteau proposed openstack/kayobe master: Support customising selinux_reboot_timeout  https://review.opendev.org/c/openstack/kayobe/+/92282614:06
opendevreviewPierre Riteau proposed openstack/kayobe master: Support customising selinux_reboot_timeout  https://review.opendev.org/c/openstack/kayobe/+/92282614:08
kevkomnasiadka: A is slurp ..so we will upgrade to C at the end of the year and then upgrade will be more easy because of slurp 14:22
kevkoit's corporate ...you know ..processes 14:22
SvenKieskedon14:23
SvenKieske't we all love corporate upgrade cycles?14:23
opendevreviewIvan Halomi proposed openstack/kolla-ansible master: Refactor of docker worker  https://review.opendev.org/c/openstack/kolla-ansible/+/90829514:25
opendevreviewIvan Halomi proposed openstack/kolla-ansible master: Documentation update: Enhanced explanation of volume handling with podman  https://review.opendev.org/c/openstack/kolla-ansible/+/92271714:30
kevkoSvenKieske: yep :D 14:38
kevkooh, i forgot ...did anyone notice that openstack-base is built every time ? even if i have it built already ? i mean ..why cache is not used ?14:48
kevko(cwd not changed )14:49
opendevreviewMerged openstack/kolla stable/2023.2: Move apt_prefs pins to respective images  https://review.opendev.org/c/openstack/kolla/+/92260514:51
opendevreviewMerged openstack/kolla master: add kayobe to release management doc's Launchpad admin section  https://review.opendev.org/c/openstack/kolla/+/92259314:51
SvenKieskeI did comment on https://review.opendev.org/c/openstack/kolla-ansible/+/920368 again. I think we should discuss someday if it's a real requirement for kolla(-ansible) to not break kayobe. If it is we should add kayobe tests into kolla CI because I will never know if any patch break kayobe.15:03
jovialSvenKieske, Agree with your point around adding a Kayobe job. Really we are just users of the documented interface i.e post-deploy.yml, so It wouldn't just be use you'd be breaking. Generally I think that change looks nice, but does seem like we should keep current behaviour of post-deploy.yml.15:33
jovialJust thinking I should probably have replied in the thread. Will also post the comment there.15:35
kevkojovial: thank you 15:39
opendevreviewSven Kieske proposed openstack/kolla-ansible master: add a config validation precheck for haproxy  https://review.opendev.org/c/openstack/kolla-ansible/+/92284015:41
opendevreviewSven Kieske proposed openstack/kolla-ansible master: add a config validation precheck for haproxy  https://review.opendev.org/c/openstack/kolla-ansible/+/92284015:44
SvenKieskeso, now we have hopefully at least some minimal detection if we break haproxy config :)15:44
opendevreviewSven Kieske proposed openstack/kolla stable/2024.1: add kayobe to release management doc's Launchpad admin section  https://review.opendev.org/c/openstack/kolla/+/92284415:56
mnasiadkakevko: I know too many corporate processes16:31
kevkomnasiadka: i just have a feeling that your are argumenting against me ..i don't know why :D 16:33
kevkoregarding that feature about patching the code 16:33
mnasiadkakevko: naah, just saying that in most cases people that need patching that code are the ones staying on exotic retro openstack releases - but I'm certain we'll merge it one day ;)16:33
kevkomnasiadka: did you notice that example i've gave is about critical oslo.messaging bugfix which is in all releases ? including caracal ? :D 16:35
kevkomnasiadka: https://review.opendev.org/c/openstack/oslo.messaging/+/92260116:35
mnasiadkawell, the wording unmaintained is for a reason16:35
kevkomnasiadka: it's merged already...so downstream user can be sure that it is approved by an upstream community ..but you know how it is with pip release ...it will take another days/weeks to land pypi :D 16:36
mnasiadkait depends when somebody will tag a release16:36
kevkomnasiadka: unmaintained users never get oslo.messaging update ... because unmaintained ..other users can fix their images until new oslo.messaging pypi release will be available 16:37
mnasiadkaI would actually start thinking about using stable branches for those critical libraries like oslo16:37
kevkothey can just be proactive 16:37
kevkomnasiadka: i was thinking about this also ! 16:37
mnasiadkabecause that's basically OpenStack deliverable, so we should treat it the same way as Nova and Neutron code16:37
kevkomnasiadka: well, from my perspective it would be the best ...but on the other side ...you want to copy devstack setup ... and they are also using pip + stable services (if i am correct)16:38
kevkomnasiadka: i tried this in a past ... you of course need to remove entry in u-c 16:39
kevkomnasiadka: more packages ..more removal .. can be fatal for depency resolve ...16:40
kevkomnasiadka: for example in debian packaging you have version 3.0.0  and 3.0.0-1 and 3.0.0-1+bpo1 for example ... compare versioning works fine ... if i remember ... pbr has broken generating version and don't support +version16:41
kevkolike ..i was trying several ways ... patch feature is the simplest one and very handy for several releases ...for me ..16:42
opendevreviewRafael Weingartner proposed openstack/kolla-ansible master: Customize the authentication error timeout page in modOIDC  https://review.opendev.org/c/openstack/kolla-ansible/+/83280616:51
opendevreviewSylvère Kanapa proposed openstack/kayobe master: Add missing "cloud-init" as "cloud-init-datasource" don't have dependency on it.  https://review.opendev.org/c/openstack/kayobe/+/92279516:52
opendevreviewSylvère Kanapa proposed openstack/kayobe master: Add missing "cloud-init" as "cloud-init-datasource" don't have dependency on it.  https://review.opendev.org/c/openstack/kayobe/+/92279516:53
opendevreviewSylvère Kanapa proposed openstack/kayobe master: Add missing "cloud-init" as "cloud-init-datasource" doesn't have dependency on it.  https://review.opendev.org/c/openstack/kayobe/+/92279516:58
sylvrsorry for the spam, made some mistakes but learnt some lessons ^^17:10
mnasiadkano worries sylvr 17:13
opendevreviewMerged openstack/kolla-ansible master: Support mode in named volumes when using podman  https://review.opendev.org/c/openstack/kolla-ansible/+/91001617:37
opendevreviewPierre Riteau proposed openstack/kolla-ansible master: Adds option to add extra scrape targets for node exporter  https://review.opendev.org/c/openstack/kolla-ansible/+/91597517:43
opendevreviewPierre Riteau proposed openstack/kolla-ansible master: Adds option to add extra scrape targets for node exporter  https://review.opendev.org/c/openstack/kolla-ansible/+/91597517:44
opendevreviewMerged openstack/kolla-ansible master: Fix the docker container dimensions comparison for short notation  https://review.opendev.org/c/openstack/kolla-ansible/+/88650019:00
opendevreviewMerged openstack/kolla-ansible master: Masakari: Fix incorrect reference to dictionary key.  https://review.opendev.org/c/openstack/kolla-ansible/+/91576019:03
opendevreviewPierre Riteau proposed openstack/kolla-ansible master: heat: set backups_enabled based on cinder-backup  https://review.opendev.org/c/openstack/kolla-ansible/+/91845520:21
opendevreviewMerged openstack/kolla-ansible master: Adds option to add extra scrape targets for node exporter  https://review.opendev.org/c/openstack/kolla-ansible/+/91597521:05
opendevreviewMichal Arbet proposed openstack/kolla master: Add rally images for testing  https://review.opendev.org/c/openstack/kolla/+/92289221:59

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