Earlier  
Posted Nick Remark
#openstack-nova - 2019-08-22
09:44:01 gibi shilpasd: do we call the function with such generalized parameters? or do you have a plan short term to add such a call?
09:45:28 openstackgerrit Brin Zhang proposed openstack/nova master: Add delete_on_termination to volume-attach API https://review.opendev.org/673133
09:47:00 shilpasd gibi: no any plan as such, ok, will address this comment, tnx
09:47:47 gibi shilpasd: I suggest not to add complexity that will not be used right now. If we figure out that we need a more generic call then we can make the necessary changes in the function any time
09:49:03 shilpasd gibi: sure Gibi, will work on review comments
09:49:13 gibi shilpasd: thanks
09:50:13 aspiers alex_xu: I think we need to talk to efried about https://review.opendev.org/#/c/664420/42/nova/scheduler/request_filter.py@206 and https://review.opendev.org/#/c/664420/42/nova/virt/hardware.py@1225
09:50:27 aspiers alex_xu: oh, you already said that
09:51:20 openstackgerrit Adam Spiers proposed openstack/nova master: Add extra spec parameter and image property for memory encryption https://review.opendev.org/664420
10:28:02 stephenfin dansmith: Could I get your thoughts on https://review.opendev.org/#/c/537414/ today? I think it's sane, but maybe there's something I've missed or should be doing in addition
10:28:50 stephenfin alex_xu: Fancy hitting these trivial changes? https://review.opendev.org/#/c/671791/ https://review.opendev.org/#/c/675570/
10:33:28 stephenfin #success nova no longer needs rootwrap (well, except for starting privsep daemons and os-brick, for some strange reason)
10:33:30 openstackstatus stephenfin: Added success to Success page (https://wiki.openstack.org/wiki/Successes)
10:37:59 openstackgerrit Stephen Finucane proposed openstack/nova master: Address nits from privsep series https://review.opendev.org/677210
10:40:25 openstackgerrit Brin Zhang proposed openstack/nova master: Add delete_on_termination to volume-attach API https://review.opendev.org/673133
10:50:44 openstackgerrit Stephen Finucane proposed openstack/nova master: Recalculate 'RequestSpec.numa_topology' on resize https://review.opendev.org/662522
10:50:44 openstackgerrit Stephen Finucane proposed openstack/nova master: Update docstring of 'revert_resize' function https://review.opendev.org/665976
10:50:45 openstackgerrit Stephen Finucane proposed openstack/nova master: tests: Cleanup of '_test_resize' helper test https://review.opendev.org/664245
10:50:46 openstackgerrit Stephen Finucane proposed openstack/nova master: tests: Add '_setup_compute_services' helper https://review.opendev.org/663102
10:58:34 sean-k-mooney efried: o/ i have a process question for you. when can we submit blueprints/specs for approval for Ussuri. i think its normally after m3 but you mentions posible targeting stuff to U early a week or two back
11:00:41 sean-k-mooney from a downstream persective we will normally only consider a feature bacport if said feature is merged on master, and we will only commit to trying to backport it if the feature is approved and the design allows it to be
11:01:40 sean-k-mooney the context is i have a customer asking when we will know if we can backport https://review.opendev.org/#/c/674072/ and currenly we have said october/november but just trying to figure out if we can let them know before then.
11:01:41 openstackgerrit sahid proposed openstack/nova master: cellv2: fix update_cell to support cell0 https://review.opendev.org/672045
11:03:28 alex_xu aspiers: yea, that is really strange
11:03:50 alex_xu stephenfin: yea, checking
11:11:53 alex_xu stephenfin: done
11:12:00 stephenfin alex_xu: Thanks :)
11:12:14 alex_xu np
11:13:57 openstackgerrit Stephen Finucane proposed openstack/nova master: WIP: Move DB dependencies to 'extras' https://review.opendev.org/677475
11:13:57 openstackgerrit Stephen Finucane proposed openstack/nova master: setup.cfg: Cleanup https://review.opendev.org/677969
11:17:19 aspiers alex_xu: sorry, what's strange?
11:18:21 stephenfin alex_xu: There's one more non-functional change here actually, if you have time https://review.opendev.org/#/c/672336/ :)
12:12:02 shilpasd gibi: hi
12:12:23 gibi shilpasd: hi
12:13:56 shilpasd gibi: if we don't have traits sets either on flavor or image, then we should skip this filter, since https://review.opendev.org/#/c/667952/18/nova/tests/functional/test_aggregates.py@516 is failing if raise ValueError if ignored_keys is empty
12:15:03 shilpasd IMO, we should return false at https://review.opendev.org/#/c/671075/9/nova/scheduler/request_filter.py@79, if keys is empty
12:15:10 openstackgerrit Merged openstack/nova master: FUP for I5576fa2a67d2771614266022428b4a95487ab6d5 https://review.opendev.org/677769
12:15:16 shilpasd gibi: please confirm
12:17:15 shilpasd IMO we should skip filter if keys are empty
12:17:23 gibi shilpasd: if there is no traits in image or in flavor we still want to prevent the instance to land in an aggregate that needs to be isolated. isn't it?
12:19:31 gibi shilpasd: it is how I understand the spec https://review.opendev.org/#/c/609960/8/specs/train/approved/placement-req-filter-forbidden-aggregates.rst@20
12:19:58 shilpasd gibi: yes
12:19:59 gibi so if the keys are empty then we have to forbid every aggregates that has some kind of metadata set
12:20:28 shilpasd so we shouldn't raise ValueError in DB for ignored_keys empty
12:21:37 shilpasd https://review.opendev.org/#/c/671074/8/nova/objects/aggregate.py@472
12:22:43 gibi shilpasd: you are correct. so if there is no ignored_keys then we have to return every aggregate that has metadata.value set to "required"
12:23:04 gibi shilpasd: so my comment is wrong in https://review.opendev.org/#/c/671074/8/nova/objects/aggregate.py@472
12:23:37 shilpasd gibi: ok, will skip this
12:25:29 gibi shilpasd: I guess i mixed up ignored_keys and key_prefix. See https://review.opendev.org/#/c/671074/8/nova/objects/aggregate.py@473
12:26:19 shilpasd gibi: no prob, tnx for discussion
12:26:33 gibi shilpasd: thanks for double checking my comment
12:26:46 shilpasd will have ValueError at beginning only for key_prefix
12:27:16 gibi shilpasd: ack
12:27:23 shilpasd thank you
12:54:09 openstackgerrit Adam Spiers proposed openstack/nova master: Provide HW_CPU_X86_AMD_SEV trait when SEV is supported https://review.opendev.org/638680
12:58:29 aspiers stephenfin: thanks for your recheck on https://review.opendev.org/#/c/673151/16 - but any idea why it's rerunning the check jobs not the gate jobs?
12:59:07 stephenfin aspiers: no idea. That's just the way it's always done it. It's a zuul thing, I imagine
12:59:31 aspiers Oh, I thought that once it hit the gate, recheck would only redo the gate jobs
12:59:40 aspiers Thought I'd seen that behaviour before
12:59:57 aspiers Seems kinda pointless to rerun the check jobs when nothing has changed there
13:00:09 aspiers Oh well, check is almost finished, gate soon
13:10:44 openstackgerrit Merged openstack/nova master: Make memtune parameters consistent with libvirt docs and code https://review.opendev.org/636301
13:10:52 openstackgerrit Merged openstack/nova master: fakelibvirt: Stop distinguishing between NUMA, non-NUMA https://review.opendev.org/675570
13:11:56 belmoreira melwitt I'm upgrading nova to stein and i'm having issues with novnc
13:13:27 belmoreira as part of the consoleauth deprecation where are the tokens stored?
13:13:30 openstackgerrit Shilpa Devharakar proposed openstack/nova master: Nova object changes for forbidden aggregates request filter https://review.opendev.org/671072
13:22:17 openstackgerrit Shilpa Devharakar proposed openstack/nova master: DB API changes to get non-matching aggregates from metadata https://review.opendev.org/671074
13:24:15 openstackgerrit Shilpa Devharakar proposed openstack/nova master: Add a new request filter to isolate aggregates https://review.opendev.org/671075
13:27:33 openstackgerrit Shilpa Devharakar proposed openstack/nova master: Enable request filter isolate_aggregates https://review.opendev.org/667952
13:32:11 belmoreira I would really appreciate some help with vnc
13:32:46 belmoreira when using workarounds/enable_consoleauth=true we don't keep the previous behaviour?
13:33:08 belmoreira tokens are now stored in the cell db.
13:33:36 openstackgerrit Stephen Finucane proposed openstack/nova master: Update docstring of 'revert_resize' function https://review.opendev.org/665976
13:33:37 openstackgerrit Stephen Finucane proposed openstack/nova master: Recalculate 'RequestSpec.numa_topology' on resize https://review.opendev.org/662522
13:33:37 openstackgerrit Stephen Finucane proposed openstack/nova master: tests: Cleanup of '_test_resize' helper test https://review.opendev.org/664245
13:33:38 openstackgerrit Stephen Finucane proposed openstack/nova master: tests: Add '_setup_compute_services' helper https://review.opendev.org/663102
13:33:57 belmoreira the was I'm running novnc is global, so is not connecting to the db to check the token
13:34:14 belmoreira s/was/way
13:34:27 adrianc stephenfin, sean-k-mooney : do we have a verdict on: https://review.opendev.org/#/c/675776/ ?
13:35:20 sean-k-mooney we could revert it and not that this is need due to a bug in the sriov nic agent
13:36:38 stephenfin belmoreira: melwitt will hopefully correct me if I say anything wrong, but '[workarounds] enable_consoleauth' enables a fallback path to help with migration to the new DB-based system
13:36:43 sean-k-mooney there is nolonger a need to set the mac for libvirt but it valid to still set it untill the sriov nic agent is updated. it is a bug that the agent depens on the mack however
13:37:19 stephenfin Emphasis on fallback. We'll use the DB tokens first and foremost and only fallback if no tokens are found
13:37:34 adrianc "a historic design decision" :)
13:37:37 belmoreira stephenfin I'm trying to use that without success.
13:38:31 sean-k-mooney adrianc: the historic design descis being the only thing that was allowed to be depeded on is the pci address :)
13:38:41 sean-k-mooney at somepoint i guess neutron forgot that
13:39:31 sean-k-mooney the sriov nic agent is in principal ment to be able to work with non libvirt virt drivers too
13:39:33 belmoreira stephenfin token validation fails
13:40:08 sean-k-mooney like xen or powervm although i dont know if it is used with either
13:40:26 yonglihe sean-k-mooney: thanks given your valuable +1 for https://review.opendev.org/#/c/621476/
13:40:50 stephenfin belmoreira: Odd. I'm looking at commit 969239029d4a13956747e6e0b850d6c6ab4035f0 rn to see what could possibly be going wrong
13:41:36 stephenfin belmoreira: Dumb question, but you have this option set on the conf files used by the 'nova-novncproxy' service, right?
13:41:51 belmoreira stephenfin yes
13:41:58 stephenfin Cool. Just checking :)
13:42:01 sean-k-mooney stephenfin: feel like sending https://review.opendev.org/#/c/621476/ on its way and closing out that blueprint
13:42:48 stephenfin I'd been holding off on that because I still wasn't sure how I feel about that whole thing, heh
13:43:02 stephenfin But yeah. Let me finish looking into this consoleauth thing first though
13:43:19 sean-k-mooney ok if you have time to add it to your review queue then its an easy win assumeing you decide how you feel about it
13:43:33 adrianc sean-k-mooney: ill open a bug in neutron, once the revert is in ill abandon https://review.opendev.org/#/c/676713

Earlier   Later