Thursday, 2017-07-06

*** shaohe_feng has quit IRC00:01
*** slaweq has joined #openstack-nova00:03
*** hoonetorg has joined #openstack-nova00:03
*** slaweq has quit IRC00:08
*** owalsh has joined #openstack-nova00:09
*** dixiaoli has joined #openstack-nova00:09
*** gmann has quit IRC00:10
*** gmann has joined #openstack-nova00:10
*** iceyao has joined #openstack-nova00:12
*** dixiaoli has quit IRC00:14
*** dtp has quit IRC00:16
*** yangyape_ has quit IRC00:17
*** iceyao has quit IRC00:17
*** yangyapeng has joined #openstack-nova00:17
*** arahal_ has quit IRC00:18
*** mriedem has quit IRC00:21
*** yangyapeng has quit IRC00:22
*** mriedem has joined #openstack-nova00:24
*** nic has left #openstack-nova00:29
*** iceyao has joined #openstack-nova00:33
openstackgerritMatt Riedemann proposed openstack/nova master: Add ability to signal and perform online volume size change  https://review.openstack.org/45432200:37
*** iceyao has quit IRC00:37
*** jwcroppe has joined #openstack-nova00:38
*** zhurong has joined #openstack-nova00:41
*** Apoorva has quit IRC00:43
*** thorst has quit IRC00:43
*** ijw has joined #openstack-nova00:46
*** tbachman has quit IRC00:49
*** xinliang has quit IRC00:53
*** iceyao has joined #openstack-nova00:54
*** iceyao has quit IRC00:58
*** slaweq has joined #openstack-nova01:03
*** xinliang has joined #openstack-nova01:06
*** slaweq has quit IRC01:08
*** dixiaoli has joined #openstack-nova01:09
*** iceyao has joined #openstack-nova01:14
*** iceyao has quit IRC01:18
*** yangyapeng has joined #openstack-nova01:19
*** liujiong has joined #openstack-nova01:24
*** yangyapeng has quit IRC01:24
*** litao__ has joined #openstack-nova01:25
*** iceyao has joined #openstack-nova01:26
Kevin_Zhengping mriedem01:27
mriedempong01:27
*** yangyapeng has joined #openstack-nova01:28
Kevin_ZhengHi, about tag creation01:29
Kevin_Zhenghttp://git.openstack.org/cgit/openstack/nova/tree/nova/objects/tag.py#n7001:29
Kevin_Zhengit is a class method and takes ['tag1','tag2'] as param01:30
Kevin_Zhengso I think it cannot be used directly01:30
mriedembecause we have a TagList,01:30
mriedemso you'd have to convert the TagList to a list of simple tags01:31
mriedemtags = [tag.tag for tag in tags]01:31
mriedemsomething like that right?01:31
Kevin_Zhengbesides, build_request contains TagList.obj so I build taglist in API layer01:31
Kevin_Zhengyes01:31
mriedemi wonder if people would be ok with checking the type for the tags parameter in TagList.create01:32
mriedemand if it's a TagList, convert it to a simple form01:32
mriedemit's just a lot more efficient to do it that way in a single call if we have multiple tags for the server01:33
*** yangyapeng has quit IRC01:33
mriedembecause every separate tag create call does this extra _check_instance_exists_in_project db query01:34
mriedemand context switch01:34
Kevin_Zhengyou mean do it in objects/tag.py?01:34
*** yangyapeng has joined #openstack-nova01:34
mriedemwell that would abstract the check which would be nice and clean, but people might not like that, like dansmith01:34
mriedemotherwise we could just convert the TagList to a simple list in the conductor method01:35
mriedemi think passing the TagList object from the compute api to conductor is still ok and what we want01:35
Kevin_Zhengyeah, and we also need it in build_request01:36
mriedemsure i think that's fine01:36
mriedemi wish TagList just had a non-classmethod create() but that would conflict with the classmethod01:36
mriedemwe could add a TagList.create_all(context) or something01:37
mriedemTagList.create_all(context, resource_id)01:37
mriedemwhich would use the tags already stored in the TagList01:37
mriedemcreate_all() is a confusing name when there is already a create() method01:37
Kevin_Zhengyeah01:37
mriedemi'm just kicking out ideas, i could talk to dan in the morning,01:38
mriedembut i'd really like to do the create in the single call fashion rather than iterate in conductor manager01:38
Kevin_ZhengOK, I will have a try and have all the other comments addressed01:38
Kevin_Zhengfirst01:38
mriedemthe simplest way to do that today is just doing tags = [tag.tag for tag in tags] in conductor manager01:38
mriedemwe could always move ^ into TagList later if we wanted01:39
Kevin_ZhengOK01:39
*** yangyape_ has joined #openstack-nova01:39
*** yangyapeng has quit IRC01:39
*** rajathagasthya has joined #openstack-nova01:40
openstackgerritMatt Riedemann proposed openstack/nova master: api-ref: mark instance action events parameter as optional  https://review.openstack.org/48079201:42
*** tbachman has joined #openstack-nova01:43
*** ijw has quit IRC01:43
*** acormier has joined #openstack-nova01:55
*** gyee has quit IRC01:58
*** hongbin has joined #openstack-nova02:01
openstackgerritMerged openstack/nova master: Fix arguments in calling _delete_nic_metadata  https://review.openstack.org/48036902:03
*** slaweq has joined #openstack-nova02:04
*** tbachman has quit IRC02:07
openstackgerritMerged openstack/nova master: Delete all inventory has its own method DELETE  https://review.openstack.org/46014702:08
*** slaweq has quit IRC02:09
*** acormier has quit IRC02:10
openstackgerritZhenyu Zheng proposed openstack/nova master: Support tag instances when boot(3/4)  https://review.openstack.org/45959302:10
*** mriedem has quit IRC02:10
*** acormier has joined #openstack-nova02:10
*** bkopilov has quit IRC02:12
*** acormier_ has joined #openstack-nova02:14
*** acormier has quit IRC02:15
*** yamahata has quit IRC02:22
*** slaweq has joined #openstack-nova02:33
*** slaweq has quit IRC02:37
*** edmondsw has joined #openstack-nova02:38
*** edmondsw has quit IRC02:39
*** shaohe_feng has joined #openstack-nova02:41
*** udesale has joined #openstack-nova02:43
*** thorst has joined #openstack-nova02:44
*** thorst has quit IRC02:49
*** Shunli has joined #openstack-nova02:49
*** dave-mccowan has quit IRC02:53
*** iceyao has quit IRC02:54
*** slaweq has joined #openstack-nova03:04
*** slaweq_ has joined #openstack-nova03:05
*** slaweq has quit IRC03:09
*** mmehan has quit IRC03:10
*** slaweq_ has quit IRC03:11
openstackgerritGhanshyam Mann proposed openstack/nova-specs master: Update quota class spec to filter out networks quota  https://review.openstack.org/48081503:15
*** yamahata has joined #openstack-nova03:16
*** hongbin_ has joined #openstack-nova03:20
*** hongbin has quit IRC03:21
*** hongbin has joined #openstack-nova03:23
*** hongbin_ has quit IRC03:24
*** markvoelker has quit IRC03:26
*** markvoelker has joined #openstack-nova03:26
gmannalex_xu, mriedem: updated spec for filter out network quotas in os-quota-class - https://review.openstack.org/#/c/480815/103:27
alex_xugmann: thanks03:27
*** markvoelker has quit IRC03:30
*** acormier_ has quit IRC03:31
*** acormier has joined #openstack-nova03:32
*** bkopilov has joined #openstack-nova03:32
*** cNilesh has joined #openstack-nova03:32
*** gjayavelu has joined #openstack-nova03:33
*** yamamoto has joined #openstack-nova03:33
*** cNilesh has quit IRC03:35
*** cNilesh has joined #openstack-nova03:36
*** acormier has quit IRC03:36
*** hongbin has quit IRC03:38
*** sanfern has joined #openstack-nova03:40
*** edmondsw has joined #openstack-nova03:41
*** iceyao has joined #openstack-nova03:43
openstackgerritZhenyu Zheng proposed openstack/nova master: Support tag instances when boot(3/4)  https://review.openstack.org/45959303:45
*** edmondsw has quit IRC03:46
*** mdnadeem has joined #openstack-nova03:47
*** itlinux has joined #openstack-nova03:56
*** mdrabe has quit IRC03:58
*** claudiub has joined #openstack-nova03:58
*** slaweq has joined #openstack-nova04:04
*** links has joined #openstack-nova04:05
*** slaweq_ has joined #openstack-nova04:06
openstackgerritzhangdaolong proposed openstack/python-novaclient master: Fix the inappropriate parameter name  https://review.openstack.org/48082604:06
*** slaweq has quit IRC04:10
*** slaweq_ has quit IRC04:11
*** psachin has joined #openstack-nova04:14
*** gjayavelu has quit IRC04:16
*** sridharg has joined #openstack-nova04:18
*** trinaths has joined #openstack-nova04:19
*** fragatin_ has joined #openstack-nova04:22
*** rajathagasthya has quit IRC04:23
*** fragatina has quit IRC04:26
*** fragatin_ has quit IRC04:26
*** fragatina has joined #openstack-nova04:32
openstackgerritTakashi NATSUME proposed openstack/nova master: Add 'updated_at' field to InstancePayload in notifications  https://review.openstack.org/47527604:33
*** adisky__ has joined #openstack-nova04:35
*** fragatina has quit IRC04:36
*** moshele has joined #openstack-nova04:40
*** thorst has joined #openstack-nova04:45
*** thorst has quit IRC04:51
*** ratailor has joined #openstack-nova04:55
*** jwcroppe has quit IRC04:57
*** jwcroppe has joined #openstack-nova04:57
*** dixiaoli has quit IRC04:58
*** psachin has quit IRC05:01
openstackgerritTakashi NATSUME proposed openstack/python-novaclient master: Microversion 2.49 - Virt device tagged attach  https://review.openstack.org/48039205:04
*** Shunli has quit IRC05:08
*** dixiaoli has joined #openstack-nova05:11
*** psachin has joined #openstack-nova05:11
*** andymccr_ has joined #openstack-nova05:11
*** cargonza_ has joined #openstack-nova05:13
*** ujjain- has joined #openstack-nova05:14
*** klipka_ has joined #openstack-nova05:15
*** frickler_ has joined #openstack-nova05:15
*** fmccrthy_ has joined #openstack-nova05:16
*** anish_ has joined #openstack-nova05:17
*** adisky___ has joined #openstack-nova05:17
openstackgerritTakashi NATSUME proposed openstack/nova master: Enable cold migration with target host(1/2)  https://review.openstack.org/40895505:19
*** clarkb1 has joined #openstack-nova05:19
openstackgerritTakashi NATSUME proposed openstack/nova master: Enable cold migration with target host(2/2)  https://review.openstack.org/40896405:20
openstackgerritTakashi NATSUME proposed openstack/nova master: api-ref: Add parameters in cold migrate action  https://review.openstack.org/41004205:20
*** dosaboy_ has joined #openstack-nova05:20
openstackgerritTakashi NATSUME proposed openstack/nova master: Add functional tests for cold migration to same host  https://review.openstack.org/41492605:21
*** harlowja has quit IRC05:22
*** andymccr has quit IRC05:22
*** ujjain has quit IRC05:22
*** cargonza has quit IRC05:22
*** fmccrthy has quit IRC05:22
*** adisky__ has quit IRC05:22
*** frickler has quit IRC05:22
*** klipka has quit IRC05:22
*** anish has quit IRC05:22
*** devananda has quit IRC05:22
*** clarkb has quit IRC05:22
*** dosaboy has quit IRC05:22
*** adisky___ is now known as adisky__05:22
*** cargonza_ is now known as cargonza05:22
*** fmccrthy_ is now known as fmccrthy05:22
*** prateek has joined #openstack-nova05:24
*** john51 has quit IRC05:24
*** mnaser has quit IRC05:24
*** john51 has joined #openstack-nova05:24
*** jotr has quit IRC05:25
*** markvoelker has joined #openstack-nova05:27
*** mnaser has joined #openstack-nova05:28
*** prateek has quit IRC05:28
*** jotr has joined #openstack-nova05:28
*** edmondsw has joined #openstack-nova05:29
*** prateek_ has joined #openstack-nova05:30
*** karthiks has joined #openstack-nova05:30
*** prateek_ is now known as 7GHABESXC05:30
*** prateek_ has joined #openstack-nova05:30
*** prateek_ has quit IRC05:30
*** edmondsw has quit IRC05:33
openstackgerritzhangdaolong proposed openstack/nova master: Fix parameters and description for os-volume_attachments  https://review.openstack.org/48083205:34
openstackgerritTakashi NATSUME proposed openstack/python-novaclient master: Microversion 2.50 - Enable cold migration with target host  https://review.openstack.org/40670705:35
*** sgordon has quit IRC05:41
*** devananda has joined #openstack-nova05:43
*** stephenfin has quit IRC05:44
*** dgonzalez has quit IRC05:44
*** stephenfin has joined #openstack-nova05:45
*** dgonzalez has joined #openstack-nova05:46
*** Shunli has joined #openstack-nova05:46
*** sgordon has joined #openstack-nova05:50
*** ijw has joined #openstack-nova05:50
openstackgerritMoshe Levi proposed openstack/os-vif master: fix read the representor phys_port_name  https://review.openstack.org/48021305:53
*** andreas_s has joined #openstack-nova05:53
*** reedip has joined #openstack-nova05:53
reedipHi guys, With Ceph as backend, and using cinder, when we attach a volume to an instance, the following error is visible in the compute's nova-compute.log05:54
reedip libvirtError: Secret not found: rbd no secret matches uuid '------------------------------------'05:54
reedipany ideas how to resolve it ?05:55
reedipwe have one ceph, one compute and one controller+network node05:55
*** ijw has quit IRC05:56
*** armax has quit IRC05:56
*** armax has joined #openstack-nova05:56
*** armax has quit IRC05:57
*** itlinux has quit IRC05:58
*** rcernin has joined #openstack-nova05:59
*** litao__ has quit IRC06:00
*** markvoelker has quit IRC06:00
openstackgerritGhanshyam Mann proposed openstack/nova master: Fix to return server groups quota in quota class set  https://review.openstack.org/46799906:01
*** rcernin has quit IRC06:04
*** slaweq has joined #openstack-nova06:06
openstackgerritTakashi NATSUME proposed openstack/nova master: List/show all server migration types (1/2)  https://review.openstack.org/43060806:08
*** slaweq_ has joined #openstack-nova06:09
openstackgerritTakashi NATSUME proposed openstack/nova master: List/show all server migration types (2/2)  https://review.openstack.org/45948306:09
*** Oku_OS-away is now known as Oku_OS06:11
*** slaweq has quit IRC06:11
*** karthiks has quit IRC06:12
*** karthiks has joined #openstack-nova06:12
*** slaweq_ has quit IRC06:13
*** gouthamr has quit IRC06:14
*** johnthetubaguy has quit IRC06:21
*** anthonyper has quit IRC06:21
*** masayukig has quit IRC06:21
*** ttx has quit IRC06:21
*** anthonyper has joined #openstack-nova06:21
*** rha has quit IRC06:24
*** Shunli has quit IRC06:24
*** rha has joined #openstack-nova06:26
*** johnthetubaguy has joined #openstack-nova06:27
*** masayukig has joined #openstack-nova06:28
*** ttx has joined #openstack-nova06:34
*** sanfern has quit IRC06:35
*** sanfern has joined #openstack-nova06:37
*** ttx has quit IRC06:40
*** ttx has joined #openstack-nova06:40
openstackgerritBéla Vancsics proposed openstack/nova master: Transform keypair.import notification  https://review.openstack.org/46751406:41
*** Nel1x has quit IRC06:41
openstackgerritTakashi NATSUME proposed openstack/python-novaclient master: Microversion 2.50 - List/Show all server migration types  https://review.openstack.org/43083906:45
*** thorst has joined #openstack-nova06:46
*** fragatina has joined #openstack-nova06:50
gaurangtHi, I'm facing an issue where quota is not getting updated when the failed instance is deleted. Is there any work around for setting the right values for the quotas?06:50
*** thorst has quit IRC06:52
*** fragatina has quit IRC06:54
*** hshiina has joined #openstack-nova06:55
openstackgerritMerged openstack/nova master: Add api-ref for os-quota-class-set APIs  https://review.openstack.org/46793806:55
*** markus_z has joined #openstack-nova06:57
*** markvoelker has joined #openstack-nova06:58
*** belmoreira has joined #openstack-nova06:59
*** bhagyashri_s has quit IRC07:00
*** abalutoiu has joined #openstack-nova07:02
*** sshwarts has joined #openstack-nova07:03
*** tesseract has joined #openstack-nova07:04
*** tesseract-RH has joined #openstack-nova07:04
*** tesseract has quit IRC07:04
*** tesseract-RH has quit IRC07:04
*** tesseract has joined #openstack-nova07:05
*** vladikr has quit IRC07:06
*** slaweq has joined #openstack-nova07:07
*** slaweq_ has joined #openstack-nova07:10
*** slaweq has quit IRC07:12
*** abalutoiu_ has joined #openstack-nova07:12
*** chenying_ has joined #openstack-nova07:12
*** slaweq_ has quit IRC07:14
*** damien_r has joined #openstack-nova07:14
openstackgerritTakashi NATSUME proposed openstack/nova master: api-ref: Add X-Openstack-Request-Id description  https://review.openstack.org/47484707:15
*** abalutoiu has quit IRC07:16
*** chenying has quit IRC07:16
*** vladiskuz has quit IRC07:17
*** edmondsw has joined #openstack-nova07:17
*** damien_r has quit IRC07:18
*** mkucia has quit IRC07:18
*** damien_r has joined #openstack-nova07:18
*** edmondsw has quit IRC07:21
*** mkucia has joined #openstack-nova07:22
*** silvrax has quit IRC07:27
*** yamamoto has quit IRC07:29
*** _pewp_ has quit IRC07:30
*** markvoelker has quit IRC07:30
*** _pewp_ has joined #openstack-nova07:33
*** alexchadin has joined #openstack-nova07:33
*** yamamoto has joined #openstack-nova07:34
*** jpena|off is now known as jpena07:34
openstackgerritTakashi NATSUME proposed openstack/nova master: Use URIOpt  https://review.openstack.org/47921507:37
openstackgerritSilvan Kaiser proposed openstack/nova master: [WIP] Add truncate for images if prealloc is true  https://review.openstack.org/48046407:42
*** frickler_ is now known as frickler07:44
*** ralonsoh has joined #openstack-nova07:46
*** yamamoto has quit IRC07:47
openstackgerritTakashi NATSUME proposed openstack/nova master: Stop using mox stubs in test_console_auth_tokens.py  https://review.openstack.org/47737407:52
*** yamamoto has joined #openstack-nova07:53
*** mkucia has quit IRC07:55
*** mkucia has joined #openstack-nova07:55
*** moshele has quit IRC07:55
*** trinaths has quit IRC07:58
*** zzzeek has quit IRC08:00
*** zzzeek has joined #openstack-nova08:01
*** avolkov` has joined #openstack-nova08:01
*** VAhl has joined #openstack-nova08:10
*** slaweq has joined #openstack-nova08:10
*** slaweq has quit IRC08:15
*** mlakat has quit IRC08:16
*** lucas-afk is now known as lucasagomes08:18
*** klipka_ is now known as klipka08:22
*** slaweq has joined #openstack-nova08:23
*** slaweq has quit IRC08:23
*** mlakat has joined #openstack-nova08:24
*** slaweq has joined #openstack-nova08:25
*** abalutoiu_ is now known as abalutoiu08:26
*** markvoelker has joined #openstack-nova08:27
*** efoley has joined #openstack-nova08:31
*** zhurong has quit IRC08:32
*** litao__ has joined #openstack-nova08:32
*** zhurong has joined #openstack-nova08:39
openstackgerritNaichuan Sun proposed openstack/nova master: xenapi: Exception Error logs shown in Citrix XenServer CI  https://review.openstack.org/47843708:41
*** artom has joined #openstack-nova08:46
*** thorst has joined #openstack-nova08:48
*** tuanluong has joined #openstack-nova08:49
openstackgerritZhenyu Zheng proposed openstack/nova master: Support tag instances when boot(3/4)  https://review.openstack.org/45959308:50
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for RP traits  https://review.openstack.org/47455008:53
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for allocations  https://review.openstack.org/47093308:53
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for usages  https://review.openstack.org/48056308:53
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for RP usages  https://review.openstack.org/45010508:53
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for RP allocations  https://review.openstack.org/45055008:53
*** thorst has quit IRC08:53
*** takedakn has joined #openstack-nova08:57
openstackgerritTakashi NATSUME proposed openstack/nova master: Stop using mox stubs in test_console_auth_tokens.py  https://review.openstack.org/47737408:59
*** yamamoto has quit IRC09:00
*** markvoelker has quit IRC09:02
*** yamamoto has joined #openstack-nova09:05
*** andymccr_ is now known as andymccr09:11
*** slaweq has quit IRC09:12
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Make placement_api_docs.py failing  https://review.openstack.org/48092409:12
*** slaweq has joined #openstack-nova09:12
*** _jarvis has joined #openstack-nova09:13
*** slaweq_ has joined #openstack-nova09:13
*** jangutter has quit IRC09:13
*** abalutoiu has quit IRC09:13
*** yamamoto has quit IRC09:16
*** slaweq has quit IRC09:17
*** trinaths has joined #openstack-nova09:17
*** kaisers_ has joined #openstack-nova09:19
openstackgerritAndreas Scheuring proposed openstack/nova master: DO NOT MERGE! Dummy patch  https://review.openstack.org/47818609:20
*** slaweq_ is now known as slaweq09:21
*** slaweq has quit IRC09:26
*** yamamoto has joined #openstack-nova09:29
*** slaweq has joined #openstack-nova09:36
bauzassfinucan: very old bug https://review.openstack.org/#/c/391060/09:38
stephenfinbauzas: I feel like I already reviewed that?09:38
bauzasI know, you did +109:39
bauzasbut it was a long time ago :p09:39
stephenfinbauzas: Was there something similar to that a few weeks back though?09:40
stephenfinwith requestspec objects09:40
stephenfinOh yeah, commit e211fca55a11c80058d5d78e31dc3ad466d7edfd09:41
*** abalutoiu has joined #openstack-nova09:41
stephenfinCool. I'll take a look once I've finished resolving the merge conflict on https://review.openstack.org/#/c/415921/09:41
openstackgerritAlex Szarka proposed openstack/nova master: Transform instance-live_migration_post notification  https://review.openstack.org/48011909:45
*** slaweq has quit IRC09:45
*** slaweq has joined #openstack-nova09:45
*** igordcard has quit IRC09:48
*** igordcard has joined #openstack-nova09:48
*** takashin has left #openstack-nova09:48
*** thorst has joined #openstack-nova09:49
*** slaweq has quit IRC09:50
*** dixiaoli has quit IRC09:51
*** yamamoto has quit IRC09:53
*** thorst has quit IRC09:54
*** markvoelker has joined #openstack-nova09:59
bauzassorry, was afk for getting my daughter at school09:59
*** yassine has joined #openstack-nova10:00
*** yassine has quit IRC10:00
*** yassine has joined #openstack-nova10:01
*** yamamoto has joined #openstack-nova10:01
*** cdent has joined #openstack-nova10:11
*** sambetts|afk is now known as sambetts10:12
_jarvisneed help in this bug10:17
_jarvishttps://bugs.launchpad.net/nova/+bug/169825310:17
openstackLaunchpad bug 1698253 in OpenStack Compute (nova) "InvalidInput: Invalid input received: vif type bridge not supported" [Undecided,In progress] - Assigned to PRAVIN (jarvisopenstack)10:17
openstackgerritBalazs Gibizer proposed openstack/nova master: Add sample test for instance audit  https://review.openstack.org/48095510:19
_jarvisthese was working in liberity10:19
openstackgerritStephen Finucane proposed openstack/nova master: placement: adds REST API for nested providers  https://review.openstack.org/38480710:20
openstackgerritStephen Finucane proposed openstack/nova master: placement: allow filter providers in tree  https://review.openstack.org/37721510:20
openstackgerritStephen Finucane proposed openstack/nova master: placement: set/check if inventory change in tree  https://review.openstack.org/47057510:20
openstackgerritStephen Finucane proposed openstack/nova master: placement: integrate ProviderTree to report client  https://review.openstack.org/41592110:20
openstackgerritStephen Finucane proposed openstack/nova master: placement: update client to set parent provider  https://review.openstack.org/38569310:20
openstackgerritStephen Finucane proposed openstack/nova master: placement: add nested resource providers  https://review.openstack.org/37713810:20
openstackgerritStephen Finucane proposed openstack/nova master: placement: add ProviderTree.is_inventory_empty  https://review.openstack.org/48095710:20
*** moshele has joined #openstack-nova10:21
*** liujiong has quit IRC10:22
*** tbachman has joined #openstack-nova10:22
*** liujiong has joined #openstack-nova10:23
*** _jarvis has quit IRC10:24
*** alexchadin has quit IRC10:24
*** smatzek has joined #openstack-nova10:31
*** smatzek has quit IRC10:32
*** markvoelker has quit IRC10:32
*** smatzek has joined #openstack-nova10:32
*** yangyape_ has quit IRC10:35
*** mkucia has quit IRC10:36
*** mkucia has joined #openstack-nova10:36
*** slaweq has joined #openstack-nova10:41
*** slaweq has quit IRC10:41
*** slaweq has joined #openstack-nova10:42
*** liujiong has quit IRC10:42
*** bkopilov has quit IRC10:45
*** slaweq has quit IRC10:46
*** slaweq has joined #openstack-nova10:46
*** slaweq_ has joined #openstack-nova10:47
*** lpetrut has joined #openstack-nova10:50
*** slaweq_ has quit IRC10:51
*** edmondsw has joined #openstack-nova10:53
*** slaweq has quit IRC10:53
*** sanfern has quit IRC10:54
*** slaweq has joined #openstack-nova10:54
*** edmondsw has quit IRC10:58
*** slaweq has quit IRC10:58
*** slaweq has joined #openstack-nova11:00
*** vladikr has joined #openstack-nova11:00
*** slaweq has quit IRC11:00
*** jpena is now known as jpena|lunch11:00
*** slaweq has joined #openstack-nova11:01
*** slaweq has quit IRC11:02
*** markvoelker has joined #openstack-nova11:02
*** slaweq has joined #openstack-nova11:02
openstackgerritAlex Szarka proposed openstack/nova master: Add method for verify multiple versioned notifications  https://review.openstack.org/46552611:05
openstackgerritAlex Szarka proposed openstack/nova master: Transform instance.exists notification  https://review.openstack.org/40366011:05
*** liujiong has joined #openstack-nova11:06
*** slaweq has quit IRC11:07
*** thorst has joined #openstack-nova11:12
*** thorst has quit IRC11:13
*** smatzek has quit IRC11:15
*** Guest5975 has joined #openstack-nova11:15
*** smatzek has joined #openstack-nova11:15
*** thorst has joined #openstack-nova11:18
*** thorst_ has joined #openstack-nova11:19
*** slaweq has joined #openstack-nova11:19
openstackgerritBalazs Gibizer proposed openstack/nova master: Make notification publisher_id consistent  https://review.openstack.org/48098411:20
*** thorst has quit IRC11:22
*** Guest5975 has quit IRC11:22
*** mkucia has quit IRC11:22
*** mkucia has joined #openstack-nova11:23
*** sree has joined #openstack-nova11:28
*** slaweq has quit IRC11:29
openstackgerritArundhati Surpur proposed openstack/python-novaclient master: Removed extra 'method' from the NOTE  https://review.openstack.org/48098811:30
openstackgerritBéla Vancsics proposed openstack/nova master: Transform keypair.import notification  https://review.openstack.org/46751411:33
*** sree has quit IRC11:34
*** sree has joined #openstack-nova11:36
*** kaisers_ has quit IRC11:37
alex_xubauzas: another fix for placement https://review.openstack.org/#/c/480130/, this should be easy :)11:41
*** litao__ has quit IRC11:42
*** sree has quit IRC11:42
*** sree has joined #openstack-nova11:43
*** thorst_ has quit IRC11:44
openstackgerritBalazs Gibizer proposed openstack/nova master: Use enum value instead of string service name  https://review.openstack.org/47653811:51
*** jaypipes has joined #openstack-nova11:52
*** kaisers_ has joined #openstack-nova11:56
*** iceyao has quit IRC11:59
*** iceyao has joined #openstack-nova11:59
openstackgerritOpenStack Proposal Bot proposed openstack/nova master: Imported Translations from Zanata  https://review.openstack.org/47709112:01
*** kaisers_ has quit IRC12:01
*** alexchadin has joined #openstack-nova12:01
*** kaisers_ has joined #openstack-nova12:02
*** yangyapeng has joined #openstack-nova12:02
*** jpena|lunch is now known as jpena12:03
openstackgerritsudhir agarwal proposed openstack/nova master: Replaces uuid.uuid4 with uuidutils.generate_uuid()  https://review.openstack.org/48100712:04
*** sanfern has joined #openstack-nova12:06
*** kaisers_ has quit IRC12:06
*** mkucia has quit IRC12:07
openstackgerritBalazs Gibizer proposed openstack/nova master: Add BDM to InstancePayload  https://review.openstack.org/44877912:07
*** kaisers_ has joined #openstack-nova12:08
*** jmlowe has joined #openstack-nova12:08
bauzasalex_xu: heh12:09
*** tuanluong has quit IRC12:10
*** kaisers_ has quit IRC12:12
*** edmondsw has joined #openstack-nova12:14
*** oanson has quit IRC12:15
openstackgerritBalazs Gibizer proposed openstack/nova master: Add sample test for instance audit  https://review.openstack.org/48095512:15
*** jmlowe has quit IRC12:16
openstackgerritAndrey Kurilin proposed openstack/python-novaclient master: Fix cropping the endpoint url  https://review.openstack.org/47981812:17
*** ratailor has quit IRC12:19
openstackgerritzhangdaolong proposed openstack/python-novaclient master: Fix the inappropriate parameter name  https://review.openstack.org/48082612:19
*** sree has quit IRC12:19
*** oanson has joined #openstack-nova12:20
*** sree has joined #openstack-nova12:23
*** sree_ has joined #openstack-nova12:25
*** sree_ is now known as Guest6337712:25
*** sree has quit IRC12:28
*** Guest63377 has quit IRC12:29
*** sree has joined #openstack-nova12:30
*** bhagyashris has joined #openstack-nova12:32
jaypipesralonsoh: no idea what the deal is on that "missing link" unit test that's failing on your openstack/releases patch for os-traits 0.3.2....12:33
*** liverpooler has joined #openstack-nova12:34
ralonsohjaypipes: uhmmm I'll check this now. Thanks for the heads up12:34
*** crushil has quit IRC12:34
jaypipesralonsoh: yeah, I have no idea why that is failing. :(12:35
*** crushil has joined #openstack-nova12:35
cdentmorning jaypipes: i've spiked that gabbi feature you were looking for while doing allocation_candates: https://github.com/cdent/gabbi/pull/21512:36
*** liverpooler has quit IRC12:36
*** liverpooler has joined #openstack-nova12:37
jaypipescdent: w00tness. :)12:37
cdenti'm not sure it is quite good enough yet, so if you can looksee that'd be keen12:37
jaypipescdent: though, to be honest, the feature I'd *really* love is to be able to represent in YAML the expected HTTP response without using JSONPath at all.12:37
cdenti'm not sure what you mean by that12:38
jaypipescdent: I mean, I'd like to be able to something like:12:38
jaypipeshttp_response_expect:12:38
jaypipes  allocation_requests:12:38
jaypipes   - allocations:12:38
jaypipes     resource_provider:12:38
jaypipes       uuid: <blah>12:39
jaypipesetc etc12:39
jaypipescdent: make sense?12:39
*** cNilesh has quit IRC12:39
cdentfull response, or piecemeal?12:39
jaypipescdent: would be awesome to have options.12:39
*** kaisers_ has joined #openstack-nova12:39
jaypipescdent: like http_response_full_expect: or something like that which would fail if not exact12:39
jaypipescdent: and otherwise, just fail if the listed parts of the http_response_expect: were not included in the response.12:40
cdentpiecemeal is hard because you need some way to say "this" allocations, and that's what led to the json paths12:40
jaypipesunderstood.12:40
jaypipescode is hard.12:40
jaypipes:P12:40
cdentthe fully query stuff see this thread: http://lists.openstack.org/pipermail/openstack-dev/2017-July/119286.html12:40
*** acormier has joined #openstack-nova12:42
cdentin any case, you can fake the full stuff by matching the root ($) key, see last half of: https://gabbi.readthedocs.io/en/latest/jsonpath.html12:42
*** mdrabe has joined #openstack-nova12:42
*** mdnadeem has quit IRC12:42
jaypipescdent: sure, but that's ugly as f**k :)12:42
cdentthat looks almost exactly what you have above (which is also ugly as fuck)12:43
jaypipesok, I'm done.12:43
cdentheh12:43
*** acormier has quit IRC12:44
*** pchavva has joined #openstack-nova12:44
*** lyan has joined #openstack-nova12:44
jaypipescdent: oh, I see you're referring to the final example in that page12:44
cdentyes12:44
jaypipescdent: and not the one above it..12:44
*** acormier has joined #openstack-nova12:44
cdentyes12:44
cdentyeah, the filter stuff is ghastly, I agree12:45
jaypipescdent: didn't know I could do that.12:45
cdentit just falls out of the nature of json path '$' is 'everything'12:45
jaypipescdent: that would work. though a little hackery would allow one to remove the need for the $:12:45
jaypipescdent: if, say, Gabbit saw a "response_yaml_exact" tag in the gabbit.12:46
*** mkucia has joined #openstack-nova12:46
cdentjaypipes: if you read around in that thread, especially the message I linked to, there's some discussion on options for how to do it. A little more discussino ought to lead to some reasonable outcomes12:46
cdentthe main thrust of the thread is to be able to read in files that are the json, but it's the same deal in the abstract12:47
bauzascdent: out of curiosity because I had the problem on Monday, how can I introspect a gabbi functional test?12:47
cdentbauzas: depends on the kind of introspection you want to be doing, but you can make an individual test 'verbose' with 'verbose: True' but frequently the output will be swallowed, depending on the environment12:48
*** acormier has quit IRC12:49
cdentanother option is to add a response_strings:\n- something that won't match12:49
cdentand then it will fail and you can see the response12:49
bauzascdent: basically debugging12:49
bauzasie. pdb'ing12:49
bauzassince tox can't do that, I generally use testtools.run directly12:49
bauzasbut since placement tests are generated by an helper, I can't directly use it12:50
bauzasbecause testtools.run can't find the test I wanted to debug12:50
cdentsubunit.run can12:50
* cdent checks on whether testools.run can12:50
bauzasa-ha!12:51
bauzasat least "python -m testtools.run discover --load-list my-list" is not possible12:51
*** eharney has joined #openstack-nova12:52
*** takedakn has quit IRC12:53
*** trinaths has left #openstack-nova12:54
*** jmlowe has joined #openstack-nova12:57
*** esberglu has joined #openstack-nova12:58
*** sree has quit IRC12:59
*** sree has joined #openstack-nova13:01
openstackgerritStephen Finucane proposed openstack/nova master: Add '_has_dns_extension' function  https://review.openstack.org/48067513:04
openstackgerritStephen Finucane proposed openstack/nova master: Always refresh cache when checking extensions  https://review.openstack.org/48067413:04
openstackgerritStephen Finucane proposed openstack/nova master: metadata: Don't use nova-net DNS values with neutron  https://review.openstack.org/48061613:04
openstackgerritStephen Finucane proposed openstack/nova master: Use dns_domain value from neutron in os-vif wiring  https://review.openstack.org/48067613:04
*** sanfern has quit IRC13:04
*** slaweq has joined #openstack-nova13:04
*** sanfern has joined #openstack-nova13:04
*** slaweq has quit IRC13:04
*** slaweq has joined #openstack-nova13:05
*** slaweq has quit IRC13:08
*** 7GHABESXC has quit IRC13:10
*** mriedem has joined #openstack-nova13:11
openstackgerritStephen Finucane proposed openstack/nova master: metadata: Don't use nova-net DNS values with neutron  https://review.openstack.org/48061613:12
*** alexchadin has quit IRC13:13
*** sree has quit IRC13:15
*** sree has joined #openstack-nova13:16
stephenfinmriedem, sean-k-mooney: Could either of you explain to me how 'os_vif.objects.network.Network' relates to 'nova.network.model.Network'?13:16
stephenfinsorry - jaypipes ^13:16
stephenfinI thought we were using the former in [1], but it seems we're not. What's the whole point of the os_vif version if we define our own model? [1] https://review.openstack.org/#/c/480676/13:17
jaypipesstephenfin: the idea is to eventually get rid of the nova model.13:17
jaypipesstephenfin: and have Neutron just return a serialized os-vif object.13:17
jaypipesstephenfin: we're gradually getting there. but will be a while before we do.13:18
stephenfinjaypipes: I'm guessing that means the 'neutron.objects.network.Network' model will go away then too?13:18
stephenfinIdeally13:18
*** gouthamr has joined #openstack-nova13:18
jaypipesstephenfin: well, that may store some internal (to Neutron) stuff, so not sure...13:18
stephenfinWell, maybe not, but neutron will translate 'neutron.objects.network.Network' -> 'os_vif.objects.network.Network' for sending over the wire13:18
jaypipesstephenfin: os-vif objects are intended to be the shared model between nova and neutron.13:19
jaypipesstephenfin: ya, zactly.13:19
*** lucasxu has joined #openstack-nova13:19
*** sree has quit IRC13:20
cdentbauzas: you can do something like the following. part of the trick is getting the name of the test right in the face of your discover path:13:20
cdent.tox/functional/bin/python -m subunit.run discover -v nova/tests/functional/api/openstack/placement --load-list <(echo test_placement_api.allocations_check_usages.test_request) | subunit-trace13:20
stephenfinjaypipes: Gotcha. Thanks for the info :)13:21
*** zhurong has quit IRC13:22
bauzascdent: okay13:22
bauzasI need to look more at the subunit framework13:23
openstackgerritStephen Finucane proposed openstack/nova master: metadata: Don't use nova-net DNS values with neutron  https://review.openstack.org/48061613:23
openstackgerritStephen Finucane proposed openstack/nova master: Store dns_domain value from neutron  https://review.openstack.org/48067613:23
cdentthat works for testtools.run as well. if you s/subunit/testtools/ is all good13:23
*** mkucia has quit IRC13:23
cdent(and get rid of subunit-trace)13:23
cdentbauzas: then I guess you'd hork pdb in there somewhere. What would your normal of doing that be?13:25
*** catintheroof has joined #openstack-nova13:25
bauzasI usually pdb.set_trace() somewhere and then I just python -m testtools.run the UT I wanna check13:25
stephenfinbauzas: RE: https://review.openstack.org/#/c/391060, I'm going to leave that til mriedem and melwitt come back to it, as they'd similar feedback and it's unchanged since13:27
*** baoli has joined #openstack-nova13:27
*** igordcard has quit IRC13:28
*** thorst has joined #openstack-nova13:29
*** igordcard has joined #openstack-nova13:29
*** sree has joined #openstack-nova13:30
*** yamamoto has quit IRC13:33
*** slaweq has joined #openstack-nova13:33
*** yamamoto has joined #openstack-nova13:33
cdentbauzas: heh, turns out I wrote a faq about this a while ago: https://gabbi.readthedocs.io/en/latest/faq.html#is-gabbi-only-for-testing-python-based-apis13:34
cdentwhoops, wrong link: https://gabbi.readthedocs.io/en/latest/faq.html#how-do-i-run-just-one-test13:34
*** catintheroof has quit IRC13:36
jaypipestox -efunctional && ./jay-get-breakfast.bash13:37
*** catintheroof has joined #openstack-nova13:37
openstackgerritRodolfo Alonso Hernandez proposed openstack/nova master: Add Neutron port capabilities to devspec in request  https://review.openstack.org/45177713:37
*** moshele has quit IRC13:39
*** sree_ has joined #openstack-nova13:40
*** sanfern has left #openstack-nova13:41
*** sree_ is now known as Guest2377013:41
*** kaisers_ has quit IRC13:41
*** sree has quit IRC13:42
*** krtaylor has quit IRC13:42
*** jwcroppe has quit IRC13:43
*** slaweq_ has joined #openstack-nova13:48
bauzasstephenfin: fair enough13:48
*** slaweq has quit IRC13:49
bauzascdent: cool, I looked at the gabbi docs, but didn't find it13:49
ildikovjaypipes: it could almost include breakfast and lunch... :)13:50
*** slaweq has joined #openstack-nova13:50
dansmithjaypipes: that will get breakfast after the run, I think you want (tox -e functional&); ./jay-get-breakfast.sh13:51
*** _jarvis has joined #openstack-nova13:51
*** edleafe- is now known as edleafe13:52
*** sree has joined #openstack-nova13:52
*** slaweq_ has quit IRC13:53
*** Guest23770 has quit IRC13:53
*** krtaylor has joined #openstack-nova13:56
*** slaweq has quit IRC13:57
*** baoli has quit IRC13:59
mriedemstephenfin: what happened to sfinucan?14:00
*** hongbin has joined #openstack-nova14:01
stephenfinmriedem: I wanted cross-promotional, deal mechanics, revenue streams, jargon synergy14:01
*** jwcroppe has joined #openstack-nova14:01
*** baoli has joined #openstack-nova14:01
stephenfini.e. I use 'stephenfin' everywhere else and wanted to switch here too14:01
mriedemgah14:01
* cdent hires stephenfin as his social media consultant14:02
stephenfinplus there's an 'e' missing from 'sfinucan' which has resulted in more than one incorrectly addressed email14:02
cdentI'm suffering from brand dilution with this cdent/anticdent thing14:03
stephenfin(that is also my Red Hat email alias, but not for long)14:03
mriedemdansmith: i'm in a quandary if you have 5 minutes14:03
*** slaweq has joined #openstack-nova14:03
*** slaweq has quit IRC14:03
mriedemotherwise i shall take it to the ML14:03
dansmithmriedem: okay14:03
stephenfincdent: You should hire Liz Lemon - she's much better than me at this stuff https://www.youtube.com/watch?v=aocZo3oeNxw14:04
*** slaweq has joined #openstack-nova14:04
mriedemdansmith: the extend volume change in nova - https://review.openstack.org/#/c/454322/ - i started writing a tempest test for that yesterday, since there is also a cinder change,14:04
*** sree has quit IRC14:04
mriedemthe user (non-admin) can extend their volume in cinder, so like 1G->2G,14:04
cdentstephenfin: she's probably busy14:04
*** sree has joined #openstack-nova14:05
mriedemcinder will call the os-server-external-events API telling nova the volume attached to a server was resized,14:05
mriedemwe send that down to the compute to fiddle the os-brick bits (i'm channeling johnthetubaguy-speak here)14:05
mriedem"fiddling bits" is a british term right?14:05
*** awaugama has joined #openstack-nova14:05
*** pkoniszewski has quit IRC14:05
dansmithmriedem: I believe it is yes14:05
mriedemso i asked that an instance action get tracked on the nova side since this is all async,14:05
mriedemthat's done, all well and good,14:05
edleafestephenfin: I settled on 'edleafe' long ago for all my accounts. Not enough brain cells to keep track of different handles14:06
mriedemproblem comes in on the api user side trying to sort out when the actual operation is done on the nova side,14:06
edleafestephenfin: plus all the branding synergy, of course14:06
mriedemi was relying on the instance action events in tempest - however, the events are only shown for admin users14:06
stephenfinedleafe: Yup, my problem exactly. Plus it helps with branding14:06
stephenfinjinx :)14:06
edleafe:)14:06
mriedemso we can get tempest to work since we have admin and non-admin creds, but that's a hack,14:06
mriedemso i was thinking, we should probably set a task_state on the instance in this case,14:06
dansmithmriedem: UGH14:07
mriedemso the api user can poll the task state change to know when the nova side is done14:07
mriedemi know14:07
dansmithmriedem: that's not really what task_state is for, IMHO, so it would be a bad choice14:07
dansmiththat and it will lock us from doing anything like a shutdown or something if that gets hung14:07
mriedemwell, unless there is something else, it's task_state or instance actions,14:07
dansmithwhich is fairly icky14:07
mriedemand as noted, the action events are admin-only14:07
mriedemwell,14:07
dansmithwell, vm_state has fewer issues with that,14:08
dansmithbut I'm loathe to alter any of them really14:08
mriedemi considered that an upside - that someone can't stop your instance while it's having the volume extended14:08
mriedembut,14:08
dansmithso they can see the action but not the events?14:08
mriedemwe also can't accept the call from cinder if the task_state is already set either, b/c we'd get UnexpectedTaskStateERror14:08
mriedemdansmith: correct14:08
mriedemhttps://review.openstack.org/#/c/480792/14:09
dansmithmriedem: does the action get the finish_time set when it's done?14:09
mriedemnope14:09
mriedemthat's on the event14:09
* dansmith knows dangerously little about this14:09
dansmithmriedem: not according to the object model14:09
sean-k-mooneystephenfin: os_vif.objects.network.Network is used to pass info the os-vif plugins about the network such as mtu, it is created from nova.network.model.Network. nova.network.model.Network is used to pass network related info that will be needed to influenc the libvirt xml generation. you only need to modify nova.network.model.Network so that you can populate the metatda for cloud init14:09
dansmithmriedem: https://github.com/openstack/nova/blob/master/nova/objects/instance_action.py#L39-L3914:09
*** hshiina has quit IRC14:10
mriedemhmm, i don't know if anything calls action_finish or finish,14:10
mriedemlooking14:10
mriedemi know we don't expose finish_time in the api for the action https://developer.openstack.org/api-ref/compute/?expanded=list-actions-for-server-detail#servers-actions-servers-os-instance-actions14:11
mriedemonly the events14:11
mriedembut that could easily be changed14:11
dansmithheh14:11
sean-k-mooneystephenfin: we basicaly need to create os_vif.objects.network.Network so that there would not be a circular dependency between os-vif and nova.14:11
stvnoyes1good morning mriedem: I updated the live migrate review, addressing your comments. Please take a look when you get a chance. Thanks. - https://review.openstack.org/#/c/463987/14:11
*** kaisers_ has joined #openstack-nova14:11
dansmithmriedem: I wonder why that is, but it seems like that'd be a thing you look for if you're using the action to identify the long-running thing14:11
mriedemdansmith: yeah so nothing calls InstanceAction.action_finish / finish today14:12
mriedemso we have the finish-time field in the data model, but nothing sets it14:12
mriedemstvnoyes1: ok14:13
dansmithhrm, that seems weird14:13
dansmithand unfortunate14:13
mriedemi think i asked alaski about this a long time ago,14:13
mriedemand the tasks api came up14:13
dansmithmriedem: so, exposing events is one way I guess, as long as you filter out traceback for the non-admins, but that's a whole thing14:14
mriedemand then a black hole opened somewhere14:14
dansmithhehe14:14
mriedemdansmith: right, that's another option,14:14
*** pkoniszewski has joined #openstack-nova14:14
mriedemexpose events but filter the traceback like we do for instance fault14:14
dansmithI really think using one of the states to handle this is just asking for trouble, but ...14:14
dansmithyeah14:14
openstackgerritBalazs Gibizer proposed openstack/nova master: Add sample test for instance audit  https://review.openstack.org/48095514:14
mriedemi would prefer not to complicate this with a new task_state14:14
*** arahal_ has joined #openstack-nova14:14
mriedembecause at that point,14:14
mriedemusing the os-server-external-events api for this is really overloading it's function14:15
dansmithmy concern with a new state is destabilizing everything else with a new task state, which doesn't expose itself until it's out in the wild and someone finds a dead end in the "state machine"14:15
*** vladikr_ has joined #openstack-nova14:15
mriedemyeah so to recap options,14:15
mriedem1. do nothing - end user can see the action show up for the instance but after that, shrug - maybe they can check something by ssh'ing into the guest, idk,14:16
mriedem2. start setting the finish_time on the action record and expose that out of the instance actions api (in the same microversion i suppose)14:16
*** kaisers_ has quit IRC14:16
mriedem3. expose the events but hide the traceback for non-admins by default (in a microversion)14:16
*** acormier has joined #openstack-nova14:17
dansmith4. break the "state machine"14:17
mriedemi was intentionally excluding that one14:17
dansmithack14:17
mriedem#3 is probably the easiest14:18
*** vladikr has quit IRC14:18
*** links has quit IRC14:18
mriedem#2 would be new plumbing since we haven't ever "finished" an action record before,14:18
mriedemso i don't know what dragons are there14:18
*** slaweq_ has joined #openstack-nova14:18
dansmithmight also be confusing because people will see all their actions suddenly look unfinished14:18
dansmithlike, years-old actions if they're still there14:18
mriedemyeah,14:18
mriedemon that note,14:18
dansmithwe couldfix that, but we'd need to finish all our actions everywhere going forward14:18
mriedemmy musing last night led to something like, consider the action finished if it had at least one event and all events had a finish_time set,14:19
mriedembut there is a window where that could be wrong14:19
dansmithyeah, it would flap back and forth14:19
mriedemassuming we have any actions with >1 event14:19
dansmithbecause we don't declare all our events ahead of time14:19
dansmithwould be nice if we did, but..14:19
mriedemsure, that's tasks api14:19
mriedemi guess14:19
dansmithright14:20
mriedemwatch your footing14:20
dansmithheh14:20
mriedemso i'm thinking "expose the events but hide the traceback for non-admins by default (in a microversion)" is the winner14:20
dansmithI guess so14:20
dansmithI like #1, but... yeah :)14:20
mriedem"winner"14:20
mriedemdo quotes help?14:21
dansmithyeah, hard to feel like you won, when that's the solution14:21
dansmithheh14:21
mriedemi also don't feel like working this into the same microversion, since it will clutter up an already large change,14:21
mriedembut also not sure i want to create a new separate microversion just for that14:21
mriedemalright, anyway, this was helpful14:22
dansmithyeah, I dunno..  would be nice to save a microversion, but reading the history, it'll be like "this volume thing and oh also we exposed this other random thing, kthxbai"14:22
sean-k-mooneystephenfin: by the way if you have not seen  https://review.openstack.org/#/c/390513/ and https://review.openstack.org/#/c/390512/ they are releated to the issue your trying to solve14:22
*** esberglu has quit IRC14:22
stephenfinsean-k-mooney: I think I saw one but not the other. I'll take a look now :)14:23
*** slaweq_ has quit IRC14:23
stephenfinsean-k-mooney: meanwhile, I _think_ this is correct, but I'm not sure if it's even necessary given your comments about not using a fqdn for hostname https://review.openstack.org/#/c/480676/14:24
mriedemdansmith: that's basically how the services/hypervisors uuid api changes read out in the rest api version history and release notes :)14:24
dansmithmriedem: heh14:24
mriedem"take and return uuid instead of id, plus a whole bunch of other shit"14:24
sean-k-mooneystephenfin: the first one is proposing a single api endpoint to return all the info to populate the metadat. the second is the nova/neutont negociation sepc where i would like to use os vif as the serialisation format14:24
mriedem500 microversions also sucks14:24
dansmithyeah14:24
*** esberglu has joined #openstack-nova14:25
sean-k-mooneystephenfin: lookin at it now. did you add the dns_domain field in the previous patches14:26
stephenfinsean-k-mooney: I don't think it's necessary - that model does weird stuff with a 'meta' field that's mostly autopopulated14:27
stephenfinsean-k-mooney: Look at the patch that added 'mtu' support14:27
*** markus_z has quit IRC14:28
openstackgerritStephen Finucane proposed openstack/nova master: libvirt: fix memory locking limit  https://review.openstack.org/47263314:30
*** slaweq has quit IRC14:30
jaypipesdansmith, ildikov: :)14:30
mriedemmgagne: fyi in case you haven't been following along  https://review.openstack.org/#/c/454322/27/nova/compute/api.py14:31
mriedemmgagne: let's talk about how you'd like to proceed - if you want me to work on the os-instance-actions api change in there14:31
*** slaweq has joined #openstack-nova14:32
openstackgerritBalazs Gibizer proposed openstack/nova master: Add BDM to InstancePayload  https://review.openstack.org/44877914:32
*** vvargaszte has quit IRC14:36
*** foutatoro has joined #openstack-nova14:39
foutatorohi all, I'm trying to create KVM instance with ubuntu cloud images used in Openstack with virt-install but I always get the error "No bootable device found".14:40
foutatorocan someone help me to solve that please ?14:41
openstackgerritMerged openstack/os-vif master: Rehome unit tests to ``tests\unit`` folder  https://review.openstack.org/47662314:42
openstackgerritMerged openstack/os-vif master: Use ``assert_has_calls`` to check function calls  https://review.openstack.org/47746914:42
*** Swami has joined #openstack-nova14:53
*** vladikr_ has quit IRC14:54
*** vladikr_ has joined #openstack-nova14:55
jaypipeswhile `tox -epy27,pep8`; do process_emails.sh; done14:57
*** liujiong has quit IRC14:57
mriedemildikov: so the cinder v3 api changes are stacked such that swap volume should get tested in the top patch which does the new style attach, right?14:58
*** catintheroof has quit IRC14:58
mriedemildikov: because there is a swap volume test in tempest, but i don't think it runs in the normal tempest dsvm jobs because it's marked as 'slow'14:58
ildikovmriedem: it should run as it was failing until I added the swap patch in the chain14:59
mriedemok i'll take a look14:59
ildikovmriedem: you can take a thorough look at both the dependencies and on the attach patch15:00
ildikovjust to keep everyone busy :)15:00
*** catintheroof has joined #openstack-nova15:02
jaypipesmriedem: ralonsoh is looking for this (yet unmerged) patch: https://review.openstack.org/#/c/466040/15:06
*** psachin has quit IRC15:07
*** READ10 has joined #openstack-nova15:07
jaypipesmriedem: but you're right to say that 0.3.2 doesn't include that (since obvi it's not merged yet)15:07
jaypipesI'm approving that now. it needed rebasing after the unit test re-org15:07
openstackgerritsahid proposed openstack/nova master: libvirt: fix memory locking limit  https://review.openstack.org/47263315:07
mriedemjaypipes: ok15:08
mriedemsomething didn't smell right15:08
jaypipesmriedem: ack15:08
jaypipesmriedem: there's also an os-vif thing too :)15:08
mriedemplus this monster https://review.openstack.org/#/c/449257/15:09
jaypipesmriedem: well, yeah, but that depends on all the others :)15:09
mriedemright15:09
mriedemi see a few os-vif changes,15:09
mriedemnot sure which are related, they are all marked as bug fixes15:09
*** belmoreira has quit IRC15:11
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for RP traits  https://review.openstack.org/47455015:16
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for traits  https://review.openstack.org/47418615:16
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for allocations  https://review.openstack.org/47093315:16
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for usages  https://review.openstack.org/48056315:16
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Make placement_api_docs.py failing  https://review.openstack.org/48092415:16
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for RP usages  https://review.openstack.org/45010515:16
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for RP allocations  https://review.openstack.org/45055015:16
openstackgerritAndrey Volkov proposed openstack/nova master: [placement] Add api-ref for allocation_candidates  https://review.openstack.org/48111215:16
*** rdo_ has quit IRC15:16
*** Oku_OS is now known as Oku_OS-away15:21
openstackgerritJay Pipes proposed openstack/nova master: placement: scheduler uses allocation candidates  https://review.openstack.org/47663115:22
openstackgerritJay Pipes proposed openstack/nova master: WIP - placement: claim resources in scheduler  https://review.openstack.org/47663215:22
jaypipesdansmith, mriedem, efried, bauzas: addressed all of your comments on https://review.openstack.org/47663115:24
*** reedip has quit IRC15:24
efriedjust pulling it up, thanks.15:24
openstackgerritSylvain Bauza proposed openstack/nova master: Pass the req_dest fielf of ReqSpec in the filter props  https://review.openstack.org/48111615:25
jaypipesefried: I changed the code style to put every word and paren on its own line, just for you and dansmith.15:25
efriedLove it.15:25
jaypipesheh15:25
dansmithjaypipes: (I hope you are kidding15:27
dansmith)15:27
jaypipesdansmith: no,15:27
jaypipesnot,15:27
jaypipeskidding,15:27
*** foutatoro has quit IRC15:27
jaypipes)15:27
jaypipesdansmith: j15:27
jaypipesk15:27
* dansmith 's head explodes15:28
jaypipesboom.15:28
jaypipesmission accomplished.15:28
*** markmc has quit IRC15:28
mriedemsome day someone will have to explain the kerfuffle from last week about (15:29
mriedemthis15:29
mriedem)15:29
jaypipesmriedem: basically, it makes dansmith and efried want to do this to my head: http://bit.ly/2tl79kj15:30
jaypipesand edleafe :)15:31
bauzasmriedem: dansmith: not sure you remembered our convo yesterday about https://bugs.launchpad.net/nova/+bug/1702454 but I just provided a fix https://review.openstack.org/48111615:32
openstackLaunchpad bug 1702454 in OpenStack Compute (nova) "Transforming the RequestSpec object into legacy dicts doesn't support the requested_destination field" [High,In progress] - Assigned to Sylvain Bauza (sylvain-bauza)15:32
bauzasmriedem: dansmith: targeted for backport to ocata and newton as well15:32
mriedemjaypipes: well, just keep an eye out for when one of them do something similar with a dict or list and then you can drop the gd mfing hammer15:32
jaypipesmriedem: I'm a pacifist.15:33
mriedembauzas: what is a "fielf"?15:33
*** sree has quit IRC15:33
efriedmriedem TL;DR: jaypipes has been indoctrinating himself in golang, where this kind of wasted vspace is acceptable, even encouraged.  Which would be one thing if it matched the style of the code anywhere else in nova, but it doesn't.  For dicts, yes.  For lists, less so, but sometimes.  For method calls, never.15:33
bauzasmriedem: a covfefe15:33
jaypipesmriedem: it's a field that dresses up at Christmas.15:33
edleafeI suspect that jaypipes gets paid by LOC15:34
bauzasthen write Java15:34
mriedembauzas: comments inline15:34
bauzasmriedem: <315:35
mriedemefried: ok, but meh15:35
jaypipesedleafe: erm, definitely not :) https://twitter.com/jaypipes/status/85468049048545689615:35
mriedemi know jay isn't using pycharm, but pycharm does that by default when dropping a line to add params to a method call15:35
jaypipesvimftw15:35
mriedemand some projects i've worked in in openstack actually enforce that format, like manila15:35
mriedemi believe i was -1ed for not doing something like that15:36
mriedemanywho15:36
efriedmriedem I use pycharm and don't even notice that I delete those extraneous newlines :)15:36
efriedJust happens automatically.15:36
efriedyou know, on this side of the keyboard.15:36
bauzasis that really a thing ?15:37
bauzasI mean, does it hurt ?15:37
*** andreas_s has quit IRC15:37
cdentdansmith: you made a sad face in a review about the thing this fixes, does it look good enough to you: https://github.com/cdent/gabbi/pull/21515:37
bauzasI tend to be more concerned by people not using a pattern like (foo,\n)15:37
*** reedip has joined #openstack-nova15:37
bauzasbecause gerrit would modify the line instead of adding a new one when you're adding a new key15:38
gibisfinucan, mriedem: hi! I fixed the comments in https://review.openstack.org/#/c/476538/15:38
mriedemi'm currently in cinder v3 attach mode now, going into tunnel vision15:39
mgagnemriedem: I read your comments. I understand the technical challenge but it starts to fall outside my scope of expertise. I would need someone else to work on this specific task.15:39
mriedemmgagne: ok, i can help work on the instance actions stuff later15:40
mgagnemriedem: re in-use volume extend15:40
mgagnesure, thanks!15:40
*** chyka has joined #openstack-nova15:40
openstackgerritSylvain Bauza proposed openstack/nova master: Pass requested_destination in filter_properties  https://review.openstack.org/48111615:41
openstackgerritBalazs Gibizer proposed openstack/nova master: Factor out duplicated notification sample data (3)  https://review.openstack.org/45282015:43
openstackgerritBalazs Gibizer proposed openstack/nova master: Factor out duplicated notification sample data  https://review.openstack.org/45281815:43
openstackgerritBalazs Gibizer proposed openstack/nova master: Factor out duplicated notification sample data (2)  https://review.openstack.org/45281915:43
openstackgerritBalazs Gibizer proposed openstack/nova master: Refactor instance.power-off notification samples  https://review.openstack.org/47586015:43
*** sree has joined #openstack-nova15:43
*** sree has quit IRC15:43
*** sree has joined #openstack-nova15:43
*** penick has joined #openstack-nova15:44
*** dtp has joined #openstack-nova15:44
*** slaweq has quit IRC15:44
*** slaweq has joined #openstack-nova15:45
*** awaugama has quit IRC15:45
*** awaugama has joined #openstack-nova15:46
vdrokdansmith: one more question about the multicell setup. we don't have to change the hash ring logic we have at https://github.com/openstack/nova/blob/master/nova/virt/ironic/driver.py#L539-L553 ? ServiceList will contain only computes from this cell's database?15:48
*** hieulq_ has joined #openstack-nova15:48
*** slaweq has quit IRC15:50
*** gyee has joined #openstack-nova15:51
*** hshiina has joined #openstack-nova15:52
*** dixiaoli has joined #openstack-nova15:53
*** clarkb1 is now known as clarkb15:54
*** tesseract has quit IRC15:54
*** itlinux has joined #openstack-nova15:55
*** Apoorva has joined #openstack-nova15:56
*** Apoorva has quit IRC15:56
alaskimriedem: I never tackled instance action finish times because there was enough complexity around it that I didn't feel that I could make it reliable. There are too many places where errors can occur and it will be easy to miss one, or have a new one added at some point and miss the instance action finish call.15:57
mriedemvdrok: the GET /os-services API will iterate the cells15:57
mriedemso you should get all services from all cells via the REST API15:57
*** dixiaoli has quit IRC15:57
alaskiit was optimistic to add that field in, and has just been a source of confusion since then15:57
*** Apoorva has joined #openstack-nova15:57
mriedemalaski: ok - we also decided to not go down that route15:57
mriedemmaybe i'll add some comments in the code explaining it's never used currently,15:58
alaskicool15:58
mriedemand if we did, we'd have to do a data migration to actually "finish" old actions15:58
*** Nel1x has joined #openstack-nova15:58
*** Apoorva has quit IRC15:58
vdrokmriedem: hrm, that means we can remap a running instance from compute in one cell to a compute in another one. I guess we'll need to change that15:58
mriedemremap?15:59
vdrokyeah, we decide which compute manages which instance by hash ring, IIRC15:59
*** burgerk has joined #openstack-nova15:59
vdroks/instance/hypervisor in our case16:00
*** Apoorva has joined #openstack-nova16:00
*** david-lyle has joined #openstack-nova16:00
*** sree has quit IRC16:01
*** penick has quit IRC16:03
*** dtp has quit IRC16:03
*** _jarvis has quit IRC16:04
*** arahal__ has joined #openstack-nova16:07
*** arahal_ has quit IRC16:09
*** rajathagasthya has joined #openstack-nova16:17
*** lucasagomes is now known as lucas-afk16:21
*** tbachman has quit IRC16:21
*** sree has joined #openstack-nova16:22
*** tuanla_fujitsu has joined #openstack-nova16:25
*** tbachman has joined #openstack-nova16:25
dansmithvdrok: correct16:27
*** slaweq has joined #openstack-nova16:27
vdrokdansmith: correct about ServiceList containing only this cell computes or about "we have to change it"? :)16:28
*** eharney has quit IRC16:28
dansmithvdrok: sorry, I was reading the scrollback in order and answering in order16:28
mriedemvdrok: who changes the mapping? ironic? or the driver?16:28
dansmithvdrok: so, if you put computes in two cells and point them at a single ironic,16:28
dansmiththen you'd have problems16:28
mriedemif it's the driver, the driver is in a cell and only has visibility to other compute services in that same cell16:28
*** eharney has joined #openstack-nova16:28
vdrokmriedem: the driver16:28
dansmithvdrok: but you can't really handle that in your hash ring code, so I would say that the only reason you'd have multiple cells in ironic would be if you had two ironics16:28
dansmithvdrok: or if ironic grows a cells-like partitioning scheme at some point in the future16:29
vdrokdansmith: mhm, so it seems like multicell is not for us at all in gate :)16:29
vdrokgotcha16:29
dansmithvdrok: that might be a good reason to not run the gate job in multicell mode forever16:29
dansmithyeah16:29
*** slaweq has quit IRC16:31
*** slaweq has joined #openstack-nova16:31
*** slaweq_ has joined #openstack-nova16:31
*** karthiks has quit IRC16:32
*** slaweq_ has quit IRC16:32
*** Swami has quit IRC16:32
*** slaweq_ has joined #openstack-nova16:33
*** yamamoto has quit IRC16:33
*** ralonsoh has quit IRC16:34
*** sambetts is now known as sambetts|afk16:35
mriedemwhat is a PV guest in xen?16:35
mriedemparavirtualization?16:35
mriedem== nested virt?16:35
mriedemlike qemu?16:35
*** slaweq has quit IRC16:35
*** felipemonteiro has joined #openstack-nova16:36
*** dtp has joined #openstack-nova16:36
cdentmriedem: did you already find this: https://wiki.xen.org/wiki/Paravirtualization_(PV)16:40
mriedemyeah16:40
openstackgerritMatt Riedemann proposed openstack/nova master: Add release note for xenapi virt device tagging support  https://review.openstack.org/48114816:40
mriedemi was just being lazy16:40
cdenthow virtuous of you16:40
*** rajathag_ has joined #openstack-nova16:42
*** kaisers_ has joined #openstack-nova16:42
dansmithmriedem: pv is not like nested virt or qemu16:42
dansmithnot sure if you gathered all that16:42
mriedemdansmith: yeah got that from the wiki16:42
dansmithit's closer to a container, but with a full separate guest kernel16:42
dansmithokay16:42
*** rajathagasthya has quit IRC16:42
*** hieulq_ has quit IRC16:43
*** slaweq_ has quit IRC16:44
*** kaisers_ has quit IRC16:46
*** slaweq has joined #openstack-nova16:46
*** hshiina has quit IRC16:47
*** vks1 has joined #openstack-nova16:51
*** armax has joined #openstack-nova16:56
gaurangthi, is there a bug in nova (ocata) where when failed instances are removed, the quota values are not updated? I am observing this behavior in my setup. Used quota values are updated properly only when an active instance is deleted.16:57
*** Swami has joined #openstack-nova16:59
*** baoli has quit IRC17:00
*** baoli has joined #openstack-nova17:01
*** damien_r has quit IRC17:02
openstackgerritChris Dent proposed openstack/nova master: [placement] Improve allocation_cadidates coverage  https://review.openstack.org/48115317:05
cdentjaypipes: ^ discovered that while trying to reacquaint myself with the allocation candidates code17:06
cdentshould be an easy merge17:06
mriedemyeah i think alex asked for that test17:09
jaypipescdent: +2 from me.17:09
cdentah well, there it is17:09
cdentcool, thanks17:09
*** vks1 has quit IRC17:11
*** fragatina has joined #openstack-nova17:11
*** harlowja has joined #openstack-nova17:13
*** zzzeek has quit IRC17:14
*** sridharg has quit IRC17:14
*** lpetrut has quit IRC17:16
*** baoli has quit IRC17:16
*** abalutoiu has quit IRC17:21
dansmithjaypipes: even with that typo?17:23
*** jmlowe has quit IRC17:23
jaypipesdansmith: hmm?17:23
dansmithjaypipes: allocation_cadidates17:24
jaypipesdansmith: cadidated? :)17:24
jaypipesheh, yeah, just noticed that17:24
cdentoh noes17:24
jaypipesalthough I just typoed the typo.17:24
cdentorz17:24
jaypipesdansmith: it would have been fine if it had a parens on a single line.17:24
*** fragatina has quit IRC17:25
*** udesale has quit IRC17:25
*** baoli has joined #openstack-nova17:25
*** fragatina has joined #openstack-nova17:25
dansmithjaypipes: so what you're saying is, you have low standards in general, right?17:25
jaypipesdansmith: you're awfully ornery today.17:26
* dansmith snarls17:26
*** vks1 has joined #openstack-nova17:28
*** ijw has joined #openstack-nova17:31
*** tuanla_fujitsu has quit IRC17:32
*** hieulq has quit IRC17:33
*** zzzeek has joined #openstack-nova17:33
*** trungnv has quit IRC17:33
*** jwcroppe has quit IRC17:33
*** ijw has quit IRC17:33
openstackgerritMatt Riedemann proposed openstack/nova master: xenapi: avoid unnecessary BDM query when building device metadata  https://review.openstack.org/48116217:33
*** ijw has joined #openstack-nova17:34
openstackgerritMatt Riedemann proposed openstack/nova master: [placement] Improve allocation_candidates coverage  https://review.openstack.org/48115317:34
*** yamamoto has joined #openstack-nova17:34
mriedemthere you go17:34
*** ijw has quit IRC17:35
*** krtaylor has quit IRC17:35
*** zzzeek has quit IRC17:37
*** jpena is now known as jpena|off17:38
*** yamamoto has quit IRC17:39
*** zzzeek has joined #openstack-nova17:41
*** sshwarts has quit IRC17:43
*** itlinux has quit IRC17:43
*** smatzek has quit IRC17:44
*** arahal__ has quit IRC17:47
*** rajathag_ has quit IRC17:48
*** hieulq has joined #openstack-nova17:48
*** trungnv has joined #openstack-nova17:48
dansmithmriedem: thanks now I can sleep tonight17:49
mriedemjust fyi, i lost all kinds of sleep last night over that task_state thing we talked about17:51
*** sree has quit IRC17:51
dansmithheh17:51
*** zzzeek has quit IRC17:53
*** iceyao has quit IRC17:57
*** rdo_ has joined #openstack-nova17:58
*** arahal__ has joined #openstack-nova17:59
*** jwcroppe has joined #openstack-nova17:59
*** fragatin_ has joined #openstack-nova17:59
*** zzzeek has joined #openstack-nova18:00
*** vks1 has quit IRC18:00
*** efoley has quit IRC18:01
*** fragatina has quit IRC18:03
*** dave-mccowan has joined #openstack-nova18:03
*** jwcroppe has quit IRC18:04
*** slaweq has quit IRC18:05
*** rajathagasthya has joined #openstack-nova18:05
*** slaweq has joined #openstack-nova18:05
*** baoli has quit IRC18:06
*** jwcroppe has joined #openstack-nova18:07
*** zzzeek_ has joined #openstack-nova18:08
*** zzzeek has quit IRC18:09
*** slaweq has quit IRC18:11
*** slaweq has joined #openstack-nova18:11
*** krtaylor has joined #openstack-nova18:12
*** abalutoiu has joined #openstack-nova18:12
*** ijw has joined #openstack-nova18:14
cdentjaypipes: are you around, I'm having some confusion over the format of the allocations requests in the candidates response18:15
cdentthis is what an allocation update looks like: https://review.openstack.org/#/c/470933/10/placement-api-ref/source/update-allocations-request.json18:15
cdentit's a list of multiple providers18:15
jaypipescdent: right.18:16
*** slaweq has quit IRC18:16
jaypipescdent: and allocation candidates is a list of that HTTP request structure.18:16
cdentbut the output from allocation_candidates (by the docstring at least) is not18:16
jaypipes(without the project_id and user_id of course, since it's not yet known)18:16
jaypipescdent: link?18:16
*** slaweq has joined #openstack-nova18:17
*** gjayavelu has joined #openstack-nova18:17
*** slaweq has quit IRC18:17
cdentoh wait, I think maybe I'm just misreading the docstring on _transform_allocation_requests18:17
*** burt has joined #openstack-nova18:17
cdentnot sure18:17
*** slaweq has joined #openstack-nova18:17
cdentI see a list of dicts18:17
cdentbut I'm expecting to see a list of lists of dicts18:18
*** ijw has quit IRC18:18
*** burgerk_ has joined #openstack-nova18:18
cdenthttps://github.com/openstack/nova/blob/master/nova/api/openstack/placement/handlers/allocation_candidate.py#L5518:18
jaypipescdent: well, the allocation requests response part is a list of dicts, with the dicts having a single key "allocations" that itself is a list of dicts :)18:18
jaypipescdent: thus, matching the required request payload for PUT /allocations/{uuid}18:19
cdentah, so the word 'allocations' is repeated many times18:19
cdentthat's what threw me off18:19
jaypipescdent: yeah, I know :(18:20
*** lpetrut has joined #openstack-nova18:20
jaypipescdent: it's just that's the payload of the request...18:20
jaypipescdent: the code originally didn't have that repeated allocations key thing but then I realized that wasn't actually what the HTTP payload needed :)18:20
cdentexcept without the project and user it has to be cooked anyway18:20
jaypipesya18:20
* cdent shrugs18:21
cdentthis is probably not the best code for getting me back into a reviewing frame of mind. it is rather dense18:21
jaypipescdent: indeed.18:21
jaypipescdent: WELCOME BACK from PTO! :P18:22
*** burgerk has quit IRC18:22
*** lpetrut has quit IRC18:22
*** burgerk_ has quit IRC18:22
cdentI liked it out there in the world. I might have to go back.18:23
*** yamahata has quit IRC18:24
*** krtaylor has quit IRC18:28
*** kaisers_ has joined #openstack-nova18:28
cdentjaypipes: i left some comment on the scheduler side of using candidates (both patches). Overall it seems mostly sane (if a bit dense). instance_uuids is only ever greater than one if someone has requested N of the exact same  thing, yes? So affinity doesn't come into play?18:28
jaypipescdent: correct.18:29
*** lpetrut has joined #openstack-nova18:29
cdent18:29
*** ijw has joined #openstack-nova18:31
*** kaisers_ has quit IRC18:32
*** krtaylor has joined #openstack-nova18:33
*** ijw has quit IRC18:36
*** yamamoto has joined #openstack-nova18:37
*** slaweq has quit IRC18:37
*** slaweq has joined #openstack-nova18:37
*** slaweq has quit IRC18:38
*** kaisers_ has joined #openstack-nova18:38
*** ijw has joined #openstack-nova18:40
*** arahal__ has quit IRC18:41
*** arahal__ has joined #openstack-nova18:41
*** ckopper has joined #openstack-nova18:42
*** yamamoto has quit IRC18:45
cdentjaypipes, edleafe: has there been discussion or decision on whether the query parameter interfaces to /resource_providers and /allocation_candidates should/will have parity?18:47
*** ijw has quit IRC18:47
*** bauzas has quit IRC18:47
cdentrelated, edleafe, is this (filtering rps on traits) still a thing: https://review.openstack.org/#/c/474602/18:48
*** bauzas has joined #openstack-nova18:49
edleafecdent: Heh, your guess is as good as mine. I'm not sure if the plan is still to add that for Pike18:50
edleafecdent: And if it is, it will have to be copied to the allocation code.18:50
cdentI guess the more immediately salient question for edleafe is: are you still managing that patch?18:51
edleafecdent: yes18:51
cdentcool, thanks18:51
*** hieulq has quit IRC18:51
*** trungnv has quit IRC18:51
cdenti'm regrouping my links to things18:51
edleafecdent: I'm also not clear on whether the /resource_providers filtering is going to continue to be a supported thing18:52
mriedemfiltering by traits is definitely high risk at this point18:52
mriedemi don't see why we'd add more to GET /resource_providers,18:52
mriedemwhen we use /allocation_candidates now18:52
mriedemi mean, we could, but not a priority for nova scheduling atm18:52
cdentmriedem: because sometimes you just want to know about resource providers?18:52
cdentoh, yeah, that18:52
cdentsure18:52
edleafemriedem: well, yeah, that's my thinking. Except that others may be relying on it being completed18:53
mriedemwhat others?18:53
mriedemchanges or people?18:53
mriedemor https://en.wikipedia.org/wiki/The_Others_(2001_film) ?18:53
edleafemriedem: any other group that is waiting for placement to be fully funcitonal for their needs18:53
mriedemgggghost kids!18:53
*** READ10 has quit IRC18:54
mriedemedleafe: let those groups speak up if they are18:54
mriedembecause so far they are silent18:54
mriedemprobably b/c they are ghost kids18:54
edleafemriedem: I just have this silly voice in my head that wants me to think that Placement != Nova18:54
mriedemsure, but realize we have 3 weeks18:54
mriedemclaims in the scheduler is the end goal right?18:54
mriedemand allocation candidates is a dependency for that18:54
edleafemriedem: for pike, yes18:54
mriedemany other utopian sugar is probably queens18:54
edleafeI didn't mean to imply that it would be a thing for pike, just that it might be useful to others at some point18:55
mriedemsure, but let's worry about that when it definitely is18:55
edleafeif we never worry about it, it never will be18:56
*** itlinux has joined #openstack-nova18:58
mriedemare we going to compete on the worriness scale?18:58
edleafelike I said, I keep thinking that placement is a thing in itself, and not a nova subsystem19:01
mriedemnothing i'm talking about makes it a nova subsystem19:01
*** yamahata has joined #openstack-nova19:02
*** jmlowe has joined #openstack-nova19:03
* cdent offers jmlowe a bourbon19:03
jmlowethanks!19:04
jmloweyou have my attention19:04
jaypipescdent: parity, no. will there likely be a couple more parameters to the allocation candidates call? yeah.19:04
cdentjmlowe: that's all you get19:04
openstackgerritOpenStack Proposal Bot proposed openstack/nova master: Updated from global requirements  https://review.openstack.org/48118919:05
jmlowedamn, I'll go back to ignoring this channel for another 1k-2k messages19:05
cdentbest choice for your mental health19:05
openstackgerritRick Bartra proposed openstack/nova master: Add policy granularity to the Flavors API  https://review.openstack.org/44928819:06
openstackgerritMatt Riedemann proposed openstack/nova master: WIP: Add ability to signal and perform online volume size change  https://review.openstack.org/45432219:06
*** hieulq has joined #openstack-nova19:06
*** trungnv has joined #openstack-nova19:07
* cdent waves19:11
*** cdent has quit IRC19:11
*** shaner has quit IRC19:11
*** tbachman has quit IRC19:11
*** abalutoiu has quit IRC19:11
*** pcaruana has quit IRC19:12
*** yamamoto has joined #openstack-nova19:13
*** adisky__ has quit IRC19:14
melwittdansmith: I've mostly removed the instance uuid from the access url for the console stuff, but met a confusing point regarding the transition period between consoleauth/memcached and the database backend,19:16
melwittthe code in the console proxy was using the presence of the instance uuid to determine whether to go to the database backend for validation vs going to the consoleauth service,19:16
melwittwithout the instance uuid, we don't really know if the access url is old or new, memcached or database. I'm not sure what to do about that19:16
melwitt I thought, could try first for the database, if that fails, try consoleauth, if that fails too then it's really invalid. but that assumes the operator is running consoleauth still. which might be okay19:16
melwittmy concern there is after all of the outstanding consoles have moved to the database backend, it's safe to stop running consoleauth, but then the fallback behavior should also be turned off.19:17
melwittso I was thinking we might need a config option19:17
dansmithI don't have this cached in my head.. if hitting the DB is the way forward,19:17
dansmithwhy not just always do that and stop looking at the auth cache?19:17
dansmithcould have a workaround conf for it I guess, but if database always works...19:18
melwittbecause of existing urls that people might be using, that had been generated pre-database19:18
mriedemjaypipes: ok comments inline https://review.openstack.org/#/c/476631/19:18
dansmithmelwitt: aren't those expired in like an hour or something?19:18
melwittdansmith: maybe. I was thinking that, the easy way would be just invalidate them all and make people get new urls. but I dunno how accommodating we need to be about the transition19:19
dansmithmelwitt: if it's a short timeout, I don't think we should need to jump through crazy hoops for that19:19
melwittk. I'll double check what it is19:20
dansmithI wish we could talk about this and fix it in like one week.. I keep paging this data in and out of my brain19:20
*** yamamoto has quit IRC19:21
*** slaweq has joined #openstack-nova19:23
*** slaweq has quit IRC19:25
*** fragatin_ has quit IRC19:28
*** fragatina has joined #openstack-nova19:29
mriedemgive your mind a break,19:29
mriedemwith christopher cross https://www.youtube.com/watch?v=VMkIuKXwmlU19:29
mriedemhe's like the fat older brother of that guy from the guardians of the galaxy movies19:29
melwitthah, I was just thinking, he looks like somebody else19:30
mriedemchris pratt19:30
mriedemhttp://i.huffpost.com/gen/1939272/images/o-CHRIS-PRATT-facebook.jpg19:30
mriedemsame fing person19:30
melwitthahaha19:31
mriedemhe's got 18 strings but only needs like 619:32
mriedemmaybe 419:32
melwittthere's a lot about this scene I didn't expect considering how the song sounds19:32
mriedemthe jersey19:32
*** shaner has joined #openstack-nova19:32
mriedemlaid19:32
mriedemback19:32
melwittthis consoles code doesn't make any sense to me. says "Remove expired tokens from the cache." but I only see a "get" no delete of them19:35
*** tbachman has joined #openstack-nova19:37
mriedemshouldn't the cache auto remove things based on the timer?19:38
mriedemusing oslo.cache i assume19:38
mriedemit might just be an old comment from when we switched over to oslo.cache,19:38
mriedemthat was never cleaned up19:38
melwittthe token cache is a memcached thing. and as far as I can tell, it doesn't expire anything. I'm sure I'm just not finding where it is maybe19:39
mriedemi.e. maybe before that refactor we were manually removing things?19:39
melwittoh, hm19:39
mriedemi think there is a default timeout in oslo.cache19:39
mriedemhttps://docs.openstack.org/oslo.cache/latest/opts.html19:39
melwittI see. thanks19:40
mriedemi'm only guessing, i do remember going over the patch in nova that converted to use oslo.cache though and had questions like this19:40
*** arahal__ has quit IRC19:41
*** arahal_ has joined #openstack-nova19:41
melwittyeah, I think you're right though. the consoleauth stuff just uses nova/cache_utils and in cache_utils I see there's oslo_cache.dict and dogpile.cache.memcached as options. I'm not sure what/how we default to19:42
melwittdefault TTL is 600, so 10 minutes. a lot shorter than I thought19:45
* melwitt plays christopher cross again19:47
mriedemildikov: i see the live migration change isn't in this series https://review.openstack.org/#/c/330285/19:47
mriedemildikov: so, i guess to test the new api flow plus live migration, we can just do a DNM nova change that depends on both19:47
mriedemyeah?19:47
*** yamamoto has joined #openstack-nova19:49
*** xyang1 has joined #openstack-nova19:49
ildikovmriedem: I can add it to the chain or just do what you say19:50
mriedemildikov: let's test it out first, i'll push a patch19:50
ildikovmriedem: sounds good, thanks19:51
melwittokay, so if they configured oslo.cache themselves we use that, if they didn't, we make it a oslo_cache.dict19:51
*** moshele has joined #openstack-nova19:51
mriedemfrom what i remember, if it's not configured for some other backend, we use an in-memory dogpile cache dict cache yeah19:52
melwittyour memory is excellent19:52
openstackgerritMoshe Levi proposed openstack/nova master: hardware offload support for openvswitch  https://review.openstack.org/39826519:53
mriedemall that clean livin'19:53
*** yamamoto has quit IRC19:53
*** iceyao has joined #openstack-nova19:55
melwittdansmith: so the default TTL is 10 minutes but they could configure it for a lot longer19:55
dansmithmelwitt: yeah19:55
dansmithmelwitt: I dunno, I think it's fine to say "db is the way forward, memcache is deprecated, if you need, make sure you've configured for db and given enough time for things to expire before rolling19:56
melwittI dunno how big of a deal it would be. if we don't try to fall back on consoleauth, then at worst they get a InvalidToken and have to re-get a new access url and do again19:57
dansmithright19:57
dansmiththere's some config thing now to choose whether we use memcache for that or not, right?19:58
*** lbragstad has quit IRC19:58
melwittdansmith: not yet. there was described in the spec, but I think it wasn't added bc instance uuid presence could be used to detect old vs new (that's my speculation, I don't see it documented why they didn't go ahead with the config option)19:58
dansmithoh I see19:58
dansmithbut19:59
dansmithand so the code to always do it in the DB is unmerged?19:59
melwittI think the original design didn't have instance uuid (that was only added bc cells v2 + one proxy at top) and so they had the idea of the config option19:59
melwittyeah, nothing is happening in the DB yet19:59
*** iceyao has quit IRC19:59
dansmithah, okay I see20:00
dansmithso20:00
dansmithhow about:20:00
dansmith1. Default to only db20:00
dansmith2. Workaround to check memcache first, fall back to db20:00
dansmith3. Expect that going forward for Queens it'll be db only20:00
dansmithand a reno to say if you really really care about not resetting consoles, do the workaorund20:01
dansmithI think we discussed forcing the console reset at some point20:01
*** pchavva has quit IRC20:02
openstackgerritIldiko Vancsa proposed openstack/nova master: update live migration to use v3 cinder api  https://review.openstack.org/46398720:02
melwittdansmith: you mean add the config option for that right? where the choices are "DB only" and "consoleauth + DB"20:02
dansmithmelwitt: well, make it a workarounds config20:03
melwittoh, workarounds config. okay20:03
melwittI forgot about those20:03
dansmithmelwitt: call it [workarounds]/my_users_are_very_delicate_and_need_handholding=True20:03
*** lbragstad has joined #openstack-nova20:03
melwitt:D sure20:03
dansmithI think that messages it as "this is a transitional helper thingy"20:03
melwittyeah, makes sense20:04
dansmithcould default it to true I guess, but I would say default to false and note it in the reno20:04
dansmithbecause I expect very few people will need it20:04
* melwitt nods20:04
openstackgerritMoshe Levi proposed openstack/os-vif master: unplug_vf_passthrough: don't try to delete representor netdev  https://review.openstack.org/47882020:05
openstackgerritMoshe Levi proposed openstack/os-vif master: fix read the representor phys_port_name  https://review.openstack.org/48021320:05
*** ijw has joined #openstack-nova20:06
* melwitt forges ahead20:06
*** gbarros has joined #openstack-nova20:09
*** moshele has quit IRC20:10
*** kaisers_ has quit IRC20:10
*** kaisers_ has joined #openstack-nova20:11
*** arahal_ has quit IRC20:12
*** ijw has quit IRC20:13
*** felipemonteiro has quit IRC20:14
*** liverpooler has quit IRC20:15
*** iceyao has joined #openstack-nova20:16
*** kaisers_ has quit IRC20:16
*** iceyao has quit IRC20:20
*** hieulq has quit IRC20:21
*** trungnv has quit IRC20:23
*** ijw has joined #openstack-nova20:32
*** trungnv has joined #openstack-nova20:36
*** hieulq has joined #openstack-nova20:37
*** ijw has quit IRC20:37
dimsmriedem : jaypipes : do you remember "why" there was pushback on the ConfKeyManager being in castellan? can't seem to find the email thread mentioned in the spec20:38
mriedemConfKeyManager?20:38
dimsmriedem : https://github.com/openstack/nova/search?utf8=%E2%9C%93&q=ConfKeyManager&type=20:39
*** slaweq has joined #openstack-nova20:39
*** iceyao has joined #openstack-nova20:40
dims mriedem : was reading "Move ConfKeyManager elsewhere" section in https://specs.openstack.org/openstack/nova-specs/specs/newton/implemented/use-castellan-key-manager.html20:40
mriedemi think the spec was updated here https://review.openstack.org/#/c/338518/20:40
dimsyep, reading the updated text20:41
mriedemi don't think it was in the ML20:41
mriedemit was discussion in a patch or irc between kfarr, sdague and myself20:41
dimsmriedem : "Might be good to add a link to a ML discussion about the expressed concern?" was a note jay added to the review20:42
mriedemyeah, it wasn't in the ML20:42
dimsok, the only reference i see in ML is an assertion "but it will not live in castellan" http://lists.openstack.org/pipermail/openstack-dev/2016-January/083347.html20:42
mriedemi can't seem to find where this came up in gerrit20:44
*** iceyao has quit IRC20:44
dimsmriedem : i am looking at line 125 in https://review.openstack.org/#/c/338518/3/specs/newton/implemented/use-castellan-key-manager.rst20:44
dims"The community has expressed concern about ConfKeyManager"20:45
mriedemdims: i understand that you're reading that :)20:45
dimsah :)20:45
mriedemwhere and how the community expressed concern is not clear20:45
*** awaugama has quit IRC20:45
mriedemi'm pretty sure it was an irc discussion or something like that between kfarr, sdague and myself20:45
dimsright, just seems kaitlin's email20:45
mriedemand we asked kfarr to update the spec20:45
mriedemwhich is that change20:45
mriedemthat spec update was last july20:46
mriedemthe ML thread was from jan 201620:46
dimsy, chasing ghosts20:46
mriedemi think it basically amounted to,20:47
mriedembarbican didn't want a fake key manager b/c it's not secure, obviously,20:47
mriedembut the rest of us don't want fake key managers in nova/cinder/anywhere else that's copied that pattern for testing,20:47
dimsright, this is castellan20:47
mriedemand because barbican isn't in base devstack,20:47
mriedemwe can't get it from barbican20:47
mriedem*we can't use barbican, or rely on it being in the dsvm env20:47
dimsyep20:47
dimsthat's what i am chasing prompted by a ping from ttx about potentially making barbican a base service in the future20:48
dimsthere are 2 ConfKeyManager(s) one in cinder and one in nova :)20:48
mriedemyeah and the cinder one is a copy of the nova one20:49
*** ijw has joined #openstack-nova20:53
mriedemfound it20:53
mriedemyou owe me $520:53
dimslooks like setting the api_class is never used in any tests20:53
*** takashin has joined #openstack-nova20:54
dimshttp://codesearch.openstack.org/?q=BarbicanKeyManager&i=nope&files=&repos=20:54
mriedemhttp://eavesdrop.openstack.org/irclogs/%23openstack-nova/%23openstack-nova.2016-06-13.log.html#t2016-06-13T18:44:4720:54
mriedemhttps://review.openstack.org/#/c/273717/20:54
mriedemit was prompted by that devstack change20:54
*** krtaylor has quit IRC20:54
dimsthanks mriedem ! i still have some RMB you can have :)20:55
mriedemme too20:55
*** butt is now known as hemna20:57
*** esberglu has quit IRC20:57
*** lucasxu has quit IRC20:57
*** esberglu has joined #openstack-nova20:57
openstackgerritMatt Riedemann proposed openstack/nova master: Pre-load instance.device_metadata in InstanceMetadata  https://review.openstack.org/48123520:59
mriedemdansmith: claudiub pointed this out the other day ^20:59
*** iceyao has joined #openstack-nova20:59
dansmithmriedem: I put a patch up for it,20:59
mriedemoh20:59
mriedemsame big20:59
mriedem*bug?20:59
dansmithmriedem: but I think the right approach is different, and he put one up for it20:59
dansmithhttps://review.openstack.org/#/c/479335/21:00
dansmithyeah21:00
*** ijw has quit IRC21:00
*** ijw has joined #openstack-nova21:00
melwittare we doing a nova meeting today?21:01
mriedemyes21:01
mriedemcrap21:01
*** jmlowe has quit IRC21:01
mriedemdansmith: this is his i guess? https://review.openstack.org/#/c/479335/21:02
*** esberglu has quit IRC21:02
dansmithmriedem: I just pasted that bove :)21:02
*** cdent has joined #openstack-nova21:02
mriedemoh i was looking at yours21:03
*** iceyao has quit IRC21:03
*** jmlowe has joined #openstack-nova21:09
*** baoli has joined #openstack-nova21:12
*** baoli has quit IRC21:13
*** cdent has quit IRC21:13
dansmithmriedem: oh I bet you were21:13
mriedemi was less than impressed21:13
dansmithdaaaum..21:14
mriedemnot sure i care for claudiub's change since it's specific to the virt driver, and xenapi just added this same support21:15
mriedembut i think xenapi will be ok because they also blindly set instance.device_metadata21:15
dansmithmriedem: well, the deal is, we needn't load this because libvirt always has this set once it has resolved the devices21:15
dansmithso I think the better thing is to make sure that's the assumed behavior,21:15
mriedemi know it's not an issue for libvirt21:15
dansmithotherwise we're just lazy-loading nothing21:15
dansmithwe can do both I guess just to make sure we don't get the 'splosion21:16
*** baoli has joined #openstack-nova21:16
mriedemyeah see that's the other thing, the comment in the change to pre-load those said it was doing ec2_ids and keypairs because those are known to be used in there,21:16
mriedemdevice_metadata clearly is also21:16
dansmithyeah, fair enough21:17
*** tbachman has quit IRC21:17
mriedemi'll just move my test over to your patch and +W it21:17
dansmithalready abandoned and +2d yours21:18
mriedemguh21:18
dansmithyou had nothing but mean things to say about mine21:18
mriedemi'm sorry21:19
mriedema little21:19
dansmithyours was a little bigger21:19
mriedem"I think you mean "touch"" - i try to avoid getting sued21:20
dansmithsince when?21:20
dansmiththis is news to me21:20
mriedemabout 20 minutes ago21:20
dansmithhaha21:20
*** jmlowe has quit IRC21:25
*** lpetrut has quit IRC21:30
openstackgerritMatt Riedemann proposed openstack/nova master: DNM: test new style volume attach with live migration  https://review.openstack.org/48129021:30
mriedemildikov: stvnoyes1: ^ should test live migration with the new style volume attachments21:30
mriedemassuming it all merges21:30
ildikovmriedem: fingers crossed :)21:31
ildikovmriedem: and thanks21:31
*** thorst has quit IRC21:33
*** krtaylor has joined #openstack-nova21:35
*** itlinux has quit IRC21:40
melwittmriedem: looks like zuul is angry with your patch21:41
mriedemzuul be damned21:41
melwittheh21:41
*** itlinux has joined #openstack-nova21:41
*** jmlowe has joined #openstack-nova21:42
*** tbachman has joined #openstack-nova21:45
*** slaweq has quit IRC21:51
*** slaweq has joined #openstack-nova21:51
*** xyang1 has quit IRC21:52
*** hieulq has quit IRC21:53
*** trungnv has quit IRC21:53
openstackgerritMike Perez proposed openstack/nova master: Replace support matrix ext with common library  https://review.openstack.org/48130421:54
*** catintheroof has quit IRC21:55
openstackgerritMike Perez proposed openstack/nova master: Replace support matrix ext with common library  https://review.openstack.org/48130421:56
*** tbachman has quit IRC21:58
*** ckopper has quit IRC21:59
*** mkucia has joined #openstack-nova22:02
*** lyan has quit IRC22:02
*** slaweq has quit IRC22:03
*** burt has quit IRC22:03
*** dave-mccowan has quit IRC22:05
*** felipemonteiro has joined #openstack-nova22:07
*** trungnv has joined #openstack-nova22:08
*** tbachman has joined #openstack-nova22:08
*** hieulq has joined #openstack-nova22:08
openstackgerritOctave Orgeron proposed openstack/nova master: Enables MySQL Cluster Support for Nova  https://review.openstack.org/44664322:08
*** slaweq has joined #openstack-nova22:09
*** slaweq has quit IRC22:10
*** slaweq has joined #openstack-nova22:12
*** ijw has quit IRC22:16
*** slaweq has quit IRC22:17
*** ijw has joined #openstack-nova22:18
*** jamesdenton has quit IRC22:18
*** jamesdenton has joined #openstack-nova22:20
*** ijw has quit IRC22:22
*** jamesden_ has joined #openstack-nova22:23
*** edmondsw has quit IRC22:23
*** arahal_ has joined #openstack-nova22:24
*** jamesdenton has quit IRC22:25
*** ijw has joined #openstack-nova22:26
openstackgerritMerged openstack/nova master: [placement] Improve allocation_candidates coverage  https://review.openstack.org/48115322:27
*** jamesdenton has joined #openstack-nova22:27
*** jamesden_ has quit IRC22:27
*** edmondsw has joined #openstack-nova22:28
*** ckopper has joined #openstack-nova22:32
*** edmondsw has quit IRC22:32
*** acormier has quit IRC22:35
*** acormier has joined #openstack-nova22:35
*** mdrabe has quit IRC22:40
*** ckopper has quit IRC22:40
*** acormier has quit IRC22:40
*** ijw has quit IRC22:40
*** jamesdenton has quit IRC22:43
*** abalutoiu has joined #openstack-nova22:44
dansmithmriedem: oooh, you fail22:50
mriedemildikov: went through the swap volume change - https://review.openstack.org/#/c/456971/ - there are a bunch of missing tests, i can work on adding those22:50
mriedemsince i have it in my head what i'd like to see22:50
mriedemdansmith: holy god yeah i did22:51
mriedemgah it's that damn ec2_ids22:51
mriedemfixing22:51
mriedemlooks like it's going to be an all nighter22:51
ildikovmriedem: yeah, I fixed a few added just a few more and went ahead to fix the attach patch...22:52
mriedemnp22:52
mriedemi'll add the rest22:52
ildikovmriedem: prolly waaaay faster if you add the rest22:52
*** ckopper has joined #openstack-nova22:52
ildikovmriedem: I owe you22:53
ildikovmriedem: thank you!22:54
*** edmondsw has joined #openstack-nova22:56
*** eharney has quit IRC22:58
mriedemildikov: confirmed that the new style volume swap was tested in the change at the top of the series http://logs.openstack.org/85/330285/86/check/gate-tempest-dsvm-neutron-full-ubuntu-xenial/15d8c0f/console.html#_2017-07-05_17_04_17_10002323:00
*** edmondsw has quit IRC23:00
mriedemthat's the nova-initiated swap, not the cinder one,23:01
mriedemwe have another job that tests that in the experimental queue i htink23:01
ildikovmriedem:  I saw it failing when I messed up something earlier so I knew it's supposed to run23:02
mriedemthe tempest test is TestVolumeMigrateRetypeAttached23:02
ildikovHmm I don't recall that one23:02
mriedemi think it's tested from the lvm multibackend job23:02
mriedemthat's the one that scottda added for testing volume migration/retype23:03
*** lbragstad has quit IRC23:03
*** thorst has joined #openstack-nova23:04
mriedemi think tempest-dsvm-neutron-scenario-multinode-lvm-multibackend23:04
ildikovYeah, I remember that I just don't remember having any issues with it so I didn't deal with it23:04
mriedemthere is also tempest-dsvm-lvm-multibackend but that doesn't run slow tests, and this is tagged as a slow test23:04
mriedemexperimental queue jobs won't vote23:04
mriedemso you likely wouldn't notice23:04
ildikovI checked the non-voting jobs too when they failed23:05
mriedemyeah but check queue non-voting != experimental queue non-voting23:05
mriedemexperimental queue jobs are all run on-demand23:06
ildikovok, missed the experimental part for a sec23:07
*** iceyao has joined #openstack-nova23:08
*** thorst has quit IRC23:09
openstackgerritMatt Riedemann proposed openstack/nova master: Pre-load instance.device_metadata in InstanceMetadata  https://review.openstack.org/48123523:11
mriedemdansmith: melwitt: ^ fixed23:11
*** slaweq has joined #openstack-nova23:12
*** iceyao has quit IRC23:13
mriedemjaypipes: i might just update this one https://review.openstack.org/#/c/476631/23:13
*** ijw has joined #openstack-nova23:17
*** slaweq has quit IRC23:18
*** dtp has quit IRC23:19
*** takedakn has joined #openstack-nova23:21
*** ijw has quit IRC23:22
*** hieulq has quit IRC23:24
*** trungnv has quit IRC23:24
*** baoli has quit IRC23:26
*** chyka has quit IRC23:28
*** iceyao has joined #openstack-nova23:28
*** chyka has joined #openstack-nova23:29
*** armax has quit IRC23:30
*** moshele has joined #openstack-nova23:33
*** iceyao has quit IRC23:33
*** thorst has joined #openstack-nova23:33
*** chyka has quit IRC23:34
*** thorst has quit IRC23:34
*** takedakn has quit IRC23:35
*** lbragstad has joined #openstack-nova23:36
*** takedakn has joined #openstack-nova23:37
*** hongbin has quit IRC23:38
*** trungnv has joined #openstack-nova23:40
*** hieulq has joined #openstack-nova23:40
*** Sukhdev has joined #openstack-nova23:40
*** ijw has joined #openstack-nova23:41
*** efried has quit IRC23:41
*** itlinux has quit IRC23:43
-openstackstatus- NOTICE: nb03.openstack.org has been cleaned up and rebooted, and should return to building rotation23:44
*** arahal_ has quit IRC23:45
*** takedakn has quit IRC23:46
*** takedakn has joined #openstack-nova23:47
*** takedakn has quit IRC23:47
*** ijw has quit IRC23:48
*** iceyao has joined #openstack-nova23:49
*** efried has joined #openstack-nova23:51
*** iceyao has quit IRC23:54
*** Swami has quit IRC23:57
jaypipesmelwitt: go for it23:57
jaypipeslol, that should have been mriedem.23:58
jaypipesmriedem: but I can fix those issues. sorry, was out of the hosue.23:58

Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!