| Posted | Nick | Remark | |
|---|---|---|---|
| #openstack-nova - 2021-12-22 | |||
| 17:20:14 | opendevreview | Stephen Finucane proposed openstack/nova master: Move optional build dependencies to 'extras' https://review.opendev.org/c/openstack/nova/+/822749 | |
| 17:20:14 | opendevreview | Stephen Finucane proposed openstack/nova master: Remove Python 2-specific imports https://review.opendev.org/c/openstack/nova/+/822748 | |
| 17:20:15 | opendevreview | Stephen Finucane proposed openstack/nova master: tox: Install extras https://review.opendev.org/c/openstack/nova/+/822750 | |
| #openstack-nova - 2021-12-23 | |||
| 11:08:27 | opendevreview | Stephen Finucane proposed openstack/nova master: Move optional build dependencies to 'extras' https://review.opendev.org/c/openstack/nova/+/822749 | |
| 11:08:28 | opendevreview | Stephen Finucane proposed openstack/nova master: requirements: Bump minimum testtools to 2.5.0 https://review.opendev.org/c/openstack/nova/+/822820 | |
| 11:08:28 | opendevreview | Stephen Finucane proposed openstack/nova master: tox: Install extras https://review.opendev.org/c/openstack/nova/+/822750 | |
| 13:57:45 | opendevreview | Alexey Stupnikov proposed openstack/nova stable/ussuri: Ensure MAC addresses characters are in the same case https://review.opendev.org/c/openstack/nova/+/817689 | |
| 14:02:11 | opendevreview | Alexey Stupnikov proposed openstack/nova stable/victoria: Ensure MAC addresses characters are in the same case https://review.opendev.org/c/openstack/nova/+/816927 | |
| 14:03:04 | opendevreview | Alexey Stupnikov proposed openstack/nova stable/victoria: Ensure MAC addresses characters are in the same case https://review.opendev.org/c/openstack/nova/+/816927 | |
| 14:04:56 | opendevreview | Alexey Stupnikov proposed openstack/nova stable/ussuri: Ensure MAC addresses characters are in the same case https://review.opendev.org/c/openstack/nova/+/817689 | |
| 14:06:00 | opendevreview | Alexey Stupnikov proposed openstack/nova stable/train: Ensure MAC addresses characters are in the same case https://review.opendev.org/c/openstack/nova/+/817830 | |
| #openstack-nova - 2021-12-24 | |||
| 11:29:01 | pas-ha[m] | :w | |
| #openstack-nova - 2021-12-25 | |||
| 10:11:06 | opendevreview | Takashi Natsume proposed openstack/placement master: Change minversion of tox to 3.18.0 https://review.opendev.org/c/openstack/placement/+/791971 | |
| #openstack-nova - 2021-12-27 | |||
| 16:33:15 | sean-k-mooney | on one hand my plan to dual boot while i tried out a new os resulted in my old os not booting fully anymore | |
| 16:34:00 | sean-k-mooney | on the other hand i think i have got nixos to the point where i can use it for work so i guess the switch will be more rapid then i planned | |
| #openstack-nova - 2021-12-29 | |||
| 15:02:26 | Zer0Byte | hey guys | |
| 15:02:28 | Zer0Byte | question | |
| 15:02:36 | Zer0Byte | how i can force a node to update placement information | |
| 15:02:53 | Zer0Byte | i had a issue where placement was pointed to another placement on another region | |
| 15:02:57 | Zer0Byte | now i update the configuration | |
| 15:03:06 | Zer0Byte | but whe i do openstack resource provider usage show | |
| 15:03:15 | Zer0Byte | still show vcpus memory and disk in 0 gb | |
| 15:13:36 | frickler | Zer0Byte: not everyone here may want to be addresses as "guys". but also https://docs.openstack.org/nova/latest/cli/nova-manage.html#placement-heal-allocations may be what you are looking for | |
| 17:00:40 | Zer0Byte | you mean for the gender frickler ? | |
| 17:17:43 | Zer0Byte | another question placement usage should match with hypervisor usage show? | |
| 17:18:01 | Zer0Byte | i got different values from placement that hypervisor vcpu used counts and memory | |
| 17:18:24 | Zer0Byte | after run the heal_allocations | |
| #openstack-nova - 2021-12-30 | |||
| 11:45:49 | opendevreview | Iago Filipe proposed openstack/nova master: Adding unversioned notification publish mechanism https://review.opendev.org/c/openstack/nova/+/823200 | |
| 12:47:56 | noonedeadpunk | frickler: oh, btw, is `folks` gender neutral? As according to google translate seems that yes, but not sure... | |
| 12:49:52 | noonedeadpunk | also question - what to do if you've catched `nova.exception.TooOldComputeService`? Yes, I know that upgrades through version are not supported and thus this should not happen if everything is done correctly. | |
| 12:51:05 | noonedeadpunk | But, if this has happened, and conductor being restarted, it goes to crash loop with TooOldComputeService. And even when you upgrade all computes - it doesn't return back, as computes needs conductor to report their new version, that can't spawn because computes are still "old" for it | |
| 12:51:59 | noonedeadpunk | so it feels like you require to manually bump version in cell1 but that is.... frustrating a bit I guess... | |
| 12:52:22 | noonedeadpunk | or I don't see how this could be healed, as it looks like chicken/egg to me | |
| 13:12:07 | noonedeadpunk | So the best I could find is to `update nova.services set version = 57;` .... | |
| 13:18:25 | frickler | noonedeadpunk: IIUC "folks" is neutral, yes. no idea about your exception, might be a bug not to be able to clear that | |
| 13:22:58 | noonedeadpunk | nah, it was more that I tried to do V -> X upgrade and then fix the result :D | |
| 13:24:35 | noonedeadpunk | So if conductor/scheduler being upgraded before computes, they just fail to startup with TooOldComputeService, as at the moment of start compute is indeed old. But when compute is being upgraded, it jsut has no way to report it's new state as everything crashed | |
| 13:25:59 | noonedeadpunk | Probably I should have run nova-status upgrade check before restart.... | |
| 13:28:51 | noonedeadpunk | but still I'm not sure if not having way to recover except db update is fine... | |
| 13:29:47 | noonedeadpunk | I wonder if compute should be just upgraded first... | |
| 13:57:22 | opendevreview | Gabriel Silva Trevisan proposed openstack/nova stable/ussuri: Reproduce bug 1953359 https://review.opendev.org/c/openstack/nova/+/822047 | |
| 13:57:23 | opendevreview | Gabriel Silva Trevisan proposed openstack/nova stable/ussuri: Extend the reproducer for 1953359 and 1952915 https://review.opendev.org/c/openstack/nova/+/822048 | |
| 13:57:24 | opendevreview | Gabriel Silva Trevisan proposed openstack/nova stable/ussuri: [rt] Apply migration context for incoming migrations https://review.opendev.org/c/openstack/nova/+/822050 | |
| #openstack-nova - 2022-01-01 | |||
| 13:09:20 | opendevreview | Takashi Natsume proposed openstack/nova master: trivial: Add a white space in an error message. https://review.opendev.org/c/openstack/nova/+/823223 | |
| 13:16:03 | opendevreview | Takashi Natsume proposed openstack/nova master: trivial: Add a white space in an error message https://review.opendev.org/c/openstack/nova/+/823223 | |
| #openstack-nova - 2022-01-02 | |||
| 02:46:15 | opendevreview | Hemanth N proposed openstack/nova master: clear dhcp_server in network_info when dhcp is disabled https://review.opendev.org/c/openstack/nova/+/819069 | |
| 12:23:33 | opendevreview | Takashi Kajinami proposed openstack/nova master: Sync rootwrap.conf from oslo.rootwrap https://review.opendev.org/c/openstack/nova/+/823229 | |
| 12:34:14 | opendevreview | Takashi Kajinami proposed openstack/nova master: WIP: Bump oslo.rootwrap https://review.opendev.org/c/openstack/nova/+/823237 | |
| #openstack-nova - 2022-01-03 | |||
| 00:18:02 | opendevreview | Takashi Kajinami proposed openstack/nova master: Sync rootwrap.conf from oslo.rootwrap https://review.opendev.org/c/openstack/nova/+/823229 | |
| 00:18:04 | opendevreview | Takashi Kajinami proposed openstack/nova master: WIP: Bump oslo.rootwrap https://review.opendev.org/c/openstack/nova/+/823237 | |
| 05:13:23 | opendevreview | Takashi Kajinami proposed openstack/nova master: Remove workaround for old python-ironicclient https://review.opendev.org/c/openstack/nova/+/823247 | |
| 05:15:35 | opendevreview | Takashi Kajinami proposed openstack/nova master: Remove workaround for old python-ironicclient https://review.opendev.org/c/openstack/nova/+/823247 | |
| 07:51:12 | bauzas | good morning everyone and happy New Year | |
| 07:55:50 | sean-k-mooney[m] | o/ | |
| 07:56:16 | sean-k-mooney[m] | happy new year to you too | |
| 11:26:37 | opendevreview | yuval proposed openstack/nova master: Lightbits LightOS driver https://review.opendev.org/c/openstack/nova/+/821606 | |
| #openstack-nova - 2022-01-04 | |||
| 09:28:40 | lyarwood | \o morning all | |
| 10:06:52 | bauzas | lyarwood: morning and happy new year | |
| 10:07:44 | lyarwood | bauzas: and to you, hope you had a great break | |
| 10:07:56 | lyarwood | no pun intended stephenfin ;) | |
| 10:12:44 | bauzas | lyarwood: LOL about the break trhing | |
| 10:13:17 | bauzas | well, my children got good skiing medals so I'm very happy | |
| 10:18:03 | lyarwood | awesome :) | |
| 10:18:47 | Uggla_ | lyarwood: happy new year. | |
| 10:21:41 | lyarwood | Uggla_: and to you \o | |
| 13:03:40 | elodilles | hi & happy new year! \o/ | |
| 13:03:48 | sean-k-mooney | o/ | |
| 13:04:17 | elodilles | fyi, i'll skip today's meeting as I'll travel around that time | |
| 13:49:50 | opendevreview | Lee Yarwood proposed openstack/nova-specs master: libvirt: Allow Manila shares to be directly attached to instances https://review.opendev.org/c/openstack/nova-specs/+/813180 | |
| 13:54:13 | bauzas | elodilles: oh, dang, thanks for the reminder, have to prepare our meeting | |
| 14:49:39 | opendevreview | Gabriel Silva Trevisan proposed openstack/nova stable/victoria: Reproduce bug 1953359 https://review.opendev.org/c/openstack/nova/+/820558 | |
| 14:49:40 | opendevreview | Gabriel Silva Trevisan proposed openstack/nova stable/victoria: Extend the reproducer for 1953359 and 1952915 https://review.opendev.org/c/openstack/nova/+/820856 | |
| 14:49:41 | opendevreview | Gabriel Silva Trevisan proposed openstack/nova stable/victoria: [rt] Apply migration context for incoming migrations https://review.opendev.org/c/openstack/nova/+/820559 | |
| 15:00:54 | bauzas | reminder: first nova meeting of 2022 happening in our hour here at #openstack-nova :) | |
| 15:57:00 | bauzas | last reminder : nova meeting in 4 mins here | |
| 16:00:27 | opendevmeet | The meeting name has been set to 'nova' | |
| 16:00:27 | opendevmeet | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | |
| 16:00:27 | opendevmeet | Meeting started Tue Jan 4 16:00:27 2022 UTC and is due to finish in 60 minutes. The chair is bauzas. Information about MeetBot at http://wiki.debian.org/MeetBot. | |
| 16:00:27 | bauzas | #startmeeting nova | |
| 16:01:37 | bauzas | #link https://wiki.openstack.org/wiki/Meetings/Nova#Agenda_for_next_meeting | |
| 16:01:45 | ganso | o/ | |
| 16:01:47 | bauzas | hi everyone and happy New Year | |
| 16:02:00 | gmann | o/ | |
| 16:02:04 | artom | ~o~ | |
| 16:02:04 | gmann | happy new year | |
| 16:02:12 | lyarwood | \o | |
| 16:02:25 | bauzas | ok let's start | |
| 16:02:28 | bauzas | #topic Bugs (stuck/critical) | |
| 16:02:34 | bauzas | #info No Critical bug | |
| 16:02:39 | bauzas | #link https://bugs.launchpad.net/nova/+bugs?search=Search&field.status=New 33 new untriaged bugs (+9 since the last meeting) | |
| 16:02:43 | bauzas | #help Nova bug triage help is appreciated https://wiki.openstack.org/wiki/Nova/BugTriage | |
| 16:02:57 | bauzas | yeah, looks like some new bugs appeared when I was off :) | |
| 16:03:53 | bauzas | looking at some, it seems they can be closed | |
| 16:04:21 | bauzas | but I'll do my homework tomorrow | |
| 16:04:30 | bauzas | #link https://storyboard.openstack.org/#!/project/openstack/placement 25 open stories (+0 since the last meeting) in Storyboard for Placement | |
| 16:04:40 | bauzas | nothing to say about placement, it's winter then | |
| 16:04:42 | bauzas | there* | |
| 16:05:07 | bauzas | any bug to raise in particular, except gate issues ? | |
| 16:06:15 | bauzas | looks not, moving on | |
| 16:06:19 | bauzas | #topic Gate status | |