*** porrua_ has quit IRC | 00:15 | |
*** catintheroof has joined #openstack-manila | 00:18 | |
*** catintheroof has quit IRC | 00:23 | |
*** catintheroof has joined #openstack-manila | 00:25 | |
*** porrua has joined #openstack-manila | 00:28 | |
*** catinthe_ has joined #openstack-manila | 00:32 | |
*** mtanino_ has joined #openstack-manila | 00:33 | |
*** mtanino has quit IRC | 00:34 | |
*** catintheroof has quit IRC | 00:34 | |
tommylikehu | ping tbarron | 00:40 |
---|---|---|
tbarron | tommylikehu: hi | 00:44 |
tommylikehu | you are the only response, I would like to submit a new patch about it, but I am also not sure whether this one is as simple as correct the 'key' attribute | 00:45 |
tommylikehu | I have never modified the migration script before. Do we need another script to fix this? | 00:46 |
tbarron | tommylikehu: it's a good question. | 00:47 |
tbarron | bswartz: you around ^^^ | 00:47 |
tbarron | bswartz: is there something we're missing, or is https://github.com/openstack/manila/blob/master/manila/db/migrations/alembic/versions/5077ffcc5f1c_add_share_instances.py#L182 as bad a bug as it looks? | 00:49 |
tommylikehu | tbarron: I reckon most of us are busy with patches these days, so let me submit the basic solution and wait for their's response when they are available :) | 00:51 |
tbarron | tommylikehu: +1 | 00:52 |
*** tommylikehu has quit IRC | 00:55 | |
*** tommylikehu has joined #openstack-manila | 00:56 | |
*** cknight1 has quit IRC | 00:57 | |
openstackgerrit | zhongjun proposed openstack/manila: Fix column name error in migration script https://review.openstack.org/418168 | 01:16 |
*** porrua has quit IRC | 01:17 | |
*** cknight has joined #openstack-manila | 01:32 | |
*** catinthe_ has quit IRC | 01:52 | |
*** dustins has quit IRC | 01:54 | |
*** mtanino has joined #openstack-manila | 02:05 | |
*** mtanino_ has quit IRC | 02:07 | |
*** porrua has joined #openstack-manila | 02:11 | |
*** porrua has quit IRC | 02:14 | |
bswartz | tbarron: I'm here | 02:37 |
*** mtanino has quit IRC | 02:42 | |
*** gcb has joined #openstack-manila | 02:50 | |
bswartz | tbarron, tommylikehu: It looks like that's a bug but I don't understand why it hasn't caused any trouble yet | 03:08 |
tommylikehu | thanks bswartz | 03:08 |
bswartz | tommylikehu: can you describe what happens today when you try that upgrade step? | 03:10 |
bswartz | does it lose data? does it crash? does it corrupt the DB? | 03:10 |
tommylikehu | bswartz: Actually this bug is foundedn reported by our product guys and when they upgrade their environment to M, | 03:11 |
tommylikehu | they fixed the problem by change the column name there | 03:11 |
bswartz | tommylikehu: there's no bug in LP | 03:11 |
bswartz | and there's no description of how the bug actually manifests | 03:11 |
tommylikehu | what is LP/ | 03:11 |
tommylikehu | ? | 03:11 |
bswartz | LP=launchpad | 03:12 |
tommylikehu | ok I got it | 03:12 |
bswartz | https://bugs.launchpad.net/manila | 03:12 |
tommylikehu | I will add this later | 03:12 |
tommylikehu | bswartz: can I talk to you about IPv6 in generic driver for few minutes? | 03:12 |
bswartz | yeah I'm just waching a football game and it's halftime | 03:12 |
tommylikehu | thanks for sharing you fun time | 03:13 |
tommylikehu | based on my unserstanding, when IPv6 is supported in generic driver, the only case that user can get an IPv6 export location path is that: | 03:14 |
tommylikehu | they have correct backend configuration with 'service_network_cidr' in IPv6 format | 03:15 |
tommylikehu | and also have IPv6 admin tenant if they have configured | 03:16 |
tommylikehu | Is that correct? | 03:16 |
bswartz | well there's lot of requirements, but most of them are unknown to the tenant | 03:16 |
bswartz | from the tenant's perspective, all that matter is that he used a ipv6 neutron subnet in the share network | 03:16 |
bswartz | the requirements on the admin really depend on how we design v6 support in the generic driver | 03:17 |
tommylikehu | yes and if the requirement I metioned above is not meet, the creating procedure could fail | 03:18 |
tommylikehu | so here is the key method: https://review.openstack.org/#/c/416162/7/manila/share/drivers/generic.py | 03:19 |
tommylikehu | line 1052 | 03:19 |
*** mtanino has joined #openstack-manila | 03:19 | |
tommylikehu | Does that look correct to you? | 03:19 |
bswartz | tommylikehu: have you looked at the service image? | 03:21 |
bswartz | are any changes needed on the image side for v6 support? | 03:21 |
bswartz | I'd be very surprised if it "just worked" | 03:21 |
tommylikehu | wait a monment | 03:22 |
tommylikehu | findING | 03:22 |
tommylikehu | the link | 03:22 |
tommylikehu | https://github.com/openstack/manila-image-elements/blob/master/elements/manila-container/post-install.d/99-configure-network#L15 | 03:22 |
tommylikehu | I am trying to add a line here, and not sure whether it can work | 03:23 |
*** cknight has quit IRC | 03:23 | |
tommylikehu | echo "iface eth0 inet6 dhcp" >> /etc/network/interfaces | 03:24 |
bswartz | that looks almost right | 03:24 |
bswartz | you probably need an additional empty line before that line | 03:24 |
tommylikehu | about what? | 03:25 |
bswartz | oh wait | 03:26 |
bswartz | sorry I thought you send me a gerrit link | 03:26 |
bswartz | that's github | 03:26 |
bswartz | and I misread the code | 03:26 |
tommylikehu | bswartz: also our security-groups-rules must be doubled for supporting IPv6 | 03:26 |
bswartz | yes that change by u_glide will cause it to get a v6 address through dhcpv6 if possible | 03:27 |
bswartz | other things we need to check would be whether we can grant access by v6 address | 03:27 |
tommylikehu | yes I am trying to grant access by IPv6 address step by step, but the network in china would slow it down | 03:28 |
tommylikehu | what the things are you referring by the gerrit and github misunderstanding? | 03:29 |
*** mtanino has quit IRC | 03:29 | |
bswartz | it's not important | 03:31 |
bswartz | I just got confused my the link and my response was incorrect | 03:31 |
bswartz | what's important is that we can create an ipv6 test case and demonstrate it works with generic | 03:32 |
tommylikehu | bswartz: thanks, I would add this after I tested it in my environment, and I am also a little worried I can not make this complished by this Friday(deadline?) | 03:35 |
*** gcb has quit IRC | 03:36 | |
*** gcb has joined #openstack-manila | 03:37 | |
bswartz | the feature proposal freeze is thursday 23:59 UTC | 03:38 |
bswartz | so there are lots of pieces required for full v6 support | 03:38 |
bswartz | the most important pieces are the core code and API/interface changes | 03:39 |
bswartz | if those are in good share, I'm less worried about support in specific drivers | 03:39 |
bswartz | however, we do need test coverage (new tests) and we do need at least one driver that can run and pass those tests in the gate | 03:39 |
tommylikehu | I think the lvm is simple to support this,but only dhss=false can be covered. | 03:40 |
bswartz | yeah... | 03:41 |
bswartz | It would be ideal to have coverage for dhss=true too | 03:41 |
bswartz | but any kind of ipv6 support is a step forward | 03:41 |
*** mtanino has joined #openstack-manila | 03:43 | |
*** cfey_ has quit IRC | 03:44 | |
*** cfey has joined #openstack-manila | 03:48 | |
*** mtanino has quit IRC | 04:46 | |
*** tuanluong has joined #openstack-manila | 06:04 | |
*** lpetrut has joined #openstack-manila | 06:10 | |
*** pcaruana has quit IRC | 06:26 | |
*** breitz has quit IRC | 06:44 | |
*** breitz has joined #openstack-manila | 06:45 | |
openstackgerrit | zhongjun proposed openstack/manila: Enable IPv6 in manila(network plugins and drivers) https://review.openstack.org/406776 | 06:46 |
*** lpetrut has quit IRC | 06:51 | |
*** lpetrut has joined #openstack-manila | 06:51 | |
*** lpetrut has quit IRC | 07:16 | |
*** nkrinner_afk is now known as nkrinner | 07:20 | |
*** makowals has quit IRC | 07:20 | |
*** makowals has joined #openstack-manila | 07:26 | |
*** lpetrut has joined #openstack-manila | 07:28 | |
*** jprovazn has joined #openstack-manila | 07:32 | |
*** furlongm has quit IRC | 07:39 | |
*** furlongm_ has joined #openstack-manila | 07:40 | |
openstackgerrit | Pony Chou proposed openstack/manila: Add QNAP Manila Driver https://review.openstack.org/394703 | 07:41 |
*** nherciu_ has joined #openstack-manila | 07:41 | |
*** lpetrut has quit IRC | 07:42 | |
*** nherciu__ has joined #openstack-manila | 07:44 | |
*** nherciu_ has quit IRC | 07:47 | |
*** hoonetorg has quit IRC | 07:48 | |
*** pcaruana has joined #openstack-manila | 08:09 | |
*** jprovazn has quit IRC | 08:46 | |
*** dsariel has joined #openstack-manila | 08:49 | |
*** xinyanzhang has quit IRC | 08:50 | |
*** xinyanzhang has joined #openstack-manila | 08:50 | |
*** csaba has quit IRC | 08:55 | |
*** pcaruana has quit IRC | 08:55 | |
*** a-pugachev has joined #openstack-manila | 08:57 | |
*** csaba has joined #openstack-manila | 09:08 | |
*** pcaruana has joined #openstack-manila | 09:08 | |
*** jprovazn has joined #openstack-manila | 09:19 | |
*** a-pugachev has left #openstack-manila | 09:32 | |
*** csaba has quit IRC | 09:35 | |
*** jprovazn has quit IRC | 09:35 | |
*** pcaruana has quit IRC | 09:35 | |
*** csaba has joined #openstack-manila | 09:35 | |
*** lpetrut has joined #openstack-manila | 09:36 | |
*** netapp has quit IRC | 09:38 | |
*** gregsfortytwo has quit IRC | 09:38 | |
*** netapp has joined #openstack-manila | 09:39 | |
*** openstack has joined #openstack-manila | 14:30 | |
*** makowals_ has joined #openstack-manila | 14:42 | |
*** makowals has quit IRC | 14:44 | |
*** makowal__ has joined #openstack-manila | 14:44 | |
*** jprovazn has quit IRC | 14:45 | |
*** makowals_ has quit IRC | 14:47 | |
*** absubram has joined #openstack-manila | 14:49 | |
*** makowal__ has quit IRC | 14:53 | |
*** makowals has joined #openstack-manila | 14:53 | |
*** cdelatte has joined #openstack-manila | 15:03 | |
*** gaurangt has left #openstack-manila | 15:09 | |
*** tommylikehu_ has quit IRC | 15:18 | |
*** rraja has quit IRC | 15:29 | |
tbarron | gouthamr is such a post-game slacker | 15:30 |
*** eharney has quit IRC | 15:32 | |
*** jprovazn has joined #openstack-manila | 15:35 | |
bswartz | lol | 15:38 |
bswartz | he drove down to South Carolina to watch the game with friends | 15:39 |
bswartz | he's got to drive back up this morning | 15:39 |
*** belmoreira has quit IRC | 15:40 | |
*** mtanino has joined #openstack-manila | 15:44 | |
*** eharney has joined #openstack-manila | 15:47 | |
*** lpetrut1 has joined #openstack-manila | 15:49 | |
*** lpetrut has quit IRC | 15:50 | |
*** lpetrut1 is now known as lpetrut | 15:50 | |
openstackgerrit | Rodrigo Barbieri proposed openstack/python-manilaclient: Implement Share Migration Ocata improvements https://review.openstack.org/406306 | 15:56 |
*** cknight has joined #openstack-manila | 15:59 | |
*** gouthamr has joined #openstack-manila | 16:03 | |
*** mtanino has quit IRC | 16:05 | |
openstackgerrit | Alyson proposed openstack/python-manilaclient: Add mountable snapshots support to manila client https://review.openstack.org/345625 | 16:10 |
*** breitz has quit IRC | 16:19 | |
openstackgerrit | Alyson proposed openstack/python-manilaclient: Add mountable snapshots support to manila client https://review.openstack.org/345625 | 16:22 |
*** carthaca_ has joined #openstack-manila | 16:26 | |
openstackgerrit | Rodrigo Barbieri proposed openstack/manila: Mountable snapshots scenario tests https://review.openstack.org/412001 | 16:28 |
*** absubram has quit IRC | 16:29 | |
*** absubram has joined #openstack-manila | 16:29 | |
openstackgerrit | Merged openstack/puppet-manila: Add support to configure Hitachi NAS Platform driver with Manila shares. https://review.openstack.org/395759 | 16:42 |
openstackgerrit | Itxaka Serrano Garcia proposed openstack/manila-ui: Fix quotas override https://review.openstack.org/418481 | 16:46 |
openstackgerrit | Tom Barron proposed openstack/manila: Remove NovaNetworkPlugin https://review.openstack.org/410450 | 16:50 |
*** cknight1 has joined #openstack-manila | 16:56 | |
*** cknight has quit IRC | 16:59 | |
*** nkrinner is now known as nkrinner_afk | 17:01 | |
*** breitz has joined #openstack-manila | 17:02 | |
*** a-pugachev has joined #openstack-manila | 17:03 | |
openstackgerrit | Andrew Kerr proposed openstack/manila: Implement share revert to snapshot https://review.openstack.org/340502 | 17:04 |
*** a-pugachev has left #openstack-manila | 17:09 | |
*** david-lyle has joined #openstack-manila | 17:13 | |
openstackgerrit | Tom Barron proposed openstack/manila: Remove NovaNetworkPlugin https://review.openstack.org/410450 | 17:15 |
*** ociuhandu has quit IRC | 17:20 | |
*** pcaruana has quit IRC | 17:25 | |
openstackgerrit | Rodrigo Barbieri proposed openstack/manila: Mountable snapshots scenario tests https://review.openstack.org/412001 | 17:33 |
*** ociuhandu has joined #openstack-manila | 17:36 | |
*** cFouts has quit IRC | 17:41 | |
openstackgerrit | Tom Barron proposed openstack/manila: Remove NovaNetworkPlugin https://review.openstack.org/410450 | 17:41 |
openstackgerrit | Alyson proposed openstack/python-manilaclient: Add mountable snapshots support to manila client https://review.openstack.org/345625 | 17:46 |
*** nug- has joined #openstack-manila | 17:47 | |
*** lpetrut has quit IRC | 17:51 | |
*** raissa has quit IRC | 17:52 | |
*** raissa has joined #openstack-manila | 17:52 | |
*** nug- is now known as cFouts | 18:02 | |
*** dustins has quit IRC | 18:12 | |
openstackgerrit | Tom Barron proposed openstack/manila: Properly deprecate service_instance_network_helper_type https://review.openstack.org/418354 | 18:12 |
*** jprovazn has quit IRC | 18:12 | |
*** cFouts is now known as nug | 18:19 | |
*** nug is now known as Guest31176 | 18:19 | |
*** lpetrut has joined #openstack-manila | 18:41 | |
*** porrua has quit IRC | 18:52 | |
openstackgerrit | Rodrigo Barbieri proposed openstack/manila: Add mountable snapshots support https://review.openstack.org/345526 | 18:53 |
*** dsariel has quit IRC | 18:54 | |
*** dustins has joined #openstack-manila | 18:56 | |
*** dustins has quit IRC | 18:57 | |
*** dustins has joined #openstack-manila | 18:57 | |
*** ianychoi has quit IRC | 19:00 | |
*** ociuhandu has quit IRC | 19:13 | |
*** dustins has quit IRC | 19:21 | |
*** dustins_ has joined #openstack-manila | 19:21 | |
*** pcaruana has joined #openstack-manila | 19:37 | |
*** ociuhandu has joined #openstack-manila | 19:50 | |
openstackgerrit | Rodrigo Barbieri proposed openstack/manila: Add mountable snapshots support https://review.openstack.org/345526 | 19:50 |
*** porrua has joined #openstack-manila | 19:54 | |
*** ociuhandu has quit IRC | 19:55 | |
*** makowals has quit IRC | 19:59 | |
openstackgerrit | Yogesh proposed openstack/manila: Improve test coverage for share migration https://review.openstack.org/418559 | 20:13 |
*** ociuhandu has joined #openstack-manila | 20:18 | |
*** ociuhandu has quit IRC | 20:22 | |
*** ociuhandu has joined #openstack-manila | 20:33 | |
*** ociuhandu has quit IRC | 20:37 | |
openstackgerrit | Merged openstack/manila: Properly deprecate service_instance_network_helper_type https://review.openstack.org/418354 | 20:40 |
*** lpetrut has quit IRC | 20:41 | |
*** lpetrut has joined #openstack-manila | 20:44 | |
*** ociuhandu has joined #openstack-manila | 20:48 | |
*** ociuhandu has quit IRC | 20:52 | |
*** ociuhandu has joined #openstack-manila | 21:03 | |
*** alyson_ has quit IRC | 21:07 | |
*** ociuhandu has quit IRC | 21:07 | |
openstackgerrit | Tom Barron proposed openstack/manila: DO NOT MERGE https://review.openstack.org/352606 | 21:09 |
*** eharney has quit IRC | 21:27 | |
*** nherciu__ has quit IRC | 21:32 | |
*** gouthamr has quit IRC | 21:34 | |
*** pcaruana has quit IRC | 21:48 | |
*** porrua has quit IRC | 21:52 | |
*** ociuhandu has joined #openstack-manila | 21:55 | |
*** dsariel has joined #openstack-manila | 21:56 | |
openstackgerrit | Rodrigo Barbieri proposed openstack/manila: Add mountable snapshots support https://review.openstack.org/345526 | 21:58 |
*** dustins_ has quit IRC | 22:23 | |
openstackgerrit | Alyson proposed openstack/python-manilaclient: Add mountable snapshots support to manila client https://review.openstack.org/345625 | 22:27 |
*** gouthamr has joined #openstack-manila | 22:47 | |
*** lpetrut has quit IRC | 22:50 | |
*** carthaca_ has quit IRC | 22:52 | |
*** databus23_ has quit IRC | 22:52 | |
*** sapcc-bot has quit IRC | 22:52 | |
*** xyang1 has quit IRC | 23:00 | |
*** ociuhandu has quit IRC | 23:10 | |
*** porrua has joined #openstack-manila | 23:15 | |
*** dsariel has quit IRC | 23:26 | |
openstackgerrit | Tom Barron proposed openstack/manila: DO NOT MERGE https://review.openstack.org/352606 | 23:35 |
*** porrua has quit IRC | 23:45 | |
*** ganso has quit IRC | 23:54 | |
*** ianychoi has joined #openstack-manila | 23:56 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!