*** openstack has joined #openstack-manila | 09:55 | |
*** ChanServ sets mode: +o openstack | 09:55 | |
*** maaritamm has quit IRC | 10:52 | |
*** maaritamm has joined #openstack-manila | 11:11 | |
openstackgerrit | Helen Walsh proposed openstack/manila master: VNX/PowerMax: Fix export locations https://review.opendev.org/718942 | 11:15 |
---|---|---|
*** andrebeltrami has joined #openstack-manila | 11:24 | |
*** felipe_rodrigues has quit IRC | 11:37 | |
*** maaritamm has quit IRC | 11:43 | |
*** maaritamm has joined #openstack-manila | 11:46 | |
*** felipe_rodrigues has joined #openstack-manila | 12:13 | |
*** maaritamm has quit IRC | 12:20 | |
*** maaritamm has joined #openstack-manila | 12:21 | |
*** lpetrut has quit IRC | 12:54 | |
*** lpetrut has joined #openstack-manila | 13:01 | |
*** walshh_ has quit IRC | 13:50 | |
*** walshh_ has joined #openstack-manila | 13:50 | |
openstackgerrit | Merged openstack/manila master: [NetApp] Fix vserver peer creation with same vserver https://review.opendev.org/719674 | 13:50 |
openstackgerrit | Douglas Viroel proposed openstack/manila stable/train: [NetApp] Fix vserver peer creation with same vserver https://review.opendev.org/719985 | 14:18 |
*** lpetrut has quit IRC | 14:24 | |
*** maaritamm has quit IRC | 14:39 | |
*** maaritamm has joined #openstack-manila | 15:14 | |
*** maaritamm has quit IRC | 16:09 | |
*** maaritamm has joined #openstack-manila | 16:32 | |
*** maaritamm has quit IRC | 16:45 | |
openstackgerrit | Victoria Martinez de la Cruz proposed openstack/python-manilaclient master: [DNM] Testing master branch https://review.opendev.org/720038 | 17:42 |
openstackgerrit | Carlos Eduardo proposed openstack/manila-tempest-plugin master: Update share quota functional tests https://review.opendev.org/712786 | 18:05 |
*** maaritamm has joined #openstack-manila | 18:29 | |
openstackgerrit | Merged openstack/manila master: Enable the use scheduler creating share from snapshot flag https://review.opendev.org/712518 | 19:01 |
openstackgerrit | Merged openstack/manila master: Prevent share type deletion if linked to group types https://review.opendev.org/717516 | 19:01 |
*** maaritamm has quit IRC | 19:58 | |
*** maaritamm has joined #openstack-manila | 19:59 | |
*** tobberydberg_ has quit IRC | 20:17 | |
*** tobberydberg has joined #openstack-manila | 20:22 | |
*** tobberydberg has quit IRC | 20:30 | |
*** tobberydberg has joined #openstack-manila | 20:36 | |
*** tobberydberg has quit IRC | 20:37 | |
*** tobberydberg has joined #openstack-manila | 20:42 | |
*** tobberydberg has quit IRC | 20:43 | |
*** tobberydberg has joined #openstack-manila | 20:45 | |
*** tobberydberg has quit IRC | 20:45 | |
*** tobberydberg has joined #openstack-manila | 20:46 | |
*** tobberydberg has quit IRC | 20:46 | |
*** tobberydberg has joined #openstack-manila | 20:46 | |
*** tobberydberg has quit IRC | 20:47 | |
*** tobberydberg has joined #openstack-manila | 20:47 | |
*** tobberydberg has quit IRC | 20:47 | |
*** maaritamm has quit IRC | 20:49 | |
openstackgerrit | Tom Barron proposed openstack/manila master: DNM - compare with https://review.opendev.org/#/c/717646/ https://review.opendev.org/720081 | 20:49 |
*** tobberydberg has joined #openstack-manila | 20:51 | |
*** tobberydberg has quit IRC | 20:55 | |
gouthamr | felipe_rodrigues: hi, re: https://bugs.launchpad.net/manila/+bug/1799742 | 21:19 |
openstack | Launchpad bug 1799742 in Manila "Wrong segmentation ID sent to drivers when using multi-segments" [Medium,In progress] - Assigned to Sneha Prasad (snpd) | 21:19 |
felipe_rodrigues | ok.. the main problem facing is: how to get the segmentation id of a given subnet ? | 21:20 |
gouthamr | felipe_rodrigues: i presume we're currently using the network's "provider:segmentation_id" | 21:20 |
* gouthamr checks code | 21:21 | |
gouthamr | hmm, so we are: https://opendev.org/openstack/manila/src/commit/28bb650128d2207b43f62c6b1d94a9ba46fede5f/manila/network/neutron/neutron_network_plugin.py#L367-L387 | 21:23 |
gouthamr | felipe_rodrigues: looks like we isolate a segment corresponding to the physical network; but the bug says this may not be the case? | 21:24 |
gouthamr | or that there may be multiple segments associated with the same physical network (i dunno why that'd be the case) | 21:25 |
dviroel | I understood that a given neutron network can have multiple segments. | 21:26 |
dviroel | And a subnet can be associated with one of this segments | 21:26 |
dviroel | The code seems to suport multi-segments, but it seems that the neutron client thag we are can't retrieve this info | 21:27 |
dviroel | I mean, the list of segmenta returned is actually a list of segment-ids | 21:28 |
dviroel | And felipe_rodrigues is saying that neutron client can't retrieve the segment info | 21:29 |
felipe_rodrigues | the env: one net with 3 segments, 3 subnets (each one associated with one of those segments).. | 21:29 |
felipe_rodrigues | the bug: creating 3 share-net (each one associated with one of those subnets) ... all of them will pass down the same segment.. (the lowest of the associated net) | 21:30 |
gouthamr | hmmm, the code as its written seems to assume that you have hierarchical network segments, where the segment we care about using for a given share network would be the one corresponding to the physical network | 21:31 |
felipe_rodrigues | If I understood correctly: the fix would be to retrieving the segment id of the subnet and set this one of the share-net... | 21:31 |
gouthamr | felipe_rodrigues: so in that case, all segments needn't be exposed directly to manila, we'll still get the right one based off of the network | 21:32 |
gouthamr | felipe_rodrigues: so i think you creating three share networks with different segments of the same neutron network is a wrong expectation of how this should work? | 21:33 |
gouthamr | felipe_rodrigues: because the share network has only one segment that corresponds to the physical net... (or it gets the last one from that list as ganso points out) | 21:34 |
gouthamr | felipe_rodrigues: i'd suggest checking with carthaca about their network setup (afiar they use multisegment networks with a ToR switch that connects their storage on VLAN networks to tenant VXLAN networks), and see if these reproduction steps are valid... | 21:35 |
felipe_rodrigues | ok .. we dont have this scenario in netapp yet.. we are just following the ganso description | 21:37 |
gouthamr | felipe_rodrigues: yeah... there could be a way to fake it in devstack... | 21:38 |
felipe_rodrigues | ok | 21:39 |
openstackgerrit | Goutham Pacha Ravi proposed openstack/manila master: DNM - compare with https://review.opendev.org/#/c/717646/ https://review.opendev.org/720081 | 22:02 |
dviroel | gouthamr: http://eavesdrop.openstack.org/irclogs/%23openstack-meeting-alt/%23openstack-meeting-alt.2020-03-05.log.html#t2020-03-05T15:26:55 | 22:11 |
dviroel | gouthamr: we need to check if he already checked :) | 22:12 |
gouthamr | dviroel: ack, yes.. | 22:12 |
openstackgerrit | Goutham Pacha Ravi proposed openstack/manila stable/train: Prevent share type deletion if linked to group types https://review.opendev.org/720091 | 22:20 |
openstackgerrit | Goutham Pacha Ravi proposed openstack/manila-ui master: Add support for API version 2.38 https://review.opendev.org/717875 | 22:40 |
openstackgerrit | Merged openstack/manila master: Delete type access list when deleting types https://review.opendev.org/717646 | 22:43 |
gouthamr | ^ heh | 22:43 |
openstackgerrit | Goutham Pacha Ravi proposed openstack/manila stable/train: Prevent share type deletion if linked to group types https://review.opendev.org/720091 | 22:47 |
openstackgerrit | Goutham Pacha Ravi proposed openstack/manila stable/train: Delete type access list when deleting types https://review.opendev.org/720096 | 22:47 |
gouthamr | gah :| | 22:47 |
openstackgerrit | Goutham Pacha Ravi proposed openstack/manila stable/train: Prevent share type deletion if linked to group types https://review.opendev.org/720091 | 22:49 |
openstackgerrit | Goutham Pacha Ravi proposed openstack/manila stable/train: Delete type access list when deleting types https://review.opendev.org/720096 | 22:49 |
vkmc | rain of backports! | 22:49 |
* gouthamr gif ophrah winfrey | 22:51 | |
openstackgerrit | Merged openstack/manila-image-elements master: Cleanup py27 support https://review.opendev.org/719172 | 22:58 |
vkmc | I forgot about manila-image-elements existence | 23:02 |
gouthamr | easy to forget, it barely gets/needs changes these days | 23:16 |
*** tosky has quit IRC | 23:20 | |
openstackgerrit | Tom Barron proposed openstack/manila stable/stein: Remove provisioned calculation on non thin provision backends https://review.opendev.org/720099 | 23:27 |
openstackgerrit | Carlos Eduardo proposed openstack/manila-tempest-plugin master: Update share quota functional tests https://review.opendev.org/712786 | 23:52 |
openstackgerrit | Merged openstack/manila stable/train: [NetApp] Fix vserver peer creation with same vserver https://review.opendev.org/719985 | 23:54 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!