opendevreview | Amit Uniyal proposed openstack/nova master: Delete dangling bdms https://review.opendev.org/c/openstack/nova/+/882284 | 06:27 |
---|---|---|
opendevreview | Merged openstack/nova stable/yoga: Fix get_segments_id with subnets without segment_id https://review.opendev.org/c/openstack/nova/+/883724 | 10:57 |
sean-k-mooney | dvo-plv: you could just add your check to _validate_flavor_image_numa_pci although that is strictly not what that is for but its called form _validate_flavor_image_nostatus | 11:41 |
sean-k-mooney | so if you add it to _validate_flavor_image_numa_pci it will be called everywhere it shoudl be | 11:41 |
sean-k-mooney | i actullly think that current if/else for BFV instance might be a bug | 11:41 |
sean-k-mooney | but that is unrealted to yoru change | 11:42 |
dvo-plv | I thought do it in the next way for resize https://paste.opendev.org/show/bUEZJuI6huYrnmAVSGsZ/ | 11:43 |
dvo-plv | and this for rebuild https://paste.opendev.org/show/b5zFmXnXpVE4iNezPiSi/ | 11:43 |
sean-k-mooney | i would kind of like to avoid adding the call in multiple places to make sure we dont miss a palce | 11:44 |
sean-k-mooney | what you suggest will work | 11:45 |
sean-k-mooney | we just need to allso ensure its called on server create | 11:45 |
dvo-plv | sure | 11:45 |
sean-k-mooney | so there are tree cases we need to check (create, resize and rebuild) | 11:45 |
sean-k-mooney | maybe rebuild | 11:46 |
sean-k-mooney | sorry maybe rescue | 11:46 |
sean-k-mooney | for rescue im conflcited | 11:46 |
sean-k-mooney | the rescue image is tempory so normally i would say just never set this for the rescue image | 11:46 |
sean-k-mooney | so we should not need to check it | 11:47 |
sean-k-mooney | ill leave it up to you if you want to add the 3 checks then that is ok | 11:47 |
sean-k-mooney | just add them in similar location to the existing _validate_flavor_image_nostatus checks | 11:48 |
dvo-plv | looks like we will not have ability to do this without additional changes | 11:52 |
dvo-plv | self._validate_flavor_image_nostatus(context, image, new_flavor, root_bdm=None,validate_pci=True) this method get not full image parameter | 11:53 |
dvo-plv | it pass only metadata https://github.com/openstack/nova/blob/master/nova/compute/api.py#L4254 | 11:54 |
dvo-plv | (Pdb) image | 11:54 |
dvo-plv | {'min_ram': '0', 'min_disk': '1', 'disk_format': 'raw', 'container_format': 'raw', 'properties': {'kernel_id': 'nokernel', 'ramdisk_id': 'nokernel', 'hw_virtio_packed_ring': 'true', 'base_image_ref': 'c456eb30-91d7-4f43-8f46-2efd9eccd744', 'boot_roles': 'reader,member,admin'}} | 11:54 |
sean-k-mooney | ack you actully only need the metadata not the full image | 11:55 |
sean-k-mooney | for yoru hardware.py funciton | 11:55 |
dvo-plv | but we need full object https://review.opendev.org/c/openstack/nova/+/876075/14/nova/virt/hardware.py#1941 | 11:55 |
sean-k-mooney | oh you mean it gets a dict not the object? | 11:56 |
dvo-plv | because exception needs next field | 11:56 |
dvo-plv | https://review.opendev.org/c/openstack/nova/+/876075/14/nova/virt/hardware.py#1977 | 11:56 |
sean-k-mooney | we dont neeed the iamge name error masge | 11:56 |
dvo-plv | yes, I need object + this object have to have name field | 11:56 |
sean-k-mooney | ya but we dont need the name filed | 11:56 |
sean-k-mooney | use the uuid c456eb30-91d7-4f43-8f46-2efd9eccd744 from base_image_ref if you want | 11:57 |
dvo-plv | okay I can use uuid | 11:58 |
sean-k-mooney | but you do not need the flavor or iamge name for the message | 11:58 |
sean-k-mooney | really you just need to say "Flavor has ... image has ...." | 11:58 |
sean-k-mooney | the user knows what flavor and image they use | 11:59 |
dvo-plv | Yes, I will rewrite log, because id also does not exists in some cases (Pdb) image_meta | 12:02 |
dvo-plv | ImageMeta(checksum=<?>,container_format='raw',created_at=<?>,direct_url=<?>,disk_format='raw',id=<?>,min_disk=1,min_ram=0,name=<?>,owner=<?>,properties=ImageMetaProps,protected=<?>,size=<?>,status=<?>,tags=<?>,updated_at=<?>,virtual_size=<?>,visibility=<?>) | 12:02 |
sean-k-mooney | ack | 12:02 |
dvo-plv | sean-k-mooney, I would like to clarify how properly I need to fix next unit test, which start to fall after adding those functional | 12:28 |
dvo-plv | https://github.com/openstack/nova/blob/master/nova/tests/unit/compute/test_compute.py#L14213 | 12:28 |
dvo-plv | /opt/stack/nova/nova/compute/api.py(758)_validate_flavor_image_nostatus() | 12:28 |
dvo-plv | -> image_meta = objects.ImageMeta.from_dict(image) | 12:28 |
dvo-plv | (Pdb) image | 12:28 |
dvo-plv | {'id': 'fbb69a20-3717-439e-88ec-7954e6f801af', 'status': 'active', 'properties': {'hw_cpu_policy': 'bar'}} | 12:28 |
dvo-plv | (Pdb) cont | 12:28 |
dvo-plv | it fails which is expected, according to this verification | 12:28 |
dvo-plv | https://github.com/openstack/nova/blob/master/nova/objects/image_meta.py#L234 | 12:29 |
sean-k-mooney | it shoudl not fail by adding your fucntion | 12:30 |
sean-k-mooney | did you change the object passed to _validate_flavor_image_nostatus | 12:30 |
sean-k-mooney | i was tryign to steer you away form that since i expecte that to cause a lot of unit/funcitonal test filaures | 12:31 |
dvo-plv | https://paste.opendev.org/show/b84ihg1M7WPIpDTSVyXc/ | 12:31 |
dvo-plv | no I just make object from dict for verification | 12:31 |
sean-k-mooney | yes but that will have the same effect | 12:32 |
sean-k-mooney | it will cause the image proeprty validation to be enfroced | 12:32 |
sean-k-mooney | i understand why you wourl prefer to use the object | 12:33 |
sean-k-mooney | but it might be simpler to make get_packed_virtqueue_constraint use the dict | 12:33 |
dvo-plv | Okay, I will try to use dict instead, I believe that vit will be better if verification method will be similar to the other, which check conflcits | 12:35 |
sean-k-mooney | yep the other way to work aroudn this | 12:38 |
sean-k-mooney | is to make the convertion internal to get_packed_virtqueue_constraint and make it conditional | 12:39 |
sean-k-mooney | so that you can pass a dict of object | 12:39 |
sean-k-mooney | and then in the relvent tests that fial just mock out get_packed_virtqueue_constraint to return true | 12:39 |
sean-k-mooney | im just not sure how many tests you will have to fix if you take that approch | 12:40 |
opendevreview | Merged openstack/nova stable/xena: Fix segment-aware scheduling permissions error https://review.opendev.org/c/openstack/nova/+/884808 | 12:56 |
ykarel | gibi, sean-k-mooney bauzas can you please revisit https://review.opendev.org/c/openstack/nova/+/868419 | 12:56 |
sean-k-mooney | sure i have a meeting at the top of the hour but ill look quickly | 12:56 |
bauzas | ykarel: ack, will look | 12:57 |
ykarel | Thanks | 12:57 |
sean-k-mooney | ack so you move this to the libvirt section from workarounds | 12:57 |
ykarel | yes | 12:57 |
sean-k-mooney | that was the only outstding issue as far as i was concerned | 12:58 |
sean-k-mooney | so i think this is good as is now | 12:58 |
sahid | o/ quick question guys, we are trying to use nova-manage db archive_deleted_rows but for some reason we dont't see anything migrated in the shadow tables even if the output is reporting something | 13:04 |
sahid | more of that when we list instances with deleted_at not null we can still see them | 13:05 |
sahid | and the final strp of crazy is that, when re-executing the script it sees nothing else to archive... | 13:06 |
sahid | i was thinking about something related to the cells... | 13:06 |
sahid | list_cells only report cell0 so I guess we are good | 13:08 |
sahid | one point that i don't understand, we have nova and nova_cell0 databases | 13:10 |
sahid | in nova we have a certain number of instances deleted | 13:10 |
sahid | in nova_cell0 we have nothing | 13:11 |
opendevreview | Merged openstack/nova stable/xena: Fix get_segments_id with subnets without segment_id https://review.opendev.org/c/openstack/nova/+/883725 | 13:14 |
dvo-plv | looks like we did it :) | 13:22 |
dvo-plv | py38: commands succeeded | 13:22 |
dvo-plv | congratulations :) | 13:22 |
bauzas | sahid: tbc, there is no longer a 'nova' DB, there is either a nova API DB or a nova cell DB | 13:33 |
bauzas | in devstack, we name them nova_api and nova_cell1 | 13:33 |
bauzas | + there is a specific nova_cell0 DB which is exactly like nova_cell1 but where only have NoValidHosts instances | 13:34 |
opendevreview | Danylo Vodopianov proposed openstack/nova master: Packed virtqueue support was added. https://review.opendev.org/c/openstack/nova/+/876075 | 13:46 |
sean-k-mooney | dvo-plv: cool ill take a look shortly | 14:08 |
sean-k-mooney | dvo-plv: fyi the funtional tests are not run as part of the py38 target | 14:11 |
sean-k-mooney | you need to run tox -e functional | 14:11 |
sean-k-mooney | optionally wiht -py38 at the end | 14:11 |
sahid | bauzas: we are running ussuri :D | 14:17 |
sahid | in all cases I don't get what is happening with this script | 14:21 |
plibeau | hello guys if you have time to review: https://review.opendev.org/c/openstack/nova/+/861172 thx | 14:45 |
bauzas | sahid: do you have all the right cells ? | 14:52 |
sahid | I don't know I think there is something I don't get | 14:56 |
sahid | when I list cells, I have 2 rows, one for rabbit without name and one cell0 | 14:57 |
sahid | the database connection for cell0 looks to use nova_cell0 dbname | 14:57 |
sahid | but in nova_cell0 db, there are nothing I mean If I count the instances fro; this database (nova_cell0), there are nothing | 14:58 |
sahid | the right database used is the dbname called 'nova' | 14:59 |
sahid | I don't know if that is normal... | 14:59 |
bauzas | sahid: can you list them in an etherpad ? | 15:07 |
bauzas | sahid: cell0 is just a DB for instances that were not accepted | 15:07 |
bauzas | I mean, when an instance doesn't have a specific host because of some problem (scheduling in general), then we create the record in cell0 | 15:08 |
bauzas | instead of recording the instance in the cell DB related to the host | 15:08 |
bauzas | so you should have 3 DBs : one for the API, one for cell0 and one (at least) for *one* cell | 15:09 |
bauzas | you should have *at least* 3 (I mean) | 15:09 |
sahid | nova, nova_api and nova_cell0 | 15:10 |
sahid | https://etherpad.opendev.org/p/cells | 15:11 |
sahid | bauzas: the issue we have is that, we are trying to archive deleted instances | 15:12 |
sahid | but when executing the script they stay | 15:12 |
sahid | and nothing in shadow tables | 15:12 |
sean-k-mooney | the nova database there is the nova cell 1 database | 15:16 |
sean-k-mooney | sahid: some tools did that but we recommend actully not calling it nova but nova_cell1 | 15:16 |
sean-k-mooney | basicly it simpliced upgrades so they kept the old name | 15:16 |
bauzas | sahid: sean-k-mooney: mmm, I wonder why the cell1 doesn't have a name | 15:16 |
sean-k-mooney | the actuall db schame name is not used for anything | 15:17 |
sean-k-mooney | when we splict the monolitic nova db into the celldb and api db | 15:17 |
sean-k-mooney | most instaler did that by extracting the api tables into a differnt schema | 15:18 |
sean-k-mooney | and reusing the existing db as the cell1 db | 15:18 |
bauzas | ok, but then I wonder why nova-manage db archive_deleted_rows doesn't work | 15:19 |
sahid | bauzas, sean-k-mooney I should perhaps try to name cell1 the cell with empty name? | 15:22 |
sean-k-mooney | it should wrok waht is the error | 15:22 |
sean-k-mooney | where was it run | 15:23 |
sahid | no errors are reported | 15:23 |
sahid | but nothing change | 15:23 |
sean-k-mooney | it gets the info form the nova.conf | 15:23 |
sean-k-mooney | does the nova.conf have the api and cell db set | 15:23 |
sahid | it has section [database] that mentions as connection = .../nova_cell0 | 15:25 |
sahid | and .. | 15:25 |
sahid | [api_database] that mentions as connection = .../nova_api | 15:26 |
sahid | (for both of the section we have a slave_connection) | 15:26 |
bauzas | sahid: you shouldn't mention the cell0 connection string in the nova.conf | 15:27 |
bauzas | [database] should refer to to cell connection it's attached to | 15:28 |
sean-k-mooney | it depends on which service that nova.confi is for | 15:28 |
sean-k-mooney | if it was the api's nova.conf or sheduler then pointing at cell0 is fine | 15:29 |
sahid | it is for nova-api | 15:29 |
sean-k-mooney | ok so what command are you trying to run exactly | 15:30 |
bauzas | sean-k-mooney: correct, I was assuming sahid was referring to the compute's nova.conf | 15:31 |
sahid | I have tried several ways but basically, nova-manage archive_deleted_rows --all-cells --unit-complete --verbose | 15:31 |
sean-k-mooney | ack so provided you have the cells mapped properly that should lookup the other cells db via the api db | 15:32 |
sean-k-mooney | nomally we woudl run this using the conducotrs nova.conf | 15:32 |
bauzas | sahid: you need to have a right nova.conf that gives the right connection for API DB | 15:33 |
bauzas | https://docs.openstack.org/nova/latest/cli/nova-manage.html#db-archive-deleted-rows | 15:33 |
sean-k-mooney | sahid: are you using templated URLs | 15:33 |
bauzas | " Move deleted rows from production tables to shadow tables. Note that the corresponding rows in the instance_mappings, request_specs and instance_group_member tables of the API database are purged when instance records are archived and thus, api_database.connection is required in the config file." | 15:33 |
elodilles | i know that nova meeting will have start in less than 30 mins, but i have a question about nova gate: | 15:33 |
sean-k-mooney | sure | 15:33 |
elodilles | is there a reported bug about the nova-lvm gate issue? https://zuul.opendev.org/t/openstack/builds?job_name=nova-lvm&skip=0 | 15:34 |
sean-k-mooney | i was not aware there was one but apprelty so | 15:34 |
elodilles | it's 100% failing on master and newer stable branches | 15:34 |
sean-k-mooney | ok so it looks like | 15:35 |
elodilles | the issue is mostly the same as it was last week with the ceph job | 15:35 |
sean-k-mooney | the tempest test is not using sshable | 15:35 |
elodilles | but it's different | 15:35 |
sean-k-mooney | and we dont have that configued in the job | 15:35 |
sean-k-mooney | tempest.lib.exceptions.InvalidParam: Invalid Parameter passed: When validation.connect_method equals floating, validation_resources cannot be None | 15:35 |
sean-k-mooney | test_rebuild_volume_backed_server | 15:35 |
sean-k-mooney | so that should be a simple fix | 15:35 |
elodilles | (the patch that introduced is this i think: https://review.opendev.org/c/openstack/tempest/+/831018 ) | 15:36 |
elodilles | sean-k-mooney: so you mean we have to add a new config value to the job def | 15:36 |
sean-k-mooney | ya so that added the second image | 15:36 |
sean-k-mooney | but if the job was nto already setup for ssh vericaiton then it would fail | 15:37 |
sean-k-mooney | let me check the job config | 15:37 |
elodilles | sean-k-mooney: thanks in advance | 15:37 |
sean-k-mooney | so i tought this was seup in tempest-multinode-full-py3 or one of the parent of that job | 15:38 |
sean-k-mooney | that is the parent of nova-lvm | 15:38 |
elodilles | maybe we override something in nova-lvm? | 15:38 |
sean-k-mooney | https://github.com/openstack/nova/blob/master/.zuul.yaml#L267 | 15:39 |
sean-k-mooney | we have tempest validation turned off expiclty for some reason | 15:39 |
sean-k-mooney | but its definlty now required | 15:39 |
elodilles | "to save time" | 15:39 |
elodilles | :) | 15:39 |
sean-k-mooney | so im just going to remove that one sec | 15:40 |
elodilles | should i open a bug for this? | 15:40 |
sean-k-mooney | sure does not hurt its techncially a gate blocker | 15:40 |
elodilles | ack, will do it now | 15:40 |
opendevreview | sean mooney proposed openstack/nova master: enable validations in nova-lvm https://review.opendev.org/c/openstack/nova/+/887632 | 15:44 |
sean-k-mooney | i can update ^ with the bug refernce but that should do the trick | 15:44 |
elodilles | sean-k-mooney: here's the bug: https://bugs.launchpad.net/nova/+bug/2025813 | 15:48 |
elodilles | sean-k-mooney: and thanks for the patch! \o/ | 15:48 |
sean-k-mooney | cool ill update it now. there is no need for a release note since this is purly ci | 15:48 |
elodilles | yepp, this is CI only issue | 15:48 |
opendevreview | sean mooney proposed openstack/nova master: enable validations in nova-lvm https://review.opendev.org/c/openstack/nova/+/887632 | 15:49 |
sahid | bauzas, sean-k-mooney it's owrk I was using wrong conf file | 15:50 |
sahid | the needed one was nova-conductor | 15:50 |
sahid | thanks | 15:50 |
bauzas | sahid: ok, gtk | 15:50 |
bauzas | sahid: fwiw, you can use any one having a right connection URL :) | 15:51 |
bauzas | but yeah, given the super conductor in general uses the api db, you can use this one :) | 15:51 |
sean-k-mooney | ya the only gotcha is if you are using templated cell db urls and you have a differnet password per cell | 15:53 |
sean-k-mooney | in that case you cannot use --all-cells | 15:53 |
sean-k-mooney | and isntead need to run it per cell with the correct passowrd | 15:53 |
sean-k-mooney | however i dont belive anything other then tripleo even supprot that | 15:54 |
sean-k-mooney | so it should not be an issue for canonicals charm based installer | 15:54 |
bauzas | #startmeeting nova | 16:00 |
opendevmeet | Meeting started Tue Jul 4 16:00:37 2023 UTC and is due to finish in 60 minutes. The chair is bauzas. Information about MeetBot at http://wiki.debian.org/MeetBot. | 16:00 |
opendevmeet | Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. | 16:00 |
opendevmeet | The meeting name has been set to 'nova' | 16:00 |
bauzas | hey folks | 16:00 |
Uggla_ | o/ | 16:00 |
bauzas | some people are on PTO today, so let's try to have a quick meeting | 16:01 |
elodilles | o/ | 16:01 |
gibi | o/ | 16:02 |
bauzas | #link https://wiki.openstack.org/wiki/Meetings/Nova#Agenda_for_next_meeting | 16:03 |
bauzas | let's start | 16:03 |
sean-k-mooney | o/ | 16:03 |
bauzas | #topic Bugs (stuck/critical) | 16:03 |
bauzas | #info One Critical bug | 16:04 |
bauzas | #link https://bugs.launchpad.net/nova/+bug/2025813 | 16:04 |
bauzas | we can discuss this one now or later in the gate section | 16:04 |
bauzas | as people want | 16:04 |
gibi | I don't have much context on it | 16:06 |
elodilles | it's "only" about nova-lvm job | 16:06 |
elodilles | but sean-k-mooney has a fix already :) | 16:06 |
sean-k-mooney | https://review.opendev.org/c/openstack/nova/+/887632 | 16:07 |
sean-k-mooney | reviews welcome :) | 16:07 |
bauzas | already voted. | 16:07 |
bauzas | ok, let's move on | 16:07 |
sean-k-mooney | i might need to adjust the job timeout | 16:07 |
sean-k-mooney | but we will see when zuul runs | 16:07 |
* gibi approved the fix and CI will decide :) | 16:07 | |
bauzas | ++ | 16:08 |
bauzas | bad news, I forgot I was on PTO for 2 days last week, so | 16:08 |
bauzas | #link https://bugs.launchpad.net/nova/+bugs?search=Search&field.status=New 34 new untriaged bugs (+3 since the last meeting) | 16:08 |
bauzas | :( | 16:08 |
bauzas | I'll pass the baton but I'll really try to look at some when I have time | 16:09 |
bauzas | #info Add yourself in the team bug roster if you want to help https://etherpad.opendev.org/p/nova-bug-triage-roster | 16:09 |
bauzas | gibi: do you want to take that one ? | 16:09 |
gibi | bauzas: I take it | 16:09 |
bauzas | cool thanks | 16:10 |
gibi | there is one in that 34 that I wanted to look anyhow | 16:10 |
bauzas | #info bug baton is being passed to gibi | 16:10 |
bauzas | #topic Gate status | 16:10 |
bauzas | #link https://bugs.launchpad.net/nova/+bugs?field.tag=gate-failure Nova gate bugs | 16:10 |
bauzas | #link https://zuul.openstack.org/builds?project=openstack%2Fnova&project=openstack%2Fplacement&pipeline=periodic-weekly Nova&Placement periodic jobs status | 16:10 |
bauzas | all greens | 16:10 |
bauzas | #info Please look at the gate failures and file a bug report with the gate-failure tag. | 16:11 |
bauzas | fwiw, given https://etherpad.opendev.org/p/recheck-weekly-summary I'll stop to tell about bare rechecks :) | 16:12 |
bauzas | the stats are very good for the nova project, thanks to the team who understands it | 16:12 |
bauzas | so, please continue to not only say 'recheck' but add a specific phrase | 16:13 |
bauzas | anyway, moving on | 16:13 |
bauzas | #topic Release Planning | 16:13 |
bauzas | #link https://releases.openstack.org/bobcat/schedule.html | 16:13 |
bauzas | #info Nova deadlines are set in the above schedule | 16:13 |
bauzas | #link https://releases.openstack.org/bobcat/schedule.html#b-nova-spec-freeze Nova Spec Freeze in two days ! | 16:13 |
bauzas | auniyal: I saw you asked for a review request for your spec, don't worry, we know it | 16:14 |
auniyal | ack bauzas | 16:14 |
bauzas | I'll ping folks tomorrow to ask for reviews | 16:14 |
auniyal | actually 6th is a last date, so added | 16:14 |
bauzas | moving on | 16:17 |
bauzas | #topic Review priorities | 16:17 |
bauzas | #link https://review.opendev.org/q/status:open+(project:openstack/nova+OR+project:openstack/placement+OR+project:openstack/os-traits+OR+project:openstack/os-resource-classes+OR+project:openstack/os-vif+OR+project:openstack/python-novaclient+OR+project:openstack/osc-placement)+(label:Review-Priority%252B1+OR+label:Review-Priority%252B2) | 16:17 |
bauzas | #info As a reminder, cores eager to review changes can +1 to indicate their interest, +2 for committing to the review | 16:17 |
Uggla_ | auniyal, can you provide your spec link ? | 16:17 |
bauzas | #topic Stable Branches | 16:17 |
bauzas | Uggla_: https://review.opendev.org/c/openstack/nova-specs/+/878757 | 16:18 |
auniyal | yes Uggla_, will share here after meet | 16:18 |
Uggla_ | thx | 16:18 |
bauzas | elodilles: want to tell something ? | 16:18 |
elodilles | yepp | 16:18 |
elodilles | #info stable gates should be OK from stable/xena to stable/train | 16:18 |
elodilles | #info stable gate of stable/2023.1 -> stable/yoga mostly broken due to nova-lvm job issue - https://bugs.launchpad.net/nova/+bug/2025813 | 16:18 |
elodilles | the same thing that we discussed about master gate | 16:18 |
elodilles | #info stable branch status / gate failures tracking etherpad: https://etherpad.opendev.org/p/nova-stable-branch-ci | 16:19 |
elodilles | that was the general gate status part :) | 16:19 |
bauzas | cool thanks | 16:20 |
elodilles | np | 16:20 |
bauzas | about the train-eol patch, it's on me | 16:20 |
bauzas | I need to update it based on last week's consensus | 16:20 |
elodilles | +1 | 16:20 |
elodilles | thanks in advance! | 16:21 |
bauzas | auniyal: you added some items I guess ? | 16:21 |
auniyal | yes | 16:21 |
auniyal | #info Please review these backport patches of stable 2023.1, zed and yoga for next minor release | 16:21 |
auniyal | most of these already have one +2. | 16:21 |
auniyal | #link https://etherpad.opendev.org/p/release-liaison-PatchesToReview | 16:21 |
auniyal | bauzas, thats all, thanks | 16:21 |
bauzas | cool, thanks for the reminder | 16:22 |
bauzas | tbh for some obvious reasons, my main prio until Friday will be specs review :) | 16:22 |
elodilles | :) | 16:22 |
bauzas | ok, anything else to add ? | 16:23 |
bauzas | looks not | 16:23 |
bauzas | then, | 16:23 |
bauzas | #topic Open discussion | 16:23 |
bauzas | (nothing)= | 16:24 |
bauzas | anything anyone ? | 16:24 |
bauzas | looks not | 16:24 |
bauzas | so, | 16:25 |
bauzas | you know whay ? | 16:25 |
bauzas | I give you back 35 mins ! | 16:25 |
bauzas | thanks | 16:25 |
bauzas | #endmeeting | 16:25 |
opendevmeet | Meeting ended Tue Jul 4 16:25:18 2023 UTC. Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4) | 16:25 |
opendevmeet | Minutes: https://meetings.opendev.org/meetings/nova/2023/nova.2023-07-04-16.00.html | 16:25 |
opendevmeet | Minutes (text): https://meetings.opendev.org/meetings/nova/2023/nova.2023-07-04-16.00.txt | 16:25 |
opendevmeet | Log: https://meetings.opendev.org/meetings/nova/2023/nova.2023-07-04-16.00.log.html | 16:25 |
elodilles | thanks bauzas o/ | 16:25 |
sean-k-mooney | the only open topic i had is m2 is thruday right | 16:25 |
sean-k-mooney | so all spec that shall be approved need to be approved by then | 16:25 |
elodilles | auniyal: thanks, too, for preparing for stable releases. let me know if i can help with anything for that | 16:26 |
sean-k-mooney | and i assume no spec excpeitons this release | 16:26 |
auniyal | elodilles, ack, someone already added comments, they are helping | 16:27 |
auniyal | is it you ? | 16:27 |
elodilles | yepp, it was me :] | 16:27 |
auniyal | thanks | 16:28 |
elodilles | np :) | 16:28 |
auniyal | #openstack-nova: free spec to review: https://review.opendev.org/c/openstack/nova-specs/+/878757 :) | 16:28 |
bauzas | sean-k-mooney: correct, I said it in the meeting | 16:35 |
sean-k-mooney | oh ok i missed that | 16:35 |
sean-k-mooney | all good then | 16:35 |
bauzas | np | 16:35 |
opendevreview | Amit Uniyal proposed openstack/nova master: Delete dangling bdms https://review.opendev.org/c/openstack/nova/+/882284 | 18:57 |
opendevreview | Amit Uniyal proposed openstack/nova master: Delete dangling bdms https://review.opendev.org/c/openstack/nova/+/882284 | 19:10 |
opendevreview | Mohammed Naser proposed openstack/nova master: docs: fix 404 for ironic docs https://review.opendev.org/c/openstack/nova/+/887643 | 20:43 |
mnaser | ^ five minuter doc fix | 20:43 |
opendevreview | Arnaud Morin proposed openstack/nova master: Correctly reset instance task state in rebooting hard https://review.opendev.org/c/openstack/nova/+/867832 | 21:29 |
Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!