Friday, 2016-11-11

*** Hosam_ has quit IRC00:00
*** Hosam has joined #openstack-nova00:01
*** ijw has quit IRC00:03
*** ayoung has quit IRC00:04
openstackgerritPushkar Umaranikar proposed openstack/nova-specs: Send service token along with user tokens  https://review.openstack.org/38771100:04
*** Hosam has quit IRC00:05
*** gyee has quit IRC00:06
melwittmriedem: would it do something undesirable to get a uuid for the default group too from neutron?00:06
mriedemmelwitt: we don't try to get the uuid for a default group for some reason00:07
mriedemthat might be a nova-net thing though...00:07
mriedemhttps://github.com/openstack/nova/blob/master/nova/compute/api.py#L41500:07
*** rama_y has quit IRC00:07
mriedemdo we not have a 'default' security group in the database for nova-net, or is that a thing for neutron where a GET on that won't work? i don't have a devstack up to check00:08
melwittheh, great comment00:08
melwittlet me check00:08
melwittwe do have a 'default' group in the database for nova-net00:09
mriedemdo you have a neutron devstack?00:09
melwittyes00:09
*** ijw has joined #openstack-nova00:09
mriedemi wonder if that's a thing that changes on the neutron side depending on whether or not you have port security enabled...i'm not really sure how the data model works there00:10
mriedemarmax: does neutron store a 'default' security group per tenant in the db?00:10
mriedemarmax: trying to figure out why nova doesn't try to do a GET on the 'default' secgroup here https://github.com/openstack/nova/blob/master/nova/compute/api.py#L41500:10
melwittI'm trying to remember why we couldn't stop sending the 'default' secgroup to neutron if it ignores it anyway00:10
armaxmriedem: yes, each tenant gets his/her own default security group00:11
*** Sukhdev has joined #openstack-nova00:11
dansmithmriedem: I thought I was writing that neutron secgroup object patch :)00:12
mriedemarmax: so i should be able to do like a neutron secgroup-show default?00:12
armaxmriedem: there’s something weird about the default security group where it’s provisioned on the fyl00:12
armaxfly00:12
mriedemarmax: that's what i thought and maybe why we don't try to do a GET on it in the compute API00:13
dansmithmriedem: either way, o.vo will allow storing subclasses, if you tell the field that subclasses are okay00:13
*** victorhe has joined #openstack-nova00:13
mriedemdansmith: yup i've gotten past that00:13
pumaranikarjohnthetubaguy, updated spec for service token. Please review when you join back. https://review.openstack.org/#/c/387711/00:13
mriedemnow dealing with this uuid vs 'default' thing00:13
dansmithokay00:13
mriedemif we store id='default' that's a bit goofy00:13
mriedemand it means the NeutronSecurityGroup.id field can't be a uuid field00:13
mriedembut if we can't do a GET on 'default' in neutron api then we can't really get around that00:14
mriedemwell i'll try to do the least disruptive thing and see how it looks00:14
armaxmriedem: yes, and a default security group is also provisioned on the fly for instance when creating a port00:15
*** portdirect is now known as portdirect_away00:15
*** victorhe has quit IRC00:17
*** ijw has quit IRC00:19
openstackgerritJin Li proposed openstack/nova: Transform instance.soft_delete notifications  https://review.openstack.org/38397000:20
melwittdansmith: I think the instance list problem is because get_all only works for a single cell (it doesn't do a db connection switch to read from cell database)00:21
*** ar1el has quit IRC00:22
dansmithmelwitt: right00:26
dansmithmelwitt: I've collapsed the urls locally to basically make CONF.database.connection equal to the first cell database_connection00:26
*** gmann has joined #openstack-nova00:27
mriedemmethinks i found a bug00:27
dansmithoh, sorry00:27
dansmithmelwitt: you mean the reason that server detail doesn't show the instance?00:27
mriedemwtf https://github.com/openstack/nova/blob/master/nova/objects/security_group.py#L8700:27
mriedemdansmith: is that intentional? ^00:27
dansmithmelwitt: since I have the urls the same locally I don't think that's it00:27
melwittdansmith: no, I was thinking the server detail does show it and it does a connection switch and the list doesn't show it and it doesn't do a switch00:28
dansmithmriedem: ISTR that was done for some compat reason.. secgroups was super problematic, but agree it's not good00:28
dansmithmelwitt: no, that's not the problem I'm hitting00:28
mriedemso i can't create the list with objects set on init, but i can do it after it's created :)00:28
mriedemseems odd00:28
dansmithmelwitt: I don't get instances that are only buildrequests in the api database (i.e. state=scheduling) in the API list, but can show them00:29
melwittdansmith: oh, okay. I went and printed the build requests from the get_all and there were none so it made me think they'd been scheduled00:29
dansmithmelwitt: the instances aren't in the cell database yet because they haven't been scheduled00:29
*** ijw has joined #openstack-nova00:31
*** yuntongjin has joined #openstack-nova00:31
*** kaisers has quit IRC00:33
*** jerrygb has joined #openstack-nova00:34
*** kaisers has joined #openstack-nova00:34
*** ar1el has joined #openstack-nova00:34
*** hongbin has quit IRC00:34
dansmithmelwitt: well, there appear to be no buildrequests in the database if I do a get_all on BuildRequestList00:38
*** catintheroof has quit IRC00:38
*** jerrygb has quit IRC00:38
dansmithmelwitt: but it's clearly not scheduled so I'm not sure where it's coming from :P00:38
melwitthmm00:38
*** catintheroof has joined #openstack-nova00:39
dansmithindeed00:40
*** victorhe has joined #openstack-nova00:40
*** ijw has quit IRC00:41
*** ijw has joined #openstack-nova00:41
*** catintheroof has quit IRC00:43
*** jwcroppe has quit IRC00:44
dansmithhmm, so it is making it to the instance create, but the state is wrong00:44
dansmithand I don't see it in the db00:44
*** jwcroppe has joined #openstack-nova00:44
*** jamielennox is now known as jamielennox|away00:44
*** victorhe has quit IRC00:45
*** ayoung has joined #openstack-nova00:45
*** ijw has quit IRC00:45
*** ijw has joined #openstack-nova00:47
melwittdansmith: is it not still a separate database for the cell because of CellDatabase?00:48
dansmithmelwitt: no I've got everything collapsed to one00:48
melwittokay, so locally everything is using the same database fixture00:48
*** walharthi has joined #openstack-nova00:49
melwittI was concerned about the default DatabaseFixture that comes with test.TestCase00:50
dansmithyeah00:50
dansmithI've also converted to NoDBTestCase for integrated helpers00:50
*** ijw has quit IRC00:50
*** womygod has joined #openstack-nova00:53
*** ducttape_ has joined #openstack-nova00:55
*** ducttape_ has quit IRC00:55
*** ducttape_ has joined #openstack-nova00:56
*** ijw has joined #openstack-nova00:58
*** mlavalle has quit IRC01:01
*** ijw has quit IRC01:01
*** gmann has quit IRC01:03
*** gmann_ has joined #openstack-nova01:03
*** ijw has joined #openstack-nova01:04
*** walharthi has quit IRC01:04
*** walharthi has joined #openstack-nova01:05
*** ijw has quit IRC01:06
*** hoangcx has joined #openstack-nova01:06
*** yuntongjin has quit IRC01:07
*** yuntongjin has joined #openstack-nova01:08
*** ducttape_ has quit IRC01:12
*** jwcroppe has quit IRC01:13
*** ducttape_ has joined #openstack-nova01:14
*** jwcroppe has joined #openstack-nova01:15
*** edmondsw has quit IRC01:21
*** smatzek has joined #openstack-nova01:22
*** dave-mccowan has joined #openstack-nova01:24
*** rama_y has joined #openstack-nova01:35
*** ducttape_ has quit IRC01:36
*** zhangyufei has joined #openstack-nova01:48
*** ducttape_ has joined #openstack-nova01:50
*** Apoorva has quit IRC01:57
*** baoli has joined #openstack-nova02:00
*** Apoorva has joined #openstack-nova02:00
*** browne has quit IRC02:03
*** Apoorva has quit IRC02:05
*** gcb has joined #openstack-nova02:06
*** ducttape_ has quit IRC02:10
*** coreywright has quit IRC02:10
openstackgerritMatt Riedemann proposed openstack/nova: Add NeutronSecurityGroup object  https://review.openstack.org/39643602:12
openstackgerritMatt Riedemann proposed openstack/nova: Return list of NeutronSecurityGroup objects from populate_security_groups  https://review.openstack.org/39646902:12
mriedemok dansmith, ^02:12
mriedemwe can talk about that tomorrow02:12
mriedemsome things i'm not crazy about in there, but not sure we have better options02:12
*** claudiub has quit IRC02:13
*** kaisers_ has quit IRC02:16
*** trisq has joined #openstack-nova02:23
*** Sukhdev has quit IRC02:24
mriedemBobBall: https://bugs.launchpad.net/nova/+bug/1640993 xenserver + neutron ci failed on a vif plugging timeout02:33
openstackLaunchpad bug 1640993 in OpenStack Compute (nova) "xenserver hits vif plugging timeout with neutron CI job" [Undecided,New]02:33
mriedemlooks like it's waiting for 2 events and times out on one of them not coming back02:33
*** jerrygb has joined #openstack-nova02:34
*** jerrygb_ has joined #openstack-nova02:37
*** victorhe has joined #openstack-nova02:38
*** jerrygb has quit IRC02:39
*** victorhe has quit IRC02:43
*** coreywright has joined #openstack-nova02:48
*** gmann_ has quit IRC02:50
*** mriedem has quit IRC02:52
*** unicell has quit IRC02:53
*** jerrygb has joined #openstack-nova02:54
*** jerrygb_ has quit IRC02:56
*** jaypipes has joined #openstack-nova02:58
*** jerrygb has quit IRC03:00
*** browne has joined #openstack-nova03:00
*** baoli has quit IRC03:05
*** browne has quit IRC03:06
*** markvoelker has quit IRC03:07
*** victorhe has joined #openstack-nova03:07
*** esberglu has joined #openstack-nova03:07
*** prashkre_ has joined #openstack-nova03:07
*** victorhe has quit IRC03:08
*** victorhe has joined #openstack-nova03:09
*** tbachman has quit IRC03:09
*** smatzek has quit IRC03:09
*** fabian4 has quit IRC03:10
*** ducttape_ has joined #openstack-nova03:11
*** walharthi has quit IRC03:11
*** esberglu has quit IRC03:11
*** diogogmt has quit IRC03:15
*** ducttape_ has quit IRC03:16
*** dave-mcnally has quit IRC03:16
*** dikonoor has joined #openstack-nova03:20
*** yuntongjin has quit IRC03:31
*** harlowja has quit IRC03:33
openstackgerritTakashi NATSUME proposed openstack/nova: Remove unused code in nova/api/openstack/wsgi.py  https://review.openstack.org/39648503:36
*** ijw has joined #openstack-nova03:39
*** manasm has joined #openstack-nova03:41
*** ijw has quit IRC03:43
*** tojuvone has quit IRC03:44
*** vladikr has quit IRC03:49
openstackgerritTakashi NATSUME proposed openstack/nova: Remove unused code in nova/api/openstack/wsgi.py  https://review.openstack.org/39648503:53
*** gmann has joined #openstack-nova03:58
*** Apoorva has joined #openstack-nova04:01
*** namnh has joined #openstack-nova04:04
*** manasm has quit IRC04:05
*** Apoorva has quit IRC04:06
*** kevinz has quit IRC04:06
*** kevinz has joined #openstack-nova04:09
*** sudipto has joined #openstack-nova04:10
*** sudipto_ has joined #openstack-nova04:10
*** ducttape_ has joined #openstack-nova04:12
*** jwcroppe has quit IRC04:13
*** jwcroppe has joined #openstack-nova04:14
*** tojuvone has joined #openstack-nova04:16
*** GB21 has joined #openstack-nova04:16
*** tojuvone_ has joined #openstack-nova04:16
*** tojuvone has quit IRC04:17
*** tojuvone_ has quit IRC04:17
*** ducttape_ has quit IRC04:17
*** jwcroppe has quit IRC04:18
*** diogogmt has joined #openstack-nova04:18
*** jerrygb has joined #openstack-nova04:20
*** markvoelker has joined #openstack-nova04:21
*** victorhe has quit IRC04:21
*** jerrygb has quit IRC04:23
*** nicolasbock has quit IRC04:23
*** jerrygb has joined #openstack-nova04:23
*** prashkre_ has quit IRC04:23
*** jerrygb has quit IRC04:28
*** ducttape_ has joined #openstack-nova04:28
*** tlian has quit IRC04:29
*** jwcroppe has joined #openstack-nova04:36
*** harlowja has joined #openstack-nova04:38
*** prateek has joined #openstack-nova04:40
*** ducttape_ has quit IRC04:46
*** manasm has joined #openstack-nova04:47
*** phschwartz has quit IRC04:47
*** fragatin_ has joined #openstack-nova04:53
*** esberglu has joined #openstack-nova04:56
*** fragatina has quit IRC04:57
*** fragatin_ has quit IRC04:57
*** Sukhdev has joined #openstack-nova04:58
*** dave-mccowan has quit IRC04:59
*** fragatina has joined #openstack-nova05:00
*** esberglu has quit IRC05:00
*** jerrygb has joined #openstack-nova05:01
*** fragatina has quit IRC05:01
*** jerrygb has quit IRC05:02
*** sree has joined #openstack-nova05:10
*** baoli has joined #openstack-nova05:18
*** yamahata has quit IRC05:21
*** baoli has quit IRC05:22
*** jklare has quit IRC05:28
*** jklare has joined #openstack-nova05:28
*** khamtamtun has joined #openstack-nova05:30
*** yuntongjin has joined #openstack-nova05:30
*** Kevin_Zheng has quit IRC05:31
*** GB21 has quit IRC05:31
*** khamtamtun has quit IRC05:32
*** GB21 has joined #openstack-nova05:33
*** Kevin_Zheng has joined #openstack-nova05:34
*** ratailor has joined #openstack-nova05:36
*** fragatina has joined #openstack-nova05:37
*** GB21 has quit IRC05:41
*** armax has quit IRC05:43
*** Apoorva has joined #openstack-nova05:43
*** coolsvap has joined #openstack-nova05:45
*** preethipy has joined #openstack-nova05:46
*** ducttape_ has joined #openstack-nova05:46
*** thorst_ has quit IRC05:49
*** thorst_ has joined #openstack-nova05:50
*** ducttape_ has quit IRC05:51
*** harlowja has quit IRC05:51
*** harlowja has joined #openstack-nova05:52
*** pbandark has joined #openstack-nova05:56
*** thorst_ has quit IRC05:59
*** hshiina has joined #openstack-nova06:04
openstackgerritAlex Xu proposed openstack/nova: Adds support for versioned schema validation for query parameters  https://review.openstack.org/38900306:05
*** sandanar has joined #openstack-nova06:06
*** josecastroleon has quit IRC06:09
*** gmann has quit IRC06:10
*** Apoorva has quit IRC06:18
*** kaisers_ has joined #openstack-nova06:21
*** amotoki has quit IRC06:24
*** amotoki has joined #openstack-nova06:24
*** prashkre has joined #openstack-nova06:25
*** rama_y has quit IRC06:26
*** sridharg has joined #openstack-nova06:26
*** lpetrut has joined #openstack-nova06:27
*** jaosorior has joined #openstack-nova06:32
*** gmann has joined #openstack-nova06:34
*** Jeffrey4l has quit IRC06:35
*** paul-carlton2 has joined #openstack-nova06:37
*** SayyedMohammad has joined #openstack-nova06:43
*** SayyedMohammad has left #openstack-nova06:44
*** esberglu has joined #openstack-nova06:45
*** SayyedMohammad has joined #openstack-nova06:47
*** Jeffrey4l has joined #openstack-nova06:48
*** esberglu has quit IRC06:49
*** josecastroleon has joined #openstack-nova06:50
openstackgerritint32bit proposed openstack/nova: Add lock actions to action-list  https://review.openstack.org/39651006:56
*** yamahata has joined #openstack-nova06:59
*** Sukhdev has quit IRC07:01
*** tesseract has joined #openstack-nova07:03
*** tesseract is now known as Guest760507:03
*** takashin has quit IRC07:07
*** oanson has joined #openstack-nova07:09
*** andreas_s has joined #openstack-nova07:10
*** rcernin has joined #openstack-nova07:11
*** jwcroppe has quit IRC07:11
*** jwcroppe has joined #openstack-nova07:12
openstackgerritZhenyu Zheng proposed openstack/nova: Add microversion cap information  https://review.openstack.org/39651407:12
*** belmoreira has joined #openstack-nova07:12
*** claudiub has joined #openstack-nova07:13
*** lpetrut has quit IRC07:15
*** jwcroppe has quit IRC07:16
*** markus_z has joined #openstack-nova07:16
*** coolsvap has left #openstack-nova07:19
openstackgerritZhenyu Zheng proposed openstack/nova: Add microversion cap information  https://review.openstack.org/39651407:21
*** lpetrut has joined #openstack-nova07:23
markus_zjohnthetubaguy: bauzas: https://review.openstack.org/#/c/395067/ would solve an issue in our (not yet public) s390x CI, maybe you could take a look.07:30
*** jaosorior has quit IRC07:31
*** preethipy has quit IRC07:35
openstackgerritZhenyu Zheng proposed openstack/nova: Add microversion cap information  https://review.openstack.org/39651407:39
*** lpetrut has quit IRC07:40
*** bhagyashris has quit IRC07:41
*** manasm has quit IRC07:43
*** ducttape_ has joined #openstack-nova07:48
*** amotoki has quit IRC07:49
openstackgerritZhenyu Zheng proposed openstack/nova: Add microversion cap information  https://review.openstack.org/39651407:49
*** ducttape_ has quit IRC07:53
*** RuiChen_ has joined #openstack-nova07:55
*** Kevin_Zheng has quit IRC07:56
*** RuiChen has quit IRC07:56
*** RuiChen_ is now known as RuiChen07:56
*** andreas_s has quit IRC07:56
*** alexchadin has joined #openstack-nova07:57
*** Kevin_Zheng has joined #openstack-nova07:59
*** thorst_ has joined #openstack-nova08:01
*** avolkov has joined #openstack-nova08:02
*** jaosorior has joined #openstack-nova08:02
*** harlowja has quit IRC08:03
*** alexchadin has quit IRC08:05
*** alexchadin has joined #openstack-nova08:06
*** markus_z has quit IRC08:08
*** alexchadin has quit IRC08:08
*** alexchadin has joined #openstack-nova08:08
*** thorst_ has quit IRC08:08
openstackgerritBin Zhou proposed openstack/nova: Modify mistake of scsi adapter type class  https://review.openstack.org/39652908:10
*** dimtruck is now known as zz_dimtruck08:11
*** moshele has joined #openstack-nova08:22
*** markus_z has joined #openstack-nova08:22
moshelejaypipes: can you review my comments on the User-controlled SR-IOV ports allocation https://review.openstack.org/#/c/182242/08:23
*** unicell has joined #openstack-nova08:26
*** unicell has quit IRC08:30
*** unicell has joined #openstack-nova08:32
*** alexchadin has quit IRC08:32
*** al_indigo has quit IRC08:33
*** alexchadin has joined #openstack-nova08:33
*** al_indigo has joined #openstack-nova08:33
*** esberglu has joined #openstack-nova08:34
*** alexchad_ has joined #openstack-nova08:36
*** alexchadin has quit IRC08:36
*** unicell has quit IRC08:37
*** esberglu has quit IRC08:38
*** wuhg has joined #openstack-nova08:39
*** josecastroleon has quit IRC08:40
*** josecastroleon has joined #openstack-nova08:41
*** unicell has joined #openstack-nova08:44
openstackgerritZhenyu Zheng proposed openstack/nova: Transform instance.resize_revert notifications  https://review.openstack.org/39654408:47
*** ducttape_ has joined #openstack-nova08:49
openstackgerritZhenyu Zheng proposed openstack/nova: [WIP]Transform instance.resize_revert notifications  https://review.openstack.org/39654408:49
*** ralonsoh has joined #openstack-nova08:53
tdurakovmarkus_z: hi, missed your message yesterday, l-m job is voting and looks o08:53
tdurakovs/o/ok gate-tempest-dsvm-multinode-live-migration-ubuntu-xenial08:54
*** ducttape_ has quit IRC08:54
*** lpetrut has joined #openstack-nova08:58
*** zzzeek has quit IRC09:00
*** zzzeek has joined #openstack-nova09:01
*** lpetrut has quit IRC09:02
*** ar1el has quit IRC09:04
openstackgerritHussain Chachuliya proposed openstack/nova: Replace uuid4() with uuidsentinel  https://review.openstack.org/37766109:04
*** danpb has joined #openstack-nova09:06
*** thorst_ has joined #openstack-nova09:07
*** adreznec has quit IRC09:09
*** bnemec has quit IRC09:09
*** preethipy has joined #openstack-nova09:10
*** ihrachys has joined #openstack-nova09:10
*** adreznec has joined #openstack-nova09:11
*** brault has joined #openstack-nova09:11
openstackgerritZhenyu Zheng proposed openstack/nova: [WIP]Transform instance.resize_revert notifications  https://review.openstack.org/39654409:11
*** bnemec has joined #openstack-nova09:12
*** thorst_ has quit IRC09:14
*** shihanzhang has quit IRC09:15
*** moshele has quit IRC09:15
*** ar1el has joined #openstack-nova09:16
*** claudiub|2 has joined #openstack-nova09:16
*** brault has quit IRC09:16
*** kylek3h has quit IRC09:16
*** claudiub has quit IRC09:18
openstackgerritZhenyu Zheng proposed openstack/nova: [WIP]Transform instance.rebuild.error notification  https://review.openstack.org/39655209:19
*** lucas-afk is now known as lucasagomes09:22
openstackgerritStephen Finucane proposed openstack/nova: conf: Add 'preallocate_images' to 'virt' group  https://review.openstack.org/39256709:22
openstackgerritStephen Finucane proposed openstack/nova: conf: Move virt options to a group  https://review.openstack.org/39256609:22
openstackgerritStephen Finucane proposed openstack/nova: conf: Detail the 'injected_network_template' opt  https://review.openstack.org/39256509:22
openstackgerritStephen Finucane proposed openstack/nova: conf: Standardize formatting of virt  https://review.openstack.org/39256409:22
*** kylek3h has joined #openstack-nova09:23
*** gmann has quit IRC09:23
*** ihrachys has quit IRC09:24
*** derekh has joined #openstack-nova09:25
*** zenoway has joined #openstack-nova09:28
*** derekh has quit IRC09:29
*** amotoki has joined #openstack-nova09:32
*** andymaier has joined #openstack-nova09:33
*** esberglu has joined #openstack-nova09:34
openstackgerritint32bit proposed openstack/nova: Raise exception if delete disabled terminate server  https://review.openstack.org/39601709:37
*** manasm has joined #openstack-nova09:38
*** esberglu has quit IRC09:38
*** amotoki has quit IRC09:38
*** andymaier has quit IRC09:44
*** derekh has joined #openstack-nova09:47
*** openstackgerrit has quit IRC09:48
*** openstackgerrit has joined #openstack-nova09:49
*** slaweq_ has quit IRC09:52
*** slaweq_ has joined #openstack-nova09:53
*** ihrachys has joined #openstack-nova09:53
*** lpetrut has joined #openstack-nova10:01
*** slaweq_ has quit IRC10:08
*** thorst_ has joined #openstack-nova10:12
pkholkinjohnthetubaguy: bauzas: hello guys! waiting waiting for you in my spec) https://review.openstack.org/#/c/381912/, thanks!10:15
*** zhangyufei has quit IRC10:18
*** thorst_ has quit IRC10:18
*** manasm has quit IRC10:20
*** alexchad_ has quit IRC10:21
*** alexchadin has joined #openstack-nova10:22
*** womygod has quit IRC10:23
*** alexchad_ has joined #openstack-nova10:26
*** markus_z has quit IRC10:26
*** alexchadin has quit IRC10:26
*** markus_z has joined #openstack-nova10:27
*** esberglu has joined #openstack-nova10:28
*** oanson has quit IRC10:29
johnthetubaguypkholkin: sorry, I keep not getting around to re-reading that10:30
johnthetubaguypkholkin: the usage of the filter isn't clear enough for me10:30
johnthetubaguypkholkin: does my new comment make more sense than the last one?10:30
*** gmann has joined #openstack-nova10:31
*** yuntongjin has quit IRC10:32
*** portdirect_away is now known as portdirect10:32
markus_ztdurakov: I was looking at the wrong thing :/ sorry10:32
*** esberglu has quit IRC10:33
*** sambetts|afk is now known as sambetts10:33
*** slaweq_ has joined #openstack-nova10:33
sfinucanjohnthetubaguy, markus_z: There's a pretty significant backlog of centralize-config-options patches built up. Could ye put it on the list to take a peek at them over the next week or two?10:35
danpbsfinucan: got a topic link handy ?10:37
markus_zsfinucan: Yes, I'll do a review day on Wednesday for that, would that help? (apologies for not having that on my radar)10:37
pkholkinjohnthetubaguy: will look soon10:38
*** yamahata has quit IRC10:38
sfinucandanpb: Sure https://review.openstack.org/#/q/topic:bp/centralize-config-options-ocata10:38
johnthetubaguysfinucan: yeah, its on my list, but current spec distracted and internal planning work distracted10:38
johnthetubaguycurrently10:39
*** stvnoyes1 has quit IRC10:40
sfinucanmarkus_z, johnthetubaguy: That's fine :) Just making sure they're not stuck in potential merge-conflict limbo forever :)10:40
*** stvnoyes has joined #openstack-nova10:41
johnthetubaguysfinucan: annoyingly they are basically at the top of my review list, I just haven't got there :'(10:42
*** pbandark has quit IRC10:42
*** manasm has joined #openstack-nova10:44
*** cdent has joined #openstack-nova10:49
*** wuhg has quit IRC10:51
*** portdirect has quit IRC10:53
*** owalsh has joined #openstack-nova11:00
*** rfolco has joined #openstack-nova11:04
*** sree has quit IRC11:06
openstackgerritJohn Garbutt proposed openstack/nova-specs: Strict isolation of group of hosts for image and flavor  https://review.openstack.org/38191211:08
*** sree has joined #openstack-nova11:09
*** alexchad_ has quit IRC11:10
*** alexchadin has joined #openstack-nova11:10
*** hoangcx has quit IRC11:11
*** sree has quit IRC11:14
*** alexchadin has quit IRC11:15
*** namnh has quit IRC11:18
*** tbachman has joined #openstack-nova11:19
*** thorst_ has joined #openstack-nova11:19
*** thorst_ has quit IRC11:24
openstackgerritzhaolihui proposed openstack/nova: Fix to rebuild vm not with the specified image  https://review.openstack.org/39590811:27
*** esberglu has joined #openstack-nova11:31
*** GB21 has joined #openstack-nova11:35
*** esberglu has quit IRC11:36
*** nicolasbock has joined #openstack-nova11:37
*** matrohon has joined #openstack-nova11:38
*** preethi has joined #openstack-nova11:41
openstackgerritAlex Xu proposed openstack/nova: Adds support for versioned schema validation for query parameters  https://review.openstack.org/38900311:42
*** jwcroppe has joined #openstack-nova11:42
*** preethipy has quit IRC11:43
*** alexchadin has joined #openstack-nova11:46
*** jwcroppe has quit IRC11:47
*** josecastroleon has quit IRC11:50
*** trisq has quit IRC11:50
*** manasm_ has joined #openstack-nova11:51
*** smatzek has joined #openstack-nova11:52
*** sandanar has quit IRC11:53
*** manasm has quit IRC11:54
*** manasm_ is now known as manasm11:54
johnthetubaguypkholkin: would be good to catch up around that spec when you get chance11:54
johnthetubaguybauzas: any chance for you to look at my comments on: https://review.openstack.org/#/c/381912 I am wondering what you think?11:55
*** gszasz has joined #openstack-nova11:56
openstackgerritJabbar Ali proposed openstack/python-novaclient: Removing version error from command nova keypair-add help  https://review.openstack.org/39631211:57
pkholkinjohnthetubaguy: thanks for updating spec, I like you explanations there11:57
pkholkinso <empty> and <no> differs when isolation is True or False11:58
johnthetubaguypkholkin: yeah, or if a host is not in an aggregate at all (the default)11:58
*** matrohon has quit IRC11:59
pkholkinjohnthetubaguy: yes, agree11:59
pkholkinnow it looks more clear11:59
johnthetubaguyI just wonder if we need configuration for that case, so you don't need to put the hosts into an aggregate, that might be overkill I guess12:00
*** clenimar has joined #openstack-nova12:00
-openstackstatus- NOTICE: Our OpenStack CI systems are stuck and no new jobs are submitted. Please do not recheck - and do not approve changes until this is fixed.12:00
pkholkinwe don't need configuration and we don't need to put hosts to aggregates just to boot smth12:02
pkholkindefault values help12:03
johnthetubaguysorry, confused, which default values?12:03
*** haplo37 has quit IRC12:05
pkholkinI saw your comment, I think we don't need anything12:05
openstackgerritJabbar Ali proposed openstack/python-novaclient: Removing version error from command nova keypair-add help  https://review.openstack.org/39631212:05
pkholkinif we mark isolation=True it must be <empty> column, otherwise it is <no>12:05
johnthetubaguymy worry is people will want all the hosts that are not in aggregates to default to behaving like the <empty> column12:07
*** maticue has joined #openstack-nova12:07
johnthetubaguyI mean its not *required* as you can just add all hosts into an aggregate and mark isolation=True, its just that seems error prone12:08
johnthetubaguyas you add capacity, etc12:08
*** lucasagomes is now known as lucas-hungry12:10
*** pbandark has joined #openstack-nova12:10
*** pbandark is now known as pbandark`brb12:10
pkholkinif we add some config option it will make more questions12:12
*** bhagyashris has joined #openstack-nova12:13
pkholkinI don't like to have global option and 'per-aggregate' options12:14
*** haplo37 has joined #openstack-nova12:15
pkholkinso, yes, operators should create some aggregate with isolation=True and add hosts to it12:15
pkholkinI think it is not a problem12:15
openstackgerritJohn Garbutt proposed openstack/nova-specs: Strict isolation of group of hosts for image and flavor  https://review.openstack.org/38191212:16
*** bvanhav_ has joined #openstack-nova12:16
johnthetubaguypkholkin: so I added my worry as an alternative we could add in the future, if it turns out to be needed12:17
pkholkinjohnthetubaguy: looking, thank you!12:18
johnthetubaguypkholkin: With my cloud operator hat on, I think not defaulting to false would stop me be able to use this filter, but I could be thinking about that all wrong, and this is easy to add later, so I don't want to block the rest of your good work on that detail12:18
*** GB21 has quit IRC12:19
*** thorst has joined #openstack-nova12:20
*** ratailor has quit IRC12:27
*** catintheroof has joined #openstack-nova12:27
*** thorst has quit IRC12:29
*** catintheroof has quit IRC12:31
pkholkinjohnthetubaguy: ok, thanks a lot for support!12:32
openstackgerritjichenjc proposed openstack/nova: WIP: remove keypair server extension  https://review.openstack.org/39661112:33
*** josecastroleon has joined #openstack-nova12:35
*** catintheroof has joined #openstack-nova12:40
openstackgerritVasyl Saienko proposed openstack/nova-specs: Proposal for ironic static portgroups support  https://review.openstack.org/38753412:40
openstackgerritjichenjc proposed openstack/nova: WIP: remove keypair server extension  https://review.openstack.org/39661112:42
*** prateek has quit IRC12:43
*** jjung has joined #openstack-nova12:44
*** markvoelker has quit IRC12:44
*** gcb has quit IRC12:45
*** preethi has quit IRC12:46
*** jaosorior has quit IRC12:47
*** brault has joined #openstack-nova12:48
*** xavior1777 has joined #openstack-nova12:50
*** hshiina has quit IRC12:52
*** brault has quit IRC12:52
openstackgerritPavel Kholkin proposed openstack/nova-specs: Strict isolation of group of hosts for image and flavor  https://review.openstack.org/38191212:55
pkholkinjohnthetubaguy: I've fixed some typos and add one sentence after Timofey's comment12:56
pkholkinplease mark the patch once again, thanks!12:56
-openstackstatus- NOTICE: Our OpenStack CI system is coming back online again. Thanks for your patience.12:59
*** ar1el has quit IRC12:59
openstackgerritVasyl Saienko proposed openstack/nova-specs: Proposal for ironic static portgroups support  https://review.openstack.org/38753413:01
*** thorst has joined #openstack-nova13:01
*** thorst_ has joined #openstack-nova13:03
bhagyashriscdent: Hi, I am trying to test  set_ and get_ aggregates on the ResourceProvider apis  through curl command by applying the patch on my machine https://review.openstack.org/#/c/357993/ , but i am getting 404 Resource NotFound error. can you please guide me to run it successfully.13:05
*** thorst has quit IRC13:05
pkholkinjohnthetubaguy: thanks again!13:07
*** ducttape_ has joined #openstack-nova13:08
*** oanson has joined #openstack-nova13:08
*** ar1el has joined #openstack-nova13:11
*** gmann has quit IRC13:12
*** thorst_ is now known as thorst13:12
*** lamt has joined #openstack-nova13:16
openstackgerritAlex Szarka proposed openstack/nova: Transform instance.rebuild notification  https://review.openstack.org/38492213:16
openstackgerritAlex Szarka proposed openstack/nova: [WIP]Transform error notification extend instance.rebuild  https://review.openstack.org/39662113:16
*** edmondsw has joined #openstack-nova13:16
*** mkoderer___ is now known as mkoderer__13:17
*** alexchadin has quit IRC13:18
*** dave-mccowan has joined #openstack-nova13:18
*** Hosam has joined #openstack-nova13:18
openstackgerritAlex Szarka proposed openstack/nova: Transform instance.rebuild notification  https://review.openstack.org/38492213:19
*** manasm has quit IRC13:19
openstackgerritjichenjc proposed openstack/nova: WIP: no extension for multiple create  https://review.openstack.org/39662213:19
*** slaweq_ has quit IRC13:26
*** slaweq_ has joined #openstack-nova13:26
*** baoli has joined #openstack-nova13:28
*** raildo has joined #openstack-nova13:28
*** lucas-hungry is now known as lucasagomes13:29
*** jwcroppe has joined #openstack-nova13:29
*** jwcroppe has quit IRC13:29
*** jwcroppe has joined #openstack-nova13:30
*** annegentle has quit IRC13:32
*** Hosam has quit IRC13:32
*** Hosam has joined #openstack-nova13:32
*** jwcroppe has quit IRC13:34
*** jheroux has joined #openstack-nova13:35
*** markvoelker has joined #openstack-nova13:35
*** baoli_ has joined #openstack-nova13:35
openstackgerritAlex Szarka proposed openstack/nova: Transform instance.rebuild.error notification  https://review.openstack.org/39662113:36
*** Hosam has quit IRC13:36
openstackgerritAlex Szarka proposed openstack/nova: Transform instance.rebuild.error notification  https://review.openstack.org/39662113:37
*** claudiub has joined #openstack-nova13:38
*** baoli has quit IRC13:38
*** ducttape_ has quit IRC13:40
*** claudiub|2 has quit IRC13:40
*** xyang1 has joined #openstack-nova13:43
*** cdent has quit IRC13:43
*** jjung has quit IRC13:48
*** alexchadin has joined #openstack-nova13:48
*** slaweq_ has quit IRC13:48
*** slaweq_ has joined #openstack-nova13:49
*** tlian has joined #openstack-nova13:51
*** alexchadin has quit IRC13:53
openstackgerritAlex Szarka proposed openstack/nova: Transform instance.rebuild.error notification  https://review.openstack.org/39662113:53
*** xavior1777 has quit IRC14:00
*** bvanhav_ has quit IRC14:00
*** edleafe is now known as figleaf14:01
alex_xujaypipes: hi, hope to get you help on this spec https://review.openstack.org/#/c/393205/, is it worth to add db index for all the columns which are allowed as filter/sort key?14:01
alex_xujaypipes: or is it ok without db index for admin-only filter/sort key?14:02
*** catinthe_ has joined #openstack-nova14:05
*** tonytan4ever has joined #openstack-nova14:05
jaypipesalex_xu: hi. was out with the flu all week. trying to catch up on reviews today. will definitely try to get to that one.14:05
jaypipesalex_xu: generally, yes, it's a very good idea to have indexes on anything that is sortable.14:05
*** mriedem has joined #openstack-nova14:07
alex_xujaypipes: got it, thanks!14:07
*** catintheroof has quit IRC14:08
*** tblakes has joined #openstack-nova14:11
*** manasm has joined #openstack-nova14:11
*** Dinesh_Bhor has quit IRC14:13
*** tbachman has quit IRC14:14
bhagyashrisjaypipes: Hi,   I am trying to test  [placement] REST API for  resource classes curl command by applying the patch https://review.openstack.org/#/c/391959 on my machine  , but i am getting 404 Resource NotFound error. can you please guide me to run it successfully.14:14
*** esberglu has joined #openstack-nova14:14
*** haplo37_ has quit IRC14:16
*** jorjoro has joined #openstack-nova14:16
*** eharney has joined #openstack-nova14:17
*** haplo37_ has joined #openstack-nova14:19
*** bvanhav_ has joined #openstack-nova14:20
*** smatzek has quit IRC14:20
*** jjung has joined #openstack-nova14:22
*** rama_y has joined #openstack-nova14:24
mdboothmriedem: So, mea culpa, I'm throwing this over the wall and running away all next week: https://blueprints.launchpad.net/nova/+spec/libvirt-imagebackend-refactor14:26
openstackgerritjichenjc proposed openstack/nova: Add context param to confirm_migration virt call  https://review.openstack.org/38369914:26
*** victorhe has joined #openstack-nova14:26
mdboothThe bp covers only the refactor, not any of the new functionality14:26
mdboothAs we put that out of scope for Ocata anyway14:27
mriedemmdbooth: we already had an ocata bp for that14:27
*** eharney has quit IRC14:27
mriedemhttps://blueprints.launchpad.net/nova/+spec/libvirt-instance-storage-ocata14:27
mdboothBleargh14:27
*** dikonoor has quit IRC14:28
mriedemif you want to use the new bp and supersede https://blueprints.launchpad.net/nova/+spec/libvirt-instance-storage-ocata then that's fine14:28
mdboothWell I guess it's whatever's most useful to you14:28
mdboothI already know what it's about :)14:28
*** jwcroppe has joined #openstack-nova14:28
*** jjung has quit IRC14:28
*** victorhe has quit IRC14:28
mdboothmriedem: I don't mind. I haven't pushed the series which references that bp, yet.14:29
mriedemyeah we'll just go with https://blueprints.launchpad.net/nova/+spec/libvirt-imagebackend-refactor since we don't know what we're doing with the storage part yet14:29
mriedemi'll supersede the other one14:29
mdboothmriedem: Ok, thanks.14:29
*** victorhe has joined #openstack-nova14:29
mdboothI'm going to attempt to push the part of the series I've rebased automatically over the weekend, btw.14:29
mdboothTo avoid unnecessary CI load14:30
mdboothSo if it doesn't turn up at all, it's because my job failed14:30
* mdbooth might manually push the first few14:30
*** eharney has joined #openstack-nova14:31
mdboothAlthough it's not that long right now: only about 9 patches I think14:31
*** kuzko has quit IRC14:31
mriedemok14:31
*** tbachman has joined #openstack-nova14:33
*** victorhe has quit IRC14:34
mdboothmriedem: Thanks14:34
*** sree has joined #openstack-nova14:34
*** kuzko has joined #openstack-nova14:35
*** ducttape_ has joined #openstack-nova14:36
mdboothmriedem: Could you remove your procedural -2 on this one, btw: https://review.openstack.org/#/c/331115/14:36
mriedemdone14:37
*** dansmith is now known as superdan14:37
*** sree has quit IRC14:39
mriedemsuperdan: so, i got to thinking about this series on the way into work https://review.openstack.org/#/c/396469/14:40
*** ducttape_ has quit IRC14:40
mriedemsuperdan: with nova-net, when we store the secgroups we're only getting the name14:40
mriedemwith ^ we'd be setting the id as the secgroup uuid (except the 'default' group)14:41
mriedemso thinking about how this will be used,14:41
mriedemwhen i pull the secgroups out of the reqspec, and i want to look up a secgroup, i have to determine if the name or id is set, and possibly what the type is14:41
mriedemwhich is pretty gross14:41
mriedemso i was thinking we could avoid the NeutronSecurityGroup new object if we just populate the list of secgroups for neutron by setting the name field too, like nova-net14:42
openstackgerritJulian proposed openstack/nova: Remove redundant VersionedObject Fields  https://review.openstack.org/38984014:42
superdanyou mean for rebuild?14:42
mriedemsuperdan: for whatever uses it14:42
mriedemsetting secgroup.name = uuid isn't awesome either,14:42
mriedembut i'm not sure it's worse, and it would be less new complexity from that series,14:42
mriedemand on the side that uses it, you'd still need to know if you're using neutron or not14:43
superdanmriedem: but a method on the object called get_ident() that does the logic of "if uuid, else name" would be easy, then you don't need to care14:43
superdanname = uuid is not okay, IMHO14:43
mriedemid = 'default' isn't great either :)14:43
mriedembut i guess we could massage that14:43
mriedemwith a get_identifer() method14:43
artommdbooth, oy, enough with the sass ;)14:43
superdanmriedem: yeah14:43
mdboothartom: I wasn't trying to be sassy :)14:43
mriedemi didn't detect any sass14:44
mdboothartom: Well, maybe a little14:44
mdbooth:P14:44
mdboothmriedem: I assume artom is referring to https://review.openstack.org/#/c/337158/14:44
*** dhellmann has left #openstack-nova14:45
mdboothartom: It's fine, I spent about 20 minutes rewriting the commit message, and I had to remind myself of the code flow.14:45
mdboothIt was a useful exercise.14:45
mriedemsuperdan: ok so to make sure we're on the same page, in https://review.openstack.org/#/c/396436/2 the NeutronSecurityGroup.id field is a uuid field14:45
artommdbooth, your essay will be evaluated on structure, quality of English, and creativity.14:45
mriedemand can only be uuid14:45
mriedemsuperdan: if the secgroup requested is 'default', then we set NeutronSecurityGroup.name14:46
mdboothartom: Prepare to be disappointed :)14:46
superdanmriedem: yeah14:46
* mdbooth likes lists of things and short sentences.14:46
mriedemsuperdan: and then the get_identifier() method goes on NeutronSecurityGroup or the parent SecurityGroup class?14:46
superdanmriedem: tbh, I wasn't going to do a separate object for this, and I'm not sure it really helps anything14:46
mriedemi guess the parent would have the id field and know if it's a uuid or not14:47
mriedemi was following what was done for NeutronFloatingIP14:47
superdanmriedem: oh, I missed that you redefined id in the subclass.. not really sure that's okay actually14:47
mriedemthat's what we do for NeutronFloatingIP...14:47
*** krtaylor has joined #openstack-nova14:47
superdanmriedem: especially if you expect to put it into a field that expects subclasses14:47
mriedemit's not a registered object, it's just for passing around14:47
*** sridharg has quit IRC14:48
*** bvanhav_ is now known as bvanhav14:48
superdanmriedem: you can't ever pass it over rpc if it's not registered14:48
mriedemright, i was wondering about that last night, because with NeutronFloatingIP it's just a convenience between the neutronv2 api code and the REST API14:48
superdanyeah14:48
mriedemand we don't put it into a FloatingIPList object, we just return it in a primitive list14:48
mriedemok so you're thinking add a uuid field to SecurityGroup proper?14:49
mriedemi'm ok with that approach too14:49
mriedemthought about it last night but didn't think of a get_identifier() helper14:49
superdanmriedem: yeah so if we just added a uuid, we could potentially stuff it into the db for n-net if we were keeping it, but since we're not, just make sure it's ignored there14:49
superdanmriedem: that would be my plan14:49
mriedemyeah, like i said, n-net just sets the name field and neutron would set name or uuid field14:49
superdanyeah14:50
mriedemok, i'll make that change14:50
*** david-lyle_ has joined #openstack-nova14:50
superdanI would set name and uuid for neutron, but understand why you might not want to14:50
superdanand then prefer uuid always14:50
superdanbut anyway14:50
mriedemwell, we don't have both at that point14:50
mriedemwe could, but it's more change14:50
mriedemin compute api i mean14:50
superdancompute api would just use get_ident() everywhere14:51
superdanbut anyway, it's a nit14:51
mriedemname for n-net is unique per tenant, but not for neutron - uuid is unique14:51
superdanright, I know14:51
mriedemi meant in _check_requested_security_groups14:51
mriedemthat's my bottom change14:51
mriedemtranslates the list of name string sto uuids14:51
superdananyway, this is a tiny detail, not worth arguing over14:51
mriedemi'll be in the cold cold ground before i submit to your name + uuid idea, smith!14:52
superdanheh14:52
* superdan steals a shameless review stat14:57
*** bhagyashris has quit IRC14:57
mriedemsuperdan: for SecurityGroup.save do we worry about popping 'uuid' out of updates in case someone mistakenly tries to save a secgroup object that has uuid set?14:58
*** kaisers_ has quit IRC14:58
mriedemthat would blow up in the db api14:58
rfolcomdbooth, I'm looking for an entry point to help with https://blueprints.launchpad.net/nova/+spec/libvirt-imagebackend-refactor, any pointers on where to start ?14:58
mriedemso not sure we need to explicitly check for it14:58
*** kaisers_ has joined #openstack-nova14:59
mdboothrfolco: You've caught me at the absolute worst time, unfortunately, as I'm about to have a meeting then leave for the day, and I'm off next week.14:59
superdanmriedem: yeah I think you should14:59
superdanmriedem: I mean, it's one line for safety right?14:59
mdboothrfolco: Is there any chance you could ping me again a week on Monday?14:59
mriedemsuperdan: yeah15:00
mriedemwill do15:00
rfolcomdbooth, works for me. Will study the code until there.15:00
rfolcomdbooth, enjoy your week off, thanks.15:01
*** walharthi has joined #openstack-nova15:03
*** tbachman_ has joined #openstack-nova15:04
*** preethipy has joined #openstack-nova15:04
*** pbandark`brb has quit IRC15:05
*** tanvirt has joined #openstack-nova15:05
*** jorjoro has left #openstack-nova15:05
*** tbachman has quit IRC15:06
*** rama_y has quit IRC15:06
*** tbachman_ is now known as tbachman15:06
*** rama_y has joined #openstack-nova15:06
*** ducttape_ has joined #openstack-nova15:07
*** mlavalle has joined #openstack-nova15:07
*** cdent has joined #openstack-nova15:08
cdentdid anyone respond to bhagyashris about needing to set the microversion? I've added a note to the review15:14
*** smatzek has joined #openstack-nova15:14
mriedemcdent: which review?15:15
cdentmriedem: [t qk3]15:15
purplerbot<bhagyashris> cdent: Hi, I am trying to test  set_ and get_ aggregates on the ResourceProvider apis  through curl command by applying the patch on my machine https://review.openstack.org/#/c/357993/ , but i am getting 404 Resource NotFound error. can you please guide me to run it successfully. [2016-11-11 13:05:40] [n qk3]15:15
mriedemoh i see15:16
mriedemthey asked the same about getting resource classes15:16
cdentyeah [t BCs]15:16
purplerbot<bhagyashris> jaypipes: Hi,   I am trying to test  [placement] REST API for  resource classes curl command by applying the patch https://review.openstack.org/#/c/391959 on my machine  , but i am getting 404 Resource NotFound error. can you please guide me to run it successfully. [2016-11-11 14:14:15] [n BCs]15:16
*** sree has joined #openstack-nova15:16
mriedemwe need some docs on the placement REST API15:16
mriedemso we can redirect there15:16
cdentboth boost the microversion, so I'm guessing that wasn't clear obvious15:16
cdentyes: that's in here: http://lists.openstack.org/pipermail/openstack-dev/2016-November/107171.html15:17
mriedemprobably not, especially since we don't have an external client doing that for you automatically like novaclient does15:17
cdent"that's" == need for docs15:17
cdentI actually think that until we are "done" with what could legitmately be called the first version of the placement api we should be microversioning15:18
cdentwe should wait for stability and call that 1.015:18
melwittjaypipes: at the summit you mentioned re-looking at the root_gb=0 RT patch of mine again. when you get a chance, could you let me know what your thoughts were on that?15:18
cdentwithout aggregates and resource classes it isn't fully functional15:18
*** yamahata has joined #openstack-nova15:19
cdents/we should be/we shouldn't be/ (sigh)15:20
*** mlavalle has quit IRC15:21
openstackgerritVasyl Saienko proposed openstack/nova-specs: Proposal for ironic static portgroups support  https://review.openstack.org/38753415:21
*** tbachman_ has joined #openstack-nova15:22
*** mlavalle has joined #openstack-nova15:24
*** tbachman has quit IRC15:25
*** tbachman_ is now known as tbachman15:25
*** manasm has quit IRC15:26
*** mriedem1 has joined #openstack-nova15:26
mriedem1cdent: not really sure but we are going to require that the placement service is stood up in neutron before going to ocata,15:26
mriedem1so it seemed prudent to have microversions for the client in ocata to know what it can and can't do15:27
*** liverpooler has joined #openstack-nova15:27
*** mriedem has quit IRC15:27
mriedem1s/neutron/newton/15:27
* cdent nods15:27
cdentmicroversioning is all there and fine and working, so its fine15:28
mriedem1we should probably figure out the upgrade plan before making a decision on if we need to be using microversions in ocata,15:28
cdentthat's on that email summary too15:29
mriedem1i.e. do we require that placement (nova-api) is updated before computes15:29
cdent(the need to figure it out, not a plan)15:29
*** claudiub|2 has joined #openstack-nova15:29
openstackgerritRadoslav Gerganov proposed openstack/nova: VMware: Add new hv_type for supporting nested hypervisors  https://review.openstack.org/39667015:29
mriedem1superdan: keep me honest, today upgrade is conductor, api and then computes?15:29
superdanmriedem1: yar15:29
mriedem1if we have ^ then newton computes will be fine with ocata placement api15:30
mriedem1as long as the ocata placement api doesn't make backward incompatible changes to break newton computes15:30
mriedem1which is why we have microversions15:30
*** claudiub|3 has joined #openstack-nova15:30
mriedem1newton computes will only request 1.015:30
*** mriedem1 is now known as mriedem15:30
mriedembut with cells v2 we're going to do conductors in all cells, then computes, and then api15:31
cdentit's going to be so much fun15:31
superdanmriedem: no15:31
mriedemall conductors, then api and then all computes?15:32
superdanmriedem: for cell in cells: conductor; compute; api15:32
*** takedakn has joined #openstack-nova15:32
superdanhmm, that wasn't as obvious as I wanted15:32
superdanupgrade cells then upgrade api when they're all done15:32
superdanwithin a cell, conductors first, if desired15:32
*** claudiub has quit IRC15:33
*** preethipy has quit IRC15:33
*** claudiub|2 has quit IRC15:33
*** zzelle has joined #openstack-nova15:33
mriedemi think i meant the same thing15:34
superdanokay sorry15:34
mriedemeither way api last15:34
superdanyeah15:34
superdanI want to avoid having to touch all cells in parallel,15:34
mriedemso ocata RT can be requesting let's say placement 1.3 and placement might be newton so only has 1.015:34
*** tbachman has quit IRC15:34
superdanso "conductors in all cells, then computes" makes it sound like you upgrade the conductor in each cell, then you can move on and do computes in each cell, etc15:34
mriedemcell by cell15:35
mriedemwithin a cell, conductors and then computes15:35
mriedemonce all done, upgrade api15:35
mriedemright?15:35
superdanmriedem: yeah, but when placement is moved outside, we'll need to be legit with our api negotiation anyway, just like we should be with cinder and neutron15:35
superdanmriedem: yes15:35
mriedemsuperdan: right, that too, i want to treat placement like it's already outside of nova15:35
superdanmriedem: right15:35
mriedemso doing version discovery15:35
superdanagreed15:35
cdentspeaking of the tracker using placement, superdan, have you seen : https://review.openstack.org/#/c/395971/15:36
cdentfix for max_unit handling15:36
*** marst has quit IRC15:38
*** jaypipes is now known as leakypipes15:39
leakypipesmelwitt: link for me pls?15:39
leakypipespurplerbot: did you add "OpenStack-API-Version: placement 1.1" header?15:40
*** rama_y has quit IRC15:40
melwittleakypipes: https://review.openstack.org/35509115:40
leakypipesmelwitt: cheers15:40
*** rama_y has joined #openstack-nova15:40
*** liverpooler has quit IRC15:40
*** mriedem has quit IRC15:41
*** zz_dimtruck is now known as dimtruck15:44
superdancdent: I had not15:44
*** mriedem has joined #openstack-nova15:45
superdancdent: also not sure that's the right thing, as I thought max_unit was supposed to be a multiplier15:45
cdentsuperdan: the author of that basically pulled the necessary from leakypipes' original version15:45
superdanhmm15:45
cdentstep_size is the multiplier15:45
*** fragatina has quit IRC15:45
*** alexchadin has joined #openstack-nova15:45
superdanso max_unit is the largest single allocation allowed?15:45
cdentyes15:46
superdanso should that be memory - reserved ?15:46
*** fragatina has joined #openstack-nova15:46
cdentthat's a question I was wondering too15:46
markus_zmelwitt / danpb: https://review.openstack.org/#/c/395067/ would resolve a bug which blocks the s390x CI. Would be nice if you could take a look.15:47
superdancdent: but you didn't comment?15:47
superdancdent: left a question, maybe leakypipes will hit that first15:47
*** marst has joined #openstack-nova15:47
*** eharney has quit IRC15:47
cdentI didn't leave a comment because the original code: https://review.openstack.org/#/c/363583/1/nova/scheduler/client/report.py15:48
cdentline 8515:48
superdanstill deserves review, but we'll see what he says15:48
cdentwell, exactly, that's why I'm pointing it out to you15:49
cdentmy +1 is effectively "this is good enough to be in the ballpark, and I'd like jay and dan to see it"15:49
melwittmarkus_z: will take a look15:50
mriedemmarkus_z: that's a beautiful change and i applaud the submitter15:50
*** walharthi has quit IRC15:51
markus_zmriedem: I printed and framed it already. Looks nice at my wall.15:51
superdancdent: noted15:51
cdentroger over under done15:51
melwitt:)15:51
*** slaweq_ has quit IRC15:52
markus_zmriedem: thanks a lot for solving that (I didn't say that before)15:52
*** hongbin has joined #openstack-nova15:52
*** jaugustine has joined #openstack-nova15:53
mriedemnp15:53
*** slaweq_ has joined #openstack-nova15:53
leakypipessuperdan, cdent: trying to get through email backlog. will be reviewing in about 30 minutes (hopefully). sorry, still catching up after being in bed for the past 3 days. :(15:54
cdentleakypipes: we have all the time in the world, really. No rush. You feeling better, or just too bored not to work?15:54
*** sree has quit IRC15:55
*** rrecio_ has joined #openstack-nova15:56
leakypipescdent: I'm cogent, which is more than I can say for the last couple days.15:57
openstackgerritRoman Podoliaka proposed openstack/nova: block_device: fix propagation of instance AZ to Cinder  https://review.openstack.org/36672415:57
*** smatzek has quit IRC15:57
cdentcogency is overrated15:57
*** alexchadin has quit IRC15:57
*** zenoway has quit IRC15:57
cdentleakypipes: I assume you've grokked that I rebased your nested resource providers stack. Anything else like that I could or should help with?15:58
*** zenoway has joined #openstack-nova15:58
*** smatzek has joined #openstack-nova15:58
*** prashkre has quit IRC15:58
*** eharney has joined #openstack-nova16:00
*** sree has joined #openstack-nova16:01
*** Zer0Byte__ has joined #openstack-nova16:01
*** zenoway has quit IRC16:02
leakypipescdent: no, thank you for that. I had it done locally but didn't push it before going into flu-bed. :(16:03
leakypipessuperdan, cdent: ok, reviewed the max_unit patch.16:03
*** annegentle has joined #openstack-nova16:04
*** jaugustine has quit IRC16:04
*** rcernin has quit IRC16:05
*** sree has quit IRC16:05
openstackgerritSujitha proposed openstack/nova: Improve help text for network  options.  https://review.openstack.org/34120316:05
openstackgerritMaciej Szankin proposed openstack/nova: conf: fix formatting in wsgi  https://review.openstack.org/39637416:06
*** Oku_OS is now known as Oku_OS-away16:06
*** marst has quit IRC16:06
*** marst has joined #openstack-nova16:06
*** david-lyle_ has quit IRC16:07
openstackgerritMatt Riedemann proposed openstack/nova: neutron: return SecurityGroupList from populate_security_groups  https://review.openstack.org/39646916:07
openstackgerritMatt Riedemann proposed openstack/nova: Add uuid field to SecurityGroup object  https://review.openstack.org/39643616:07
*** rama_y has quit IRC16:07
mriedemalright superdan thar she blar16:08
superdanack16:08
mriedemi'm going to be out for awhile16:08
leakypipesCIAO16:11
leakypipesyikes, sorry for yelling.16:11
*** scsnow has quit IRC16:11
*** ijw has joined #openstack-nova16:13
*** fragatina has quit IRC16:16
*** jvgrant__ has quit IRC16:16
*** jvgrant__ has joined #openstack-nova16:17
*** efried1 has joined #openstack-nova16:20
*** tonytan4ever has quit IRC16:20
*** bnemec is now known as beekneemech16:22
*** efried has quit IRC16:22
openstackgerritMatthew Booth proposed openstack/nova: libvirt: Rewrite _test_finish_migration  https://review.openstack.org/33715916:22
openstackgerritMatthew Booth proposed openstack/nova: libvirt: Test disk creation in test_hard_reboot  https://review.openstack.org/33899316:22
openstackgerritMatthew Edmonds proposed openstack/nova: Separate CRUD policy for server_groups  https://review.openstack.org/39111316:23
*** gmann has joined #openstack-nova16:23
*** armax has joined #openstack-nova16:23
mriedemcdent: ok put some thoughts in your rp update email16:24
mriedemthanks for sending that16:24
cdentcool16:24
* cdent likes thoughts16:24
openstackgerritMatthew Edmonds proposed openstack/nova: Separate CRUD policy for server_groups  https://review.openstack.org/39111316:25
*** bvanhav has quit IRC16:26
*** mriedem1 has joined #openstack-nova16:26
*** mriedem1 has quit IRC16:26
*** mriedem1 has joined #openstack-nova16:27
*** mriedem1 is now known as mriedem_afk16:27
*** gmann has quit IRC16:28
*** annegentle has quit IRC16:28
*** mriedem has quit IRC16:28
*** annegentle has joined #openstack-nova16:29
*** takedakn has quit IRC16:30
leakypipesalex_xu: reviewed.16:31
*** haplo37 has quit IRC16:31
* cdent heads home16:32
*** cdent has quit IRC16:32
*** haplo37 has joined #openstack-nova16:32
*** avolkov has quit IRC16:38
edmondswmriedem, can you help get this cherrypick merged? https://review.openstack.org/#/c/396151/16:39
edmondswthat regression issue we fixed in master the other day16:39
*** browne has joined #openstack-nova16:41
*** victorhe has joined #openstack-nova16:41
*** Guest7605 has quit IRC16:43
*** josecastroleon has quit IRC16:44
*** slaweq_ has quit IRC16:46
*** stewie925 has joined #openstack-nova16:47
*** slaweq_ has joined #openstack-nova16:47
*** armax has quit IRC16:49
*** bvanhav has joined #openstack-nova16:50
*** tbachman has joined #openstack-nova16:50
*** belmoreira has quit IRC16:50
*** armax has joined #openstack-nova16:51
*** ralonsoh has quit IRC16:53
*** david-lyle_ has joined #openstack-nova16:56
*** walharthi has joined #openstack-nova16:57
*** nic has joined #openstack-nova16:58
*** david-lyle has quit IRC16:58
*** preethipy has joined #openstack-nova16:59
*** david-lyle_ has quit IRC17:01
*** rama_y has joined #openstack-nova17:04
openstackgerritint32bit proposed openstack/nova: Add lock actions to action-list  https://review.openstack.org/39651017:05
markus_z:D that username17:06
*** tojuvone has joined #openstack-nova17:06
*** tojuvone_ has joined #openstack-nova17:06
*** walharthi has quit IRC17:07
*** tojuvone_ has quit IRC17:07
*** Swami has joined #openstack-nova17:08
*** mdrabe has joined #openstack-nova17:11
*** mrsoul has quit IRC17:12
*** cdent has joined #openstack-nova17:12
*** sambetts is now known as sambetts|afk17:16
*** Apoorva has joined #openstack-nova17:22
*** paul-carlton2 has quit IRC17:26
leakypipesmelwitt: reviewed.17:27
*** unicell has quit IRC17:28
melwittthanks leakypipes17:28
*** unicell has joined #openstack-nova17:28
openstackgerritAlex Szarka proposed openstack/nova: Transform instance.rebuild.error notification  https://review.openstack.org/39662117:39
*** derekh has quit IRC17:42
*** danpb has quit IRC17:42
*** lucasagomes is now known as lucas-afk17:48
*** smatzek has quit IRC17:51
*** sudipto has quit IRC17:51
*** sudipto_ has quit IRC17:51
*** esberglu has quit IRC17:51
*** smatzek has joined #openstack-nova17:52
*** esberglu has joined #openstack-nova17:52
*** nherciu has joined #openstack-nova17:53
*** kaisers_ has quit IRC17:54
*** yamahata has quit IRC17:55
*** walharthi has joined #openstack-nova17:56
*** bvanhav_ has joined #openstack-nova17:58
*** david-lyle has joined #openstack-nova17:58
*** bvanhav has quit IRC17:58
*** alexchadin has joined #openstack-nova18:01
*** david-lyle has quit IRC18:03
mriedem_afkedmondsw: yeah18:03
*** mriedem_afk is now known as mriedem18:03
*** tbachman_ has joined #openstack-nova18:04
openstackgerritjichenjc proposed openstack/python-novaclient: Add version pin for image related function  https://review.openstack.org/39252318:05
*** tbachman has quit IRC18:07
*** tbachman_ is now known as tbachman18:07
dimsfeeling better leakypipes ?18:09
mriedemcdent: i'll take a crack at starting some placement docs in tree this afternoon18:09
mriedemnothing fancy but it'll be a start18:09
*** fragatina has joined #openstack-nova18:10
*** rcernin has joined #openstack-nova18:10
cdentmriedem: great, having a structure to start attaching things to will overcome inertia nicely18:11
*** ihrachys has quit IRC18:12
*** rcernin has quit IRC18:12
*** brault has joined #openstack-nova18:12
*** ijw has quit IRC18:15
*** brault has quit IRC18:17
*** lpetrut has quit IRC18:22
*** tbachman has quit IRC18:23
hongbinmriedem: hi, i am working on openstack container project, i need your help for one thing. do you have a minute?18:24
*** preethipy has quit IRC18:27
*** fragatina has quit IRC18:27
*** unicell has quit IRC18:28
*** fragatina has joined #openstack-nova18:28
mriedemhongbin: sure, i'll try18:29
*** david-lyle_ has joined #openstack-nova18:30
hongbinmriedem: thx. i have a patch for devstack, and they wanted someone from nova to review it before approving. i wanted to know if you could recommend a person to review it18:30
hongbinmriedem: here is the patch: https://review.openstack.org/#/c/382063/18:30
mriedemthis is to load a nova-docker virt driver or something?18:32
hongbinyes, to load a virt driver that is similar to nova-docker18:32
mriedembtw ianw asked for sdague probably because of his involvement with devstack more so than nova18:32
*** victorhe has quit IRC18:32
hongbinsdague is not online....18:33
mriedemhongbin: why can't you use something like https://github.com/openstack-dev/devstack/tree/master/lib/nova_plugins/hypervisor-docker then?18:33
*** smatzek_ has joined #openstack-nova18:33
hongbinthe link is broken18:33
*** victorhe has joined #openstack-nova18:34
mriedemi mean a lib/nova_plugins/hypervisor-docker file18:34
mriedemin the devstack plugin18:34
*** alexchadin has quit IRC18:34
mriedemwhy does the lib/nova_plugins dir need to be overridden?18:34
mriedemif you're loading something up into nova18:34
hongbinthat means every chances we wanted need to go through devstack review process18:34
hongbinwhich is undesirable.....18:34
*** yamahata has joined #openstack-nova18:35
edmondswmriedem tx18:35
mriedemi'm not following, you don't need to go through devstack if you have a devstack plugin18:35
mriedemhongbin: see how the powervm driver does it http://git.openstack.org/cgit/openstack/nova-powervm/tree/devstack/plugin.sh18:35
hongbinif i override the variable, i can have a out-of-tree plugin18:35
mriedemhongbin: you don't need to override the variable to have an out of tree plugin18:35
hongbinmriedem: ok, good to know. let me checkout the powervm plugin18:36
*** smatzek has quit IRC18:36
*** david-lyle_ has quit IRC18:36
*** david-lyle has joined #openstack-nova18:36
*** markus_z has quit IRC18:37
*** annegentle has quit IRC18:37
*** annegentle has joined #openstack-nova18:39
*** Sukhdev has joined #openstack-nova18:40
mriedemsuperdan: can you answer the riddle of 'these' in here? https://review.openstack.org/#/c/396436/3/nova/objects/security_group.py18:41
superdanyes18:42
mriedemok i'll remove it18:42
openstackgerritMatt Riedemann proposed openstack/nova: neutron: return SecurityGroupList from populate_security_groups  https://review.openstack.org/39646918:43
openstackgerritMatt Riedemann proposed openstack/nova: Add uuid field to SecurityGroup object  https://review.openstack.org/39643618:43
*** rrecio_ has quit IRC18:43
openstackgerritMatt Riedemann proposed openstack/nova: neutron: actually populate list in populate_security_groups  https://review.openstack.org/39646918:44
*** gszasz has quit IRC18:44
*** yamahata has quit IRC18:44
*** josecastroleon has joined #openstack-nova18:45
*** yamahata has joined #openstack-nova18:45
*** josecastroleon has quit IRC18:46
*** ijw has joined #openstack-nova18:47
*** tonytan4ever has joined #openstack-nova18:54
*** tonytan4ever has quit IRC18:54
*** tonytan4ever has joined #openstack-nova18:54
*** harlowja has joined #openstack-nova18:55
*** catinthe_ has quit IRC18:56
*** unicell has joined #openstack-nova18:56
*** annegentle has quit IRC18:59
*** annegentle has joined #openstack-nova19:01
*** nherciu has quit IRC19:04
openstackgerritKaren Bradshaw proposed openstack/nova: API Ref: update server_id params  https://review.openstack.org/38466419:05
*** ijw has quit IRC19:06
*** pcaruana has quit IRC19:07
*** cdent has quit IRC19:08
*** belliott has joined #openstack-nova19:08
*** jamesdenton has joined #openstack-nova19:14
*** tbachman has joined #openstack-nova19:15
openstackgerritint32bit proposed openstack/nova: Add lock actions to action-list  https://review.openstack.org/39651019:15
*** nherciu has joined #openstack-nova19:17
*** tbachman_ has joined #openstack-nova19:20
*** burt has joined #openstack-nova19:22
*** tbachman has quit IRC19:22
*** tbachman_ is now known as tbachman19:22
*** catintheroof has joined #openstack-nova19:25
*** catintheroof has quit IRC19:27
*** tbachman_ has joined #openstack-nova19:28
*** catintheroof has joined #openstack-nova19:29
*** victorhe has quit IRC19:29
*** tbachman has quit IRC19:31
*** tbachman_ is now known as tbachman19:31
*** ijw has joined #openstack-nova19:33
*** nherciu has quit IRC19:33
*** lpetrut has joined #openstack-nova19:36
*** ijw has quit IRC19:37
*** catintheroof has quit IRC19:42
*** annegentle has quit IRC19:44
openstackgerritPushkar Umaranikar proposed openstack/nova: Placement api: Add informative message to 404 response.  https://review.openstack.org/39232119:46
*** annegentle has joined #openstack-nova19:49
*** zzelle has quit IRC19:51
superdanmelwitt: is the db_connection in context supposed to make it over rpc?19:53
*** catintheroof has joined #openstack-nova19:55
*** TravT has joined #openstack-nova19:56
*** catintheroof has quit IRC19:59
*** annegentle has quit IRC19:59
*** annegentle has joined #openstack-nova20:00
melwittsuperdan: no20:02
superdanokay good, 'cause it ain't :)20:02
melwittheh. it contains sensitive info so we didn't want it to go over rpc if possible20:03
melwittand we thought it shouldn't be needed to go over rpc20:03
superdanyeah20:03
kashyapmelwitt: mriedem: Following up from last evening, I just tested -- you don't need to have to `pip install` anything when you download a patch from `git-review -d $ID` into Nova's Git tree20:09
kashyapDevStack works it out just fine.20:09
*** rrecio has joined #openstack-nova20:11
*** cfriesen has quit IRC20:11
melwittkashyap: that's good. did you figure out what was going wrong with whatever you were trying to do last time?20:12
*** walharthi has quit IRC20:12
kashyapmelwitt: No, that franken VM has given me enough grief that I don't want to touch it with a 10 foot pole20:13
* kashyap is on flaky mobile data on the train; might drop off any moment20:13
melwitthaha, okay20:13
*** ijw has joined #openstack-nova20:14
*** ijw has quit IRC20:19
*** tblakes has quit IRC20:21
*** rrecio_ has joined #openstack-nova20:23
*** rrecio has quit IRC20:23
*** Hosam has joined #openstack-nova20:23
openstackgerritMatt Riedemann proposed openstack/nova: Add the initial documentation for the placement API  https://review.openstack.org/39676120:27
mriedemfigleaf: leakypipes: superdan: ^ a start20:27
figleafmriedem: cool; will review soon20:28
*** thorst has quit IRC20:31
leakypipesmriedem: awesomesauce. will hop right on that. thanks much!20:31
*** thorst has joined #openstack-nova20:32
leakypipeshow did nicolas bock do a +1 so quickly on that? :(20:32
leakypipesmust be a very fast reader.20:33
openstackgerritjichenjc proposed openstack/nova: WIP: no extension for multiple create  https://review.openstack.org/39662220:34
*** thorst has quit IRC20:36
*** tblakes has joined #openstack-nova20:37
*** clenimar has quit IRC20:37
*** sayalilunkad has quit IRC20:38
*** sayalilunkad has joined #openstack-nova20:39
*** alexpilotti has joined #openstack-nova20:40
*** bvanhav_ has quit IRC20:41
*** smatzek_ has quit IRC20:41
*** jwcroppe has quit IRC20:44
*** jwcroppe has joined #openstack-nova20:45
*** catintheroof has joined #openstack-nova20:45
jrollour portgroups thing is now ready for y'all's spec review jam :) https://review.openstack.org/#/c/387534/20:45
*** jwcroppe has quit IRC20:49
*** Sukhdev has quit IRC20:50
openstackgerritSujitha proposed openstack/nova: Improve help text for network  options.  https://review.openstack.org/34120320:51
*** thorst has joined #openstack-nova20:54
*** victorhe has joined #openstack-nova20:55
*** raildo has quit IRC20:55
*** ijw has joined #openstack-nova20:55
*** lpetrut has quit IRC20:57
*** thorst has quit IRC20:58
*** Apoorva has quit IRC20:58
*** haplo37 has quit IRC20:58
superdanmelwitt: so, I've made progress such that I can run functional tests in a single thread20:59
superdanmelwitt: but not in parallel20:59
superdanmelwitt: we have to be able to configure the main db connection to be the cell because compute manager just expects that it is in its own cell, which is fine for real environments20:59
superdanmelwitt: but there are all kinds of crazy problems trying to do that for the tests20:59
superdanmelwitt: about to push up what I have with a big brain dump in the fixture patch21:00
*** rfolco has quit IRC21:00
superdanmelwitt: I'm nearly at table-flip stage, so I'm going to push it up if you want to look and otherwise defer to monday21:00
*** ijw has quit IRC21:00
*** TravT has quit IRC21:00
openstackgerritDan Smith proposed openstack/nova: Return build_requests instead of instances  https://review.openstack.org/37426721:01
openstackgerritDan Smith proposed openstack/nova: Add schedule_and_build_instances conductor method  https://review.openstack.org/36755721:01
openstackgerritDan Smith proposed openstack/nova: Refactor two nearly useless secgroup tests  https://review.openstack.org/39343821:01
openstackgerritDan Smith proposed openstack/nova: Make RPCFixture support multiple connections  https://review.openstack.org/39641721:01
openstackgerritDan Smith proposed openstack/nova: WIP Add CellDatabase fixture  https://review.openstack.org/39292521:01
openstackgerritDan Smith proposed openstack/nova: Store security groups in RequestSpec  https://review.openstack.org/39465621:01
openstackgerritDan Smith proposed openstack/nova: WIP Move instance creation to conductor  https://review.openstack.org/31937921:01
openstackgerritDan Smith proposed openstack/nova: WIP Multicell support for instance listing  https://review.openstack.org/39677521:01
melwittsuperdan: okay, will take a look. thanks for the hard work21:01
superdanwell, wish it was farther21:02
superdanI mean it works for real, and works in a single thread21:02
superdanbut..21:02
melwittmeh, I know what it's like trying to get our test fixtures to work in this way and ... it is very hard. so I think this is pretty good21:03
*** walharthi has joined #openstack-nova21:03
*** maticue has quit IRC21:03
*** thorst has joined #openstack-nova21:04
*** jwcroppe has joined #openstack-nova21:07
*** jwcroppe has quit IRC21:07
*** jwcroppe has joined #openstack-nova21:07
*** haplo37 has joined #openstack-nova21:07
*** ducttape_ has quit IRC21:09
mriedemleakypipes: i'll update the first thing, but see if my reply still makes you want your update here https://review.openstack.org/#/c/396761/1/doc/source/placement.rst@6021:14
leakypipesmriedem: yeah, makes sense. it was more of a nit than anything else.21:20
*** jheroux has quit IRC21:22
*** tanvirt has quit IRC21:26
*** oanson has quit IRC21:27
*** rama_y has quit IRC21:30
figleafleakypipes: mriedem: I thought that the separate DB for placement was optional in Newton. Did we remove that?21:31
*** harlowja has quit IRC21:32
mriedemfigleaf: yes was reverted21:32
figleafah, ok. I thought that only the *requirement* was reverted21:32
*** Jeffrey4l has quit IRC21:33
*** catinthe_ has joined #openstack-nova21:34
*** catintheroof has quit IRC21:34
jrollmriedem: so this was either deprecated or removed in nova, forget which, did you want to keep the tempest tests around for stable branches? https://github.com/openstack/tempest/blob/master/tempest/api/compute/admin/test_baremetal_nodes.py21:38
jrollthis is the os-baremetal extension or whatever21:38
*** walharthi has quit IRC21:38
*** rama_y has joined #openstack-nova21:40
*** sacharya has joined #openstack-nova21:43
*** sacharya has quit IRC21:43
jrollmriedem: now that I think about it, those probably never run, because we use a regex on our tempest runs that wouldn't match that21:44
jrolland it only runs if ironic is enabled21:44
*** ducttape_ has joined #openstack-nova21:44
*** brault has joined #openstack-nova21:48
edmondswmriedem, another cherrypick to stable/newton: https://review.openstack.org/#/c/396782/21:50
*** Apoorva has joined #openstack-nova21:52
*** brault has quit IRC21:53
*** eharney has quit IRC21:57
mriedemjroll: it's deprecated in nova microversion 2.36, we won't be removing that unless we ever have the minimum microversion at that level21:59
mriedemwhich might never happen, but if it did would probably be a long ways out21:59
*** Sukhdev has joined #openstack-nova21:59
mriedemedmondsw: i'll look at that if superdan does21:59
*** browne has quit IRC22:01
jrollmriedem: ah right22:03
*** Sukhdev has quit IRC22:05
*** dave-mccowan has quit IRC22:06
*** tonytan4ever has quit IRC22:07
*** victorhe has quit IRC22:08
edmondswmriedem, tx22:09
*** gmann has joined #openstack-nova22:09
*** edmondsw has quit IRC22:12
openstackgerritjichenjc proposed openstack/nova: WIP: no extension for multiple create  https://review.openstack.org/39662222:13
*** Sukhdev has joined #openstack-nova22:14
*** ijw has joined #openstack-nova22:14
openstackgerritMatt Riedemann proposed openstack/nova: Add the initial documentation for the placement API  https://review.openstack.org/39676122:21
mriedemleakypipes: made that little s/will/may/ change for you ^22:22
*** rama_y has quit IRC22:22
mriedembtw this is what it ends up looking like http://docs-draft.openstack.org/61/396761/1/check/gate-nova-docs-ubuntu-xenial/21829cc//doc/build/html/placement.html22:22
*** rama_y has joined #openstack-nova22:23
leakypipesmriedem: +2 again.22:26
mriedemthanks22:26
mriedemwith that i'm going to call it a day22:26
*** mriedem has quit IRC22:27
*** rama_y has quit IRC22:28
*** jamesdenton has quit IRC22:28
*** tblakes has quit IRC22:34
*** esberglu has quit IRC22:41
*** esberglu has joined #openstack-nova22:41
*** esberglu has quit IRC22:46
openstackgerritijw-ubuntu proposed openstack/nova-specs: Add the information Nova requires for a port to the port itself  https://review.openstack.org/39051322:48
*** mariusv has quit IRC22:51
*** mariusv has joined #openstack-nova22:51
*** mariusv has quit IRC22:51
*** mariusv has joined #openstack-nova22:51
*** sree has joined #openstack-nova22:57
*** gmann_ has joined #openstack-nova22:57
*** mdrabe has quit IRC22:58
*** gmann has quit IRC22:59
*** sree has quit IRC23:01
*** harlowja has joined #openstack-nova23:01
*** annegentle has quit IRC23:04
*** rama_y has joined #openstack-nova23:06
*** ijw has quit IRC23:09
stewie925hello, whats the difference between resize and resize_prep instance states?23:09
*** ijw has joined #openstack-nova23:12
*** rama_y has quit IRC23:13
*** walharthi has joined #openstack-nova23:15
*** xyang1 has quit IRC23:15
*** ijw has quit IRC23:16
*** ijw has joined #openstack-nova23:16
*** inara has quit IRC23:17
*** inara has joined #openstack-nova23:18
*** pradk has quit IRC23:19
stewie925basically, am looking to test resize_prep notifications, but couldnt find anything online that shows how to do the request body for the resize_prep23:21
*** ijw has quit IRC23:22
*** umbSublime_ has quit IRC23:24
*** ducttape_ has quit IRC23:24
*** baoli_ has quit IRC23:25
*** rrecio_ has quit IRC23:26
*** lamt has quit IRC23:29
*** Jeffrey4l has joined #openstack-nova23:31
*** unicell has quit IRC23:31
*** rfolco has joined #openstack-nova23:33
stewie925or I mean, what 'post server action' would result in a resize_prep statu23:35
stewie925status23:35
*** marst has quit IRC23:40
openstackgerritSujitha proposed openstack/nova: Change os-server-tags default policy  https://review.openstack.org/39642023:42
*** Sukhdev has quit IRC23:42
*** victorhe has joined #openstack-nova23:43
*** umbSublime_ has joined #openstack-nova23:43
*** ducttape_ has joined #openstack-nova23:46
*** ducttape_ has quit IRC23:47
*** ducttape_ has joined #openstack-nova23:47
*** nicolasbock has quit IRC23:47
*** rfolco has quit IRC23:48
*** umbSublime_ has quit IRC23:49
*** umbSublime_ has joined #openstack-nova23:49
*** marst has joined #openstack-nova23:50
*** ijw has joined #openstack-nova23:50
*** Hosam has quit IRC23:53
*** Hosam has joined #openstack-nova23:54
*** ijw has quit IRC23:55
*** ducttape_ has quit IRC23:57
*** catinthe_ has quit IRC23:58
*** Hosam has quit IRC23:58
*** unicell has joined #openstack-nova23:59

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