Thursday, 2015-04-02

openstackgerritHahyun proposed openstack/os-brick: Fix wrong command for _rescan_multipath  https://review.openstack.org/16995100:02
*** tsekiyam_ has joined #openstack-cinder00:07
*** tsekiyama has quit IRC00:10
*** tsekiyam_ has quit IRC00:12
*** mtanino has quit IRC00:12
*** dannywilson has quit IRC00:18
*** annashen has joined #openstack-cinder00:19
*** erlon has quit IRC00:31
*** annegentle has joined #openstack-cinder00:38
*** cpg is now known as cpg|away00:40
*** leeantho has quit IRC00:42
*** annegentle has quit IRC00:43
*** diegows has joined #openstack-cinder00:44
*** dflorea has joined #openstack-cinder00:52
*** annashen has quit IRC00:54
*** heyun has joined #openstack-cinder00:55
openstackgerritBob Callaway proposed openstack/cinder: Fix LUN misalignment issue with NetApp iSCSI drivers  https://review.openstack.org/16237600:57
*** marcusvrn1 has joined #openstack-cinder00:59
*** haigang has joined #openstack-cinder00:59
*** marcusvrn has quit IRC01:02
*** MentalRay has quit IRC01:03
*** ronis has quit IRC01:07
*** esker has joined #openstack-cinder01:07
*** dflorea has quit IRC01:11
*** dflorea has joined #openstack-cinder01:12
*** harlowja is now known as harlowja_away01:14
*** dflorea has quit IRC01:17
*** logan2 has quit IRC01:19
*** bkopilov has quit IRC01:20
*** _cjones_ has quit IRC01:21
*** logan2 has joined #openstack-cinder01:21
*** casusbel_ has joined #openstack-cinder01:26
*** Lee1092 has joined #openstack-cinder01:26
*** ebalduf has joined #openstack-cinder01:29
*** alexpilotti has quit IRC01:29
*** casusbelli has quit IRC01:30
*** kaisers has joined #openstack-cinder01:30
*** asselin has joined #openstack-cinder01:31
*** vilobhmm1 has quit IRC01:31
*** kaisers1 has quit IRC01:31
*** IanGovett has quit IRC01:31
*** ebalduf has quit IRC01:33
*** Longgeek has quit IRC01:36
*** Longgeek has joined #openstack-cinder01:37
*** Mandell has quit IRC01:39
*** annegentle has joined #openstack-cinder01:39
*** Longgeek has quit IRC01:43
*** annegentle has quit IRC01:44
*** Longgeek has joined #openstack-cinder01:44
*** Yogi1 has joined #openstack-cinder01:51
*** dims_ has joined #openstack-cinder01:52
*** annashen has joined #openstack-cinder01:54
*** zongliang has quit IRC01:56
*** Longgeek_ has joined #openstack-cinder01:57
*** xyang1 has quit IRC01:58
*** annashen has quit IRC01:59
*** Longgeek has quit IRC02:00
thingeejamielennox: ping02:03
*** dims_ has quit IRC02:03
jamielennoxthingee: hey02:03
*** patrickeast has quit IRC02:04
*** dims_ has joined #openstack-cinder02:04
*** julim has joined #openstack-cinder02:05
openstackgerritVincent Hou proposed openstack/cinder: Delete the temporary volume if migration fails  https://review.openstack.org/16068202:07
*** dims_ has quit IRC02:08
openstackgerritVincent Hou proposed openstack/cinder: Set volume_attachment to [] for the temporary volume creation  https://review.openstack.org/16713402:08
thingeejamielennox: finally getting around to working on the discovery stuff since you wanted it outside of the SessionClient class.02:09
thingeejamielennox: https://github.com/Thingee/python-cinderclient/commit/4a6833d2538e76035f373eee6d2a4cd9324804aa02:09
thingeejamielennox: I have a bit of refactoring..thing is  a mess right now02:09
thingeejamielennox: however, the problem I'm hitting...02:09
thingeejamielennox: I need to request_mock v2.0/tokens02:10
thingeejamielennox: https://github.com/openstack/python-cinderclient/blob/master/cinderclient/tests/unit/v2/test_shell.py#L5402:11
thingeejamielennox: if I drop in one for POST, and add to the callback function to v2.0/tokens, seems it stills thinks there is no mock address02:11
thingeeNoMockAddress: No mock address: POST http://172.30.128.4:5000/v2.0/tokens02:12
thingeejamielennox: is there a recommended fixture for POST /v2.0/tokens?02:13
jamielennoxok02:13
thingeejamielennox: I was looking at https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/fixture/v2.py ... but didn't see anything02:13
jamielennoxyes, there is a fixture for tokens, fixture.V2Token02:14
jamielennoxthat just provides the body of the token though02:14
jamielennoxyou still need to do the request_mock yourself02:14
*** haomaiwang has joined #openstack-cinder02:15
jamielennoxi'm not sure why the requests_mock isn't being picked up though02:16
jamielennoxnormally it's just02:16
jamielennoxself.requests_mock.post(self.BASE_URL + '/v2.0/tokens', json=fixture.V2Token())02:17
*** annashen has joined #openstack-cinder02:19
*** vilobhmm1 has joined #openstack-cinder02:27
thingeejamielennox: I guess need to read up on request_mock...I still don't get what you gave in this context02:31
thingeethere seems to be something that's registering a "custom matcher" https://github.com/openstack/python-cinderclient/blob/master/cinderclient/tests/unit/v2/test_shell.py#L5402:31
thingeefor GET requests02:32
jamielennoxthingee: yea, bit nasty but similar to what used to be there02:33
jamielennoxi'm surprised that's working at all, but GET is used for token validation, not creation02:34
thingeeyea02:34
jamielennoxthingee: oh, shell is going to requests_mock, https://github.com/openstack/python-cinderclient/blob/master/cinderclient/tests/unit/v2/test_shell.py#L5102:36
*** rongze has joined #openstack-cinder02:37
jamielennoxthingee: test_shell is _not_ going to requests_mock i mean02:37
*** Yogi1 has quit IRC02:40
*** annegentle has joined #openstack-cinder02:40
*** scottda_ has joined #openstack-cinder02:41
*** annegentle has quit IRC02:45
thingeejamielennox: I think this is happening because https://github.com/openstack/python-cinderclient/blob/master/cinderclient/tests/unit/v2/test_shell.py#L4702:46
thingeeand eventually this being hit https://github.com/Thingee/python-cinderclient/commit/4a6833d2538e76035f373eee6d2a4cd9324804aa#diff-7e52bfb77cc95e4c1d46b1d39f9ff764R69502:46
*** rushiagr_away is now known as rushiagr02:52
*** vilobhmm11 has joined #openstack-cinder02:54
thingeejamielennox: yeah it's not picking up on it02:57
thingeejamielennox: http://paste.openstack.org/show/197855/02:57
*** vilobhmm1 has quit IRC02:57
thingeehttp://paste.openstack.org/show/197856/02:57
thingeehttps://github.com/Thingee/python-cinderclient/commit/4a6833d2538e76035f373eee6d2a4cd9324804aa#diff-7e52bfb77cc95e4c1d46b1d39f9ff764R69802:58
jamielennoxis 7e52... the commit you're looking at?02:58
thingeeyea02:59
openstackgerritRick Chen proposed openstack/cinder: Add patch for consistency group update in ProphetStor driver  https://review.openstack.org/16965302:59
*** ebalduf has joined #openstack-cinder02:59
thingeejamielennox: actually 4a6833d2538e76035f373eee6d2a4cd9324804aa03:00
*** asselin has quit IRC03:01
*** ebalduf has quit IRC03:04
jamielennoxthingee: if i do https://github.com/jamielennox/python-cinderclient/commit/20d50e2a5f6a9be8176c36c6261b83c190b9036a (on top of 4a6) it is mocking the token correctly03:08
*** vilobhmm11 has quit IRC03:09
jamielennoxi get NoMockAddress: No mock address: GET http://cinder.host:9292/ which means that it's got a token, it's found the volume endpoint and it wants to discover on it03:09
*** annashen has quit IRC03:10
*** rushiagr is now known as rushiagr_away03:13
*** scottda_ has quit IRC03:13
*** vilobhmm1 has joined #openstack-cinder03:15
*** scottda_ has joined #openstack-cinder03:17
*** melwitt has quit IRC03:21
*** iwao has quit IRC03:22
openstackgerritRick Chen proposed openstack/cinder: Add patch for consistency group update in ProphetStor driver  https://review.openstack.org/16965303:24
*** nikesh_vedams has quit IRC03:28
*** ebalduf has joined #openstack-cinder03:31
thingeejamielennox: oh ok, I wasn't adding the service ahead of time03:32
jamielennoxthingee: that's a different step though, it still had to return something from the request and then query the catalog. it wasn't returning anything for you03:33
openstackgerritVincent Hou proposed openstack/cinder: Delete the temporary volume if migration fails  https://review.openstack.org/16068203:35
thingeejamielennox: ok thanks, got it working03:35
jamielennoxthingee: cool, np03:35
*** thingee has quit IRC03:38
*** annegentle has joined #openstack-cinder03:41
*** scottda_ has quit IRC03:41
openstackgerritVincent Hou proposed openstack/cinder-specs: Enhance list operations with the additional keys and next link  https://review.openstack.org/14818103:43
*** annegentle has quit IRC03:50
*** jamielennox is now known as jamielennox|away03:51
*** MentalRay has joined #openstack-cinder03:54
*** annegentle has joined #openstack-cinder04:02
*** ho has quit IRC04:03
*** Liu has quit IRC04:03
*** akerr has joined #openstack-cinder04:04
*** shyama has joined #openstack-cinder04:05
*** annashen has joined #openstack-cinder04:09
*** akerr has quit IRC04:10
*** Bsony has joined #openstack-cinder04:13
*** Liu has joined #openstack-cinder04:14
*** casusbel_ has quit IRC04:25
*** casusbelli has joined #openstack-cinder04:26
*** heyun has quit IRC04:28
*** heyun has joined #openstack-cinder04:28
*** Mandell has joined #openstack-cinder04:29
*** Mandell has quit IRC04:29
*** bkopilov has joined #openstack-cinder04:30
*** Mandell has joined #openstack-cinder04:31
*** rushiagr_away is now known as rushiagr04:32
*** ebalduf has quit IRC04:32
*** _cjones_ has joined #openstack-cinder04:47
*** BharatK has joined #openstack-cinder04:48
*** _cjones_ has quit IRC04:50
*** _cjones_ has joined #openstack-cinder04:50
*** vincent_hou has joined #openstack-cinder05:03
vincent_houwinston-d_zZZ: Are you there, brother?05:04
*** MentalRay has quit IRC05:04
*** lpetrut has joined #openstack-cinder05:04
*** Bsony has quit IRC05:11
*** sks has joined #openstack-cinder05:11
*** anshul has joined #openstack-cinder05:17
openstackgerritxing-yang proposed openstack/cinder: Fix issues with extra specs in VMAX driver  https://review.openstack.org/16999905:17
*** _cjones_ has quit IRC05:29
*** cpg|away is now known as cpg05:29
*** ebalduf has joined #openstack-cinder05:33
*** annashen has quit IRC05:36
openstackgerritxing-yang proposed openstack/cinder: Fix a problem with FAST support in VMAX driver  https://review.openstack.org/17000005:37
*** ebalduf has quit IRC05:37
*** annegentle has quit IRC05:39
*** Raj_ has joined #openstack-cinder05:39
*** annegentle has joined #openstack-cinder05:40
*** annegentle has quit IRC05:45
*** vilobhmm1 has quit IRC05:46
openstackgerritxing-yang proposed openstack/cinder: Fix a problem with FAST support in VMAX driver  https://review.openstack.org/17000005:48
*** sgotliv has joined #openstack-cinder05:52
*** jdurgin1 has joined #openstack-cinder05:53
*** jdurgin1 has quit IRC05:53
*** divya has joined #openstack-cinder05:56
*** _cjones_ has joined #openstack-cinder05:56
*** divya has quit IRC05:57
*** dims_ has joined #openstack-cinder06:00
*** lpetrut has quit IRC06:02
*** haigang has quit IRC06:02
*** dims_ has quit IRC06:06
*** shilpa_ has joined #openstack-cinder06:07
*** rushiagr is now known as rushiagr_away06:07
*** nkrinner has joined #openstack-cinder06:09
*** rushiagr_away is now known as rushiagr06:10
*** haigang has joined #openstack-cinder06:12
*** ishant has joined #openstack-cinder06:13
*** avishay has joined #openstack-cinder06:23
*** nlevinki has joined #openstack-cinder06:24
*** ebalduf has joined #openstack-cinder06:34
*** vincent_hou has quit IRC06:34
*** Maike has joined #openstack-cinder06:36
*** annashen has joined #openstack-cinder06:37
*** ebalduf has quit IRC06:39
*** annegentle has joined #openstack-cinder06:41
*** annashen has quit IRC06:42
*** TobiasE has joined #openstack-cinder06:43
*** avishay has quit IRC06:43
*** annegentle has quit IRC06:46
*** TobiasE1 has joined #openstack-cinder06:47
*** TobiasE has quit IRC06:49
*** afazekas has joined #openstack-cinder06:54
*** chlong has quit IRC06:55
*** lpetrut has joined #openstack-cinder06:56
*** TobiasE1 has quit IRC07:00
*** TobiasE has joined #openstack-cinder07:00
*** TobiasE1 has joined #openstack-cinder07:03
*** TobiasE has quit IRC07:04
*** Bsony has joined #openstack-cinder07:10
*** jistr has joined #openstack-cinder07:13
*** jordanP has joined #openstack-cinder07:14
*** Longgeek_ has quit IRC07:17
*** Longgeek has joined #openstack-cinder07:17
*** boris-42 has quit IRC07:18
*** markus_z has joined #openstack-cinder07:22
*** fanyaohong has joined #openstack-cinder07:23
fanyaohonghello07:29
*** tshefi has joined #openstack-cinder07:29
*** haigang has quit IRC07:30
*** pradipta has joined #openstack-cinder07:30
LiuHi yaohong07:31
Liu:)07:31
*** Muntaner has joined #openstack-cinder07:32
Muntanergood morning guys07:34
MuntanerI'm having troubles in connecting my NAS to my installation07:34
*** haigang has joined #openstack-cinder07:35
MuntanerI'd like to connect it via iscsi07:36
Muntaneranybody can help me?07:36
*** _cjones_ has quit IRC07:37
*** _cjones_ has joined #openstack-cinder07:37
*** nikesh has joined #openstack-cinder07:41
*** annegentle has joined #openstack-cinder07:42
*** annegentle has quit IRC07:47
*** Muntaner has quit IRC07:49
*** geguileo has joined #openstack-cinder07:51
*** geguileo has quit IRC07:53
*** geguileo has joined #openstack-cinder07:54
*** haigang has quit IRC07:56
*** Bsony has quit IRC07:58
*** jordanP has quit IRC07:59
*** alecv_ has joined #openstack-cinder08:00
*** haigang has joined #openstack-cinder08:02
*** markvoelker has quit IRC08:18
*** e0ne has joined #openstack-cinder08:18
*** e0ne has quit IRC08:20
*** rhefner has quit IRC08:24
*** haigang has quit IRC08:24
*** haigang has joined #openstack-cinder08:28
*** Udayendu has joined #openstack-cinder08:29
*** ronis has joined #openstack-cinder08:30
openstackgerritYAMADA Hideki proposed openstack/cinder: Fix missing clone_image API support for sheepdog driver.  https://review.openstack.org/15985608:33
Udayenduping openstack-cinder: I have an issue with cinder volume. I am unable to attach a volume to an instance.08:34
*** ndipanov has joined #openstack-cinder08:34
Udayenduiptables rules are there for both cinder and cinder_api08:35
Udayendu TRACE oslo.messaging.rpc.dispatcher UnicodeError: Message objects do not support str() because they may contain non-ascii characters. Please use unicode() or translate() instead.08:36
UdayenduThis is the error message in cinder/volume.log . any suggestion ?08:36
UdayenduI am using RDO version of juno with allinone setup.08:37
*** jordanP has joined #openstack-cinder08:37
*** annashen has joined #openstack-cinder08:39
*** dulek has joined #openstack-cinder08:40
*** aswadr has joined #openstack-cinder08:41
*** annegentle has joined #openstack-cinder08:43
*** annashen has quit IRC08:44
*** Udayendu has left #openstack-cinder08:44
*** annegentle has quit IRC08:48
*** markvoelker has joined #openstack-cinder08:49
*** dims_ has joined #openstack-cinder08:50
*** kashyap has joined #openstack-cinder08:51
kashyapW/ current git from Cinder, I notice this:08:51
kashyap2015-04-02 04:41:42.988 TRACE cinder     "Could not parse rfc1738 URL from string '%s'" % name)08:51
kashyap2015-04-02 04:41:42.988 TRACE cinder ArgumentError: Could not parse rfc1738 URL from string ''08:51
kashyap(This is on the Compute node, in a 2-node DevStack setup.)08:52
openstackgerritJeegn Chen proposed openstack/cinder: More error handling on EMC VNX migration failure  https://review.openstack.org/15970408:53
*** markvoelker has quit IRC08:55
*** dims_ has quit IRC08:55
*** Bsony has joined #openstack-cinder08:58
*** Bsony has quit IRC09:03
*** _cjones_ has quit IRC09:04
*** e0ne has joined #openstack-cinder09:13
jordanPkashyap, which file ? which line ?09:16
kashyapjordanP: There we go, complete trace -- http://paste.openstack.org/show/197889/09:17
jordanPkashyap, you sure your cinder.conf is valid ?09:20
jordanPthe sql_connection parameter must be in [database] section09:21
kashyapjordanP: It's whatever DevStack is doing by default.09:21
kashyapjordanP: I can remove /etc/cinder and re-invoke stack.sh on this Compute node.09:21
jordanPyeah, that could work09:21
jordanPkashyap, your oslo_db is in /usr/lib/python2.7/site-packages/oslo_db/sqlalchemy/session.py09:23
jordanPdid you instal oslo_db using pip ? or is it a system package ?09:23
*** haigang has quit IRC09:24
kashyapjordanP: /me checks, this is a Fedora 22 machine (development version)09:24
kashyapTrying to test some live-migration related issue, and ended up here shaving this yak09:24
kashyapjordanP: Oh: This results in nothing, should DevStack log the oslo_db installation? `grep oslo_db ../data/logs/devstacklog.txt`09:25
*** jistr has quit IRC09:26
kashyapSeems like no -- looking at the Control node, where other Cinder services (including c-vol) are running correctly.09:26
jordanPkashyap, so you don"t have a oslo_db rpm packake installed ?09:27
kashyapjordanP: No, I don't.09:27
jordanPkashyap, then I don't know :)09:27
jordanPyou sure you have sql_connection or connection flag inthe  [database] of cinder.conf ?09:28
* kashyap double-checks09:28
kashyapjordanP: Damn, you're right:09:28
kashyap$ grep connection /etc/cinder/cinder.conf09:28
kashyapconnection =09:28
kashyapOn the Compute node.09:29
kashyapWhere I have just 'c-vol' service is running09:29
jordanPkashyap, :)09:29
kashyapI think I should add some kind of CINDER_HOST variable on the Compute node's local.conf09:30
kashyap(Typo: 'c-vol' service is running --> was _supposed_ to run)09:30
*** e0ne is now known as e0ne_09:30
jordanPI don"t know, multi host devstack is not trivial09:30
kashyapjordanP: I have it running successfully w/o Cinder many times. :-)09:31
kashyapI just run minimal services. Enabling things as needed.09:31
kashyapMuch easier than having a spaghetti of crap and then trying to clean it up.09:32
*** BharatK has quit IRC09:33
*** spradeepv has left #openstack-cinder09:35
*** e0ne_ is now known as e0ne09:35
kashyapjordanP: The 'connection' was missing in nova.conf too, somehow the Compute service is still running.09:36
* kashyap investigates09:36
jordanPkashyap, nova-compute doesn"t need to connect to the DB09:37
jordanPso it's fine if it"s empty09:37
kashyapOh, right. Same for Neutron too.09:37
*** haigang has joined #openstack-cinder09:40
*** skraynev has quit IRC09:42
*** skraynev has joined #openstack-cinder09:43
*** annegentle has joined #openstack-cinder09:43
*** jistr has joined #openstack-cinder09:44
*** annegentle has quit IRC09:48
*** dims_ has joined #openstack-cinder09:52
*** dims_ has quit IRC09:52
*** dims__ has joined #openstack-cinder09:56
*** dims__ has quit IRC10:03
kaisersHi! Can somebody who is running a CI and uses the regexp to skip a test paste me an example of this? I've expressions that work in my regexp checker but testr seems too see things differently.... :)10:06
*** dims has joined #openstack-cinder10:09
*** TobiasE1 has quit IRC10:10
kaiserstox -e all -- '(?!.*test_volume_boot_pattern.*)(?!.*test_minimum_basic_scenario.*)(volume)' > results.cinder.skipping.txt10:12
*** kashyap has left #openstack-cinder10:13
kaisersThat's what i am tryin'...10:13
*** ishant has quit IRC10:28
openstackgerritYAMADA Hideki proposed openstack/cinder: Fix missing clone_image API support for sheepdog driver.  https://review.openstack.org/15985610:29
*** e0ne is now known as e0ne_10:29
*** ishant has joined #openstack-cinder10:29
*** haomaiwang has quit IRC10:37
*** Raj_ has quit IRC10:37
*** e0ne_ is now known as e0ne10:37
*** annashen has joined #openstack-cinder10:41
*** annegentle has joined #openstack-cinder10:44
*** annashen has quit IRC10:45
*** IanGovett has joined #openstack-cinder10:47
*** annegentle has quit IRC10:49
*** markvoelker has joined #openstack-cinder10:52
*** abhijeetm has joined #openstack-cinder10:54
*** haigang has quit IRC10:55
*** markvoelker has quit IRC10:57
*** heyun has quit IRC11:02
*** TobiasE has joined #openstack-cinder11:09
*** divya has joined #openstack-cinder11:10
*** marcusvrn has joined #openstack-cinder11:12
divyahi i have issues in configuring hp 3 par storage in cinder11:14
divyagetting error either ws api is not running or invalid version, while restarting c-vol in devstac11:14
divyacan anybody please help me in troubleshooting and configuring the hp 3par server11:15
*** marcusvrn1 has quit IRC11:15
*** e0ne is now known as e0ne_11:16
*** aswadr has quit IRC11:21
*** timcl has joined #openstack-cinder11:21
*** haigang has joined #openstack-cinder11:23
*** e0ne_ has quit IRC11:27
*** links has joined #openstack-cinder11:33
*** cpg is now known as cpg|away11:34
*** akerr has joined #openstack-cinder11:34
kaisersdivya: sry, no experience with hp3par storage. But you will have much better chances / feedback in a few hours when the US guys come online...11:37
*** alexpilotti has joined #openstack-cinder11:43
*** annegentle has joined #openstack-cinder11:45
*** nikesh has quit IRC11:47
*** annegentle has quit IRC11:50
*** markvoelker has joined #openstack-cinder11:53
*** Robert- has joined #openstack-cinder11:54
*** pradipta has quit IRC11:56
*** markvoelker has quit IRC11:58
*** boris-42 has joined #openstack-cinder12:00
*** rongze has quit IRC12:01
* Robert- #ATW-RO :)12:04
*** _cjones_ has joined #openstack-cinder12:05
*** Robert- has left #openstack-cinder12:05
*** _cjones_ has quit IRC12:09
*** pradipta has joined #openstack-cinder12:12
*** bkopilov has quit IRC12:15
*** bswartz has quit IRC12:16
*** akerr has quit IRC12:23
*** dims has quit IRC12:25
*** dims has joined #openstack-cinder12:26
*** haomaiwang has joined #openstack-cinder12:26
*** markvoelker has joined #openstack-cinder12:29
*** cbader has joined #openstack-cinder12:32
*** annegentle has joined #openstack-cinder12:32
*** annegentle has quit IRC12:33
*** pradipta has quit IRC12:38
*** annegentle has joined #openstack-cinder12:39
*** nikesh has joined #openstack-cinder12:41
*** e0ne has joined #openstack-cinder12:41
*** esker has quit IRC12:43
*** esker has joined #openstack-cinder12:43
*** esker has quit IRC12:43
*** esker has joined #openstack-cinder12:44
*** Yogi1 has joined #openstack-cinder12:48
*** esker has quit IRC12:49
*** e0ne is now known as e0ne_12:58
*** bswartz has joined #openstack-cinder12:59
*** chlong has joined #openstack-cinder13:01
marcusvrnjgriffith: hi!13:05
*** tshefi has quit IRC13:07
*** e0ne_ has quit IRC13:08
*** akerr has joined #openstack-cinder13:08
*** eharney has quit IRC13:08
*** annegentle has quit IRC13:09
*** rushiagr is now known as rushiagr_away13:11
*** dustins has joined #openstack-cinder13:17
openstackgerritYAMADA Hideki proposed openstack/cinder: Fix missing clone_image API support for sheepdog driver.  https://review.openstack.org/15985613:17
*** annegentle has joined #openstack-cinder13:20
*** ganso_ has joined #openstack-cinder13:23
*** annegentle has quit IRC13:23
*** annegentle has joined #openstack-cinder13:23
*** mriedem_away is now known as mriedem13:28
*** e0ne has joined #openstack-cinder13:32
*** mwichmann has joined #openstack-cinder13:32
*** aswadr has joined #openstack-cinder13:37
*** zigo has quit IRC13:38
*** zigo_ is now known as zigo13:41
*** erlon has joined #openstack-cinder13:42
*** Maike has quit IRC13:43
*** annashen has joined #openstack-cinder13:44
*** nkrinner has quit IRC13:46
*** chlong has quit IRC13:47
*** eharney has joined #openstack-cinder13:47
*** ebalduf has joined #openstack-cinder13:50
*** diegows has quit IRC13:52
*** rongze has joined #openstack-cinder13:54
*** ebalduf has quit IRC13:55
*** rushiagr_away is now known as rushiagr13:56
*** annashen has quit IRC13:56
*** thangp has joined #openstack-cinder13:58
*** shilpa_ has quit IRC14:01
*** jungleboyj has quit IRC14:03
*** Bsony has joined #openstack-cinder14:04
*** timcl has quit IRC14:05
*** timcl has joined #openstack-cinder14:07
*** haigang has quit IRC14:08
*** ebalduf has joined #openstack-cinder14:11
*** rushil has joined #openstack-cinder14:11
*** Bsony has quit IRC14:11
*** annashen has joined #openstack-cinder14:14
*** annashen has quit IRC14:16
*** xyang1 has joined #openstack-cinder14:17
*** bkopilov has joined #openstack-cinder14:17
*** aix has joined #openstack-cinder14:18
*** aix has quit IRC14:19
*** xyang1 has quit IRC14:19
*** aix has joined #openstack-cinder14:20
*** eharney has quit IRC14:26
*** links has quit IRC14:26
*** ronis has quit IRC14:27
*** nlevinki has quit IRC14:27
*** Bsony has joined #openstack-cinder14:30
*** rhefner has joined #openstack-cinder14:33
*** kaisers has quit IRC14:34
*** bkopilov has quit IRC14:34
*** kaufer has joined #openstack-cinder14:34
openstackgerritSteven Kaufer proposed openstack/python-cinderclient: Cinder client does not expose error details  https://review.openstack.org/14837314:34
*** sks has quit IRC14:37
jgriffithjbernard: dansmith You guys have any luck on the UEC image stuff?14:38
jbernardjgriffith: yeah, one sec14:38
dansmithjgriffith: jbernard is working on the cinder part, I'm trying to get the gate to run the ceph job with a disk image14:39
dansmithmine being mostly a stop-gap14:39
jgriffithdansmith: yeah, I saw that....14:39
jgriffithdansmith: you didn't see my "opinion" yet :)14:39
jgriffithwhich is good14:39
jgriffithdansmith: but yes, better than just failing constantly14:40
dansmithjgriffith: I'm confused.. we _know_ what is wrong with the ceph cinder driver, right?14:40
dansmithalso, I actually think that we should be using disk images for all our jobs, because I expect that's how 90% of people use openstack14:41
jgriffithdansmith: I wasn't aware that anybody had actually "found" a real problem14:41
jgriffithdansmith: so I'd agree with your second statement probably14:41
jgriffithdansmith: and would be fine with that14:41
dansmithjgriffith: it doesn't compose the UEC into a disk like the others, right?14:42
jgriffithdansmith: sure but the quesiton is *why*14:42
dansmithjgriffith: it's just not accounted-for?14:42
dansmithjbernard: right?14:42
jgriffithdansmith: and the bigger question is why don't we fix it in the driver?14:42
dansmithwe do14:42
dansmithdefinitely14:42
dansmithjbernard is working on it now14:42
jgriffithdansmith: perfect14:43
dansmithI want the gate to be able to use disk images, and this is a good thing to use a disk image on, and if the fix is too invasive for kilo or doesn't make it via timing, I'd like to just have the gate use a disk image so we can make this gating,14:43
* jgriffith stops his devstack/ceph deployment run14:43
dansmithand prevent further regressions14:43
*** ishant has quit IRC14:43
jgriffithdansmith: meh... ok14:44
*** eharney has joined #openstack-cinder14:44
*** divya has quit IRC14:44
jgriffithdansmith: how soon do you want to make Ceph *gating*?14:44
jgriffithdansmith: cuz frankly I'm not wild about that idea at all14:44
dansmithon nova? yesterday, ideally14:44
jgriffithLOL14:44
dansmithuntil this test was re-enabled, it was all green14:44
jgriffithdansmith: do we have any stats?14:45
dansmithit's fully in openstack's infra and tests a ton of nova (and cinder apparently) code that doesn't get exercised any other way14:45
jgriffithdansmith: ie length of time it was running, number of tests pass/fail etc14:45
jgriffithsomething to show that it's stable enough for gating?14:45
dansmithjgriffith: it's not in the gate, so the only stats we have are logstash I think, which is like ten days14:45
jgriffithdansmith: although I'm rat holing on another subject14:45
jgriffithwe probably don't need to go down this road right now14:46
dansmithindeed14:46
*** jungleboyj has joined #openstack-cinder14:46
jgriffithdansmith: ok, so I get the stop gag.. that's cool (could also do a skip though no?)14:46
jgriffithdansmith: I don't like having a unique test for one driver/backend.. but that's just me14:47
jgriffithdansmith: and the fact that jbernard is working on a fix in the driver is good enough fo rme.14:47
jgriffithfor me14:47
dansmithwe can't skip per job, and skipping this for every job means we have no BFV coverage14:47
jgriffithdansmith: How doyou figure?14:48
jgriffithdansmith: You could certainl have a skip based on a backedn or conf file setting14:48
jgriffithcertainly even :)14:48
dansmithjgriffith: we discussed this in -nova with mtreinish and sdague yesterday14:48
dansmithit requires retooling some things, like this does, except this approach gets us testing of the path instead of skipping of the path14:49
*** deepakcs has joined #openstack-cinder14:49
jgriffithdansmith: ok14:49
mtreinishdansmith: well you can do it per job today by setting a regex in d-g which excludes the test that doesn't work14:50
mtreinishbut that's not really a friendly interface14:50
dansmithmtreinish: oh, I thought sdague was saying there was some problem with that, hence the uuid suggestion?14:50
mtreinishsorry setting a regex passed into d-g from project-config14:50
jgriffithI wonder if you and the folks you worked iwth on this would be so sympathetic ot *other* 3'rd party folks14:51
jgriffithbut honestly, I don't care14:51
jgriffithit doesn't hurt14:51
mtreinishdansmith: no that should work fine, I think that discussion was about a more user friendly way of doing skips14:51
dansmithmtreinish: either way, if we have to make a config change, I'd like to make one that's active instead of just skipping14:51
dansmithmtreinish: okay14:51
jbernardone sec, i have new info, but im on a call atm14:52
mtreinishdansmith: sure, I agree. I was just saying14:52
sdaguethe problem with the regex is it ends up hitting unrelated stuff some times14:52
sdagueand if tests move around you no longer test what you think you are14:52
*** gary-smith__ has joined #openstack-cinder14:52
jgriffithsdague: dansmith mtreinish Thoughts on just chaning it for *everyone* then?14:52
jgriffithsdague: dansmith mtreinish and dropping support for UEC?14:53
dansmithjgriffith: changing what, to use the disk images?14:53
jgriffithdansmith: yes14:53
dansmithjgriffith: I'm fine with that, I think I suggested that yesterday14:53
*** markstur has joined #openstack-cinder14:53
jbernardso, there's a distinct difference in the xml generated by nova for lvm volumes vs. ceph volumes, which worries me a bit14:53
jbernardfor lvm, the -initrd and -kernel are included, but for ceph they are not14:53
jgriffithjbernard: yes, ceph has it's own libvrit driver14:54
jbernardwhen volume is created for the same UEC image14:54
dansmithjbernard: orly?14:54
mtreinishsdague: sure, but you could use the uuid as the regex exclude too14:54
sdagueoh, so it might be a nova bad then?14:54
dansmithjbernard: I thought I asked about this yesterday14:54
jbernardim learning about all of this now, so bare with me14:54
dansmithjbernard: because that means the disk doesn't have to be complete14:54
jbernarddansmith: i had a chance to look at the xml this morning14:54
jbernardfor lvm, they additional references are included14:54
jbernardbut for the same from ceph, they're missing14:55
jbernardso, im not /sure/ it's a bug in the ceph driver14:55
dansmithokay, let's take this back to -nova and work on that14:55
jbernardi just need some time to figure out what when wrong14:55
jbernardit's failing for gluster and sheepdog in the same way, i suspect14:55
*** Bsony has quit IRC14:55
*** hemnafk is now known as hemna14:55
hemnamorning14:56
openstackgerritIvan Kolodyazhny proposed openstack/cinder: Use six.text_type instead of unicode  https://review.openstack.org/17015614:56
*** lpabon has joined #openstack-cinder14:56
jgriffithsdague: mtreinish My point I was trying to make was just that it seems "wrong" to have a unique/different set of testing methodology here14:57
sdaguejgriffith: maybe14:57
*** Bsony has joined #openstack-cinder14:57
jgriffithbut I seem to be the only one that feels that way so I will let it go14:57
openstackgerritLee Yarwood proposed openstack/cinder: Fix multipath device discovery when UFN is enabled.  https://review.openstack.org/17015714:58
sdaguehonestly, I think there is shoring up things so they don't backslide14:58
sdagueand I'd rather do that at this point in a release cycle14:58
sdaguethen normalize when we aren't up against rcs14:58
*** xyang1 has joined #openstack-cinder14:58
jgriffithsdague: I kinda see that.  Although frankly there's a dozen or so driver/backends that run this test fine14:59
*** garysmith_ has joined #openstack-cinder14:59
jgriffithsdague: and there *may* be people that actually *use* UEC in the real world... I dunno14:59
*** garysmith__ has joined #openstack-cinder14:59
jgriffithsdague: I'm cool with whatever you all decide here I guess14:59
jgriffithJust wanted to make sure I voiced my opinion and we thought about it15:00
jgriffithmoving on15:00
sdaguejgriffith: sure, but if it turns out that a different image type means we get to test the whole path15:00
jgriffithsdague: dansmith thanks for listening15:00
sdaguethat prevents bugs in other parts15:00
sdagueif we always fail because of an image type we don't test the rest of the volume path15:00
jgriffithsdague: sure15:00
*** gary-smith_ has quit IRC15:00
jgriffithsdague: my thoguth was we suport both, we shoudl test both :)15:01
sdagueso it can just be noted as a limitation of this driver in release notes, and move on15:01
jgriffithsdague: yeah, that's fien by me15:01
jgriffithsdague: although it completely goes against what Cinder put in place for CI rules15:01
*** markstur has left #openstack-cinder15:01
jgriffithbut I have other things to occupy my time :)15:02
*** kvidvans has quit IRC15:03
*** gary-smith__ has quit IRC15:03
sdaguelooking at - https://review.openstack.org/#/c/151567/ - I don't see other 3rd party ci that's passing running this test15:04
jbernardsdague: yeah, they all seem to be failing on teh same test15:04
sdagueoh, not entirely true - http://oscilogs.x-io.com/67/151567/3/check/dsvm-tempest-xio-fc/9271d0a/console.html  is passing15:04
jbernardsdague: im not convinced it's a ceph and/or UEC image bug15:04
jbernardsdague: ahh, fair point15:05
jbernardsdague: i hope to have more info after today15:05
*** garysmith_ has left #openstack-cinder15:05
sdaguebut a lot seem to have old tempest trees, so are still skipping it15:05
jgriffithsdague: dansmith my vote is go with dansmith 's suggestion of just not using UEC for now at least15:05
*** garysmith__ has left #openstack-cinder15:05
jbernardthat's strange, are they not reclosing?15:05
jbernard*recloning*15:05
jgriffithsdague: dansmith across the board15:05
jgriffithat leat that way we're consistent (IMHO)15:06
sdaguejgriffith: like I said, that's a broader policy thing that I don't think we should flip at this point in the RC process15:06
dansmithbut then we don't get any uec coverage, and a this point, it moves us to testing a lot of different code15:06
jgriffithsdague: ahh... sorry, I missed that15:06
jgriffithOk15:06
jgriffithfair enough15:06
sdaguebecause I'm in no way interested in chasing a new set of bugs at this point in the RC, if it was during open development fine15:06
sdagueand post RC, I'm ok with it15:06
jgriffithYep, agreed15:06
jgriffithOk15:06
*** gary-smith has joined #openstack-cinder15:07
jgriffithYou guys have the best plan it would seem  then15:07
jgriffithsorry for the disruption15:07
e0nehi! you you talking about ceph backend or other one?15:07
*** Mandell has quit IRC15:07
jgriffithe0ne: ceph and the boot uec stuff15:07
e0nejgriffith: thanks. i've just seen thad dsvm-ceph jobs failed today15:08
jbernarde0ne: im looking into it today, hope to have it sorted soon15:09
*** pradipta has joined #openstack-cinder15:09
e0nejbernard: great! thanks for taking care on it.15:10
*** anshul has quit IRC15:10
*** xyang1 has quit IRC15:11
openstackgerritIvan Kolodyazhny proposed openstack/os-brick: Use six.text_type instead of unicode  https://review.openstack.org/17016215:11
openstackgerritIvan Kolodyazhny proposed openstack/cinder: Use six.text_type instead of unicode  https://review.openstack.org/17015615:11
deepakcsjbernard, for glusterfs CI its failing the same testcase (test_volume_boot_pattern) but the fail error/excp is different when compared to ceph15:12
openstackgerritIvan Kolodyazhny proposed openstack/os-brick: Use six.text_type instead of unicode  https://review.openstack.org/17016215:12
deepakcsjbernard, for ceph it tries to boot server and is unable to connect to it. For gluster it fails to build the server itself!15:12
jbernarddeepakcs: yeah, you'll want to dig into that then15:12
deepakcsjbernard, fyi in case that helps15:12
*** ebalduf has quit IRC15:12
jbernarddeepakcs: its looks distinctly different from my issue15:12
deepakcsjbernard, ok, the test case is same tho'15:12
jbernardyeah, but not surprsising15:13
jbernardthat test case covers _a lot_15:13
deepakcsjbernard, I just saw 1 of the glusterfs CI failure, need to see more to convincingly say that its the same failure across all glusterfs fails15:13
*** Bsony has quit IRC15:13
deepakcsjbernard, frankly, i don't know much of the test details, need to ramp up on my UEC knowledge first :)15:13
deepakcsjbernard, so will be looking at ur debug/analysis15:13
jbernarddeepakcs: ping me if you have questions, i *might* be able to help15:14
openstackgerritAnkit Agrawal proposed openstack/cinder: Fix missing translations for log messages  https://review.openstack.org/16469715:14
deepakcsjbernard, will either ping or send email, TZ diff is big for us :), i have subscribed to ur bug, so pls udpate it if u think anything can be of use to me/others15:14
jbernarddeepakcs: will do, get some sleep :)15:15
deepakcsjbernard, thanks, one last q, were u able to narrow down which patch caused this tests to fail ?15:15
deepakcsjbernard, bcos for glusterfs all tests were passing atleast 1 week back :)15:15
jbernarddeepakcs: yes, the patch where the test was enabled :)15:15
jbernarddeepakcs: prior to that time, it was skipped15:15
deepakcsjbernard, ah, hmm, i thot it was alweays enabled, doh!15:15
jbernardpreviously it have failed for all drivers intermittently15:16
*** jaypipes has joined #openstack-cinder15:16
deepakcsjbernard, so does it now too :)15:16
jbernardi believe it passes for lvm now15:16
jbernardit did for me15:16
deepakcsjbernard, yeah, i guess so, otherwise the patch wouldn't have got +1 :)15:16
jbernardi ignored it originally because it also failed on lvm15:16
*** annashen has joined #openstack-cinder15:17
deepakcsjbernard, let me start digging into it too then, do update the lp bug with what u find, as I am looking at it for any/more info :)15:17
jbernarddeepakcs: kk, will do15:17
deepakcsjbernard, thanks, good day15:17
*** deepakcs has quit IRC15:18
*** alexpilotti_ has joined #openstack-cinder15:19
*** annashen has quit IRC15:21
*** alexpilotti has quit IRC15:22
*** alexpilotti_ is now known as alexpilotti15:22
*** alecv_ has quit IRC15:24
*** dannywilson has joined #openstack-cinder15:24
*** tsekiyama has joined #openstack-cinder15:29
*** dannywil_ has joined #openstack-cinder15:29
*** dannywilson has quit IRC15:29
*** markus_z has quit IRC15:30
*** kaufer1 has joined #openstack-cinder15:30
*** MentalRay has joined #openstack-cinder15:32
*** jdurgin1 has joined #openstack-cinder15:32
*** kaufer has quit IRC15:33
*** TobiasE has left #openstack-cinder15:33
*** MentalRay has quit IRC15:35
openstackgerritAviram Bar-Haim proposed openstack/cinder: Fix ISCSIDriver initialized connection volume type  https://review.openstack.org/17017815:39
*** esker has joined #openstack-cinder15:40
openstackgerritLee Yarwood proposed openstack/cinder: Fix multipath device discovery when UFN is enabled.  https://review.openstack.org/17015715:40
openstackgerritAviram Bar-Haim proposed openstack/cinder: Fix ISCSIDriver initialized connection volume type  https://review.openstack.org/17017815:43
Swansondeepakcs: I've had some issues with that test case intermittently.  which bug are you looking at?15:45
*** ronis has joined #openstack-cinder15:48
*** kbyrne has quit IRC15:48
*** Apoorva has joined #openstack-cinder15:51
*** Apoorva has quit IRC15:52
*** aswadr has quit IRC15:52
*** e0ne is now known as e0ne_15:52
*** emagana has joined #openstack-cinder15:53
*** Apoorva has joined #openstack-cinder15:56
*** crose has joined #openstack-cinder15:56
*** shilpa_ has joined #openstack-cinder15:57
*** e0ne_ is now known as e0ne15:59
*** eharney has quit IRC16:00
*** abhijeetm has quit IRC16:00
*** lpabon has quit IRC16:01
*** ndipanov has quit IRC16:01
*** mriedem has quit IRC16:02
*** _cjones_ has joined #openstack-cinder16:03
*** xyang1 has joined #openstack-cinder16:03
openstackgerritIvan Kolodyazhny proposed openstack/cinder: six.text_type should be used instead of unicode  https://review.openstack.org/17015616:03
openstackgerritIvan Kolodyazhny proposed openstack/cinder: Use six.text_type instead of unicode  https://review.openstack.org/17015616:04
*** dflorea has joined #openstack-cinder16:05
smcginnise0ne: Hey! Not sure if you saw my comment, but HACKING.rst needs to be updated with your new check.16:05
e0nesmcginnis: hi. i've already fixed it16:05
*** xyang1 has quit IRC16:06
e0nesmcginnis: oops. didn't upload the latest patch16:06
smcginnise0ne: Hmm, I don't see it in the review. :/16:06
*** annashen has joined #openstack-cinder16:07
*** mriedem has joined #openstack-cinder16:07
smcginnise0ne: Oh good, simple explanation. :)16:07
*** aix has quit IRC16:07
openstackgerritIvan Kolodyazhny proposed openstack/cinder: Use six.text_type instead of unicode  https://review.openstack.org/17015616:07
e0nesmcginnis: done ^^ :)16:07
smcginnise0ne: Thanks! :)16:08
e0nesmcginnis: thanks for the review16:08
smcginnise0ne: NP. I've been trying to get rid of those in the i18n patches too.16:08
e0nesmcginnis: i hope, we'll move all of such checks to hacking16:09
smcginnise0ne: Yeah, great to have that enforcement in there. Otherwise the list of things to watch out for in reviews just keeps growing.16:10
e0nesmcginnis: these things make me sad:(. i tired to review it manually16:11
DuncanTHacking checks are definitely the way forward16:11
*** ebalduf has joined #openstack-cinder16:13
e0neDuncanT: +2. i've started thread in ML and i'm working on it in scope of hacking project16:13
DuncanTExcellent stuff16:13
tbarronsmcginnis: in https://review.openstack.org/162376 you say you'd prefer that log message checking not be done in unit tests16:14
tbarronnow I'm too lazy to do that kind of checking myself :-)16:15
tbarronbut I16:15
tbarronam curious about the reasoning behind this preference.16:15
*** kbyrne has joined #openstack-cinder16:15
*** afazekas has quit IRC16:16
*** xyang1 has joined #openstack-cinder16:16
*** markstur has joined #openstack-cinder16:17
*** ebalduf has quit IRC16:18
*** Bsony has joined #openstack-cinder16:19
*** markstur has left #openstack-cinder16:19
openstackgerritAnton Arefiev proposed openstack/cinder: Enable H238 hacking rule  https://review.openstack.org/17019916:21
*** aswadr has joined #openstack-cinder16:21
*** mdenny has joined #openstack-cinder16:21
*** alecv_ has joined #openstack-cinder16:22
*** jistr has quit IRC16:23
*** Bsony has quit IRC16:24
DuncanTHmmm, scality CI seems to be ill16:27
*** vilobhmm1 has joined #openstack-cinder16:28
*** lcurtis has joined #openstack-cinder16:29
*** leeantho has joined #openstack-cinder16:30
smcginnistbarron: Sorry, had stepped away.16:32
jordanPDuncanT, I am on it16:32
smcginnistbarron: Seems like something prone to fail.16:32
DuncanTjordanP: Cheers16:32
smcginnistbarron: Log messages can be updated and it's not obvious that they are used elsewhere.16:32
smcginnistbarron: I think as far as unit tests go, the actual text of the log message should be irrelevant.16:33
smcginnistbarron: It's probably OK to check that a warning log was done, but as far as specifically what it says I don't think that is a unit test concern.16:33
smcginnistbarron: Maybe just my opinion.16:33
e0nesmcginnis: +1 on it16:33
DuncanTI agree that the UT probably shouldn't validate the exact text of the log message... the test shouldn't start failing just because somebody altered the text. Testing that a warning is emitted sounds good though16:34
*** shilpa_ has quit IRC16:35
*** jdurgin1 has quit IRC16:41
*** Bsony has joined #openstack-cinder16:41
*** harlowja_away is now known as harlowja16:42
openstackgerritAnton Arefiev proposed openstack/cinder: Enable H238 hacking rule  https://review.openstack.org/17019916:43
*** anshul has joined #openstack-cinder16:45
*** bkopilov has joined #openstack-cinder16:45
*** melwitt has joined #openstack-cinder16:46
*** e0ne is now known as e0ne_16:46
*** Longgeek has quit IRC16:50
*** rongze has quit IRC16:52
*** Miouge has quit IRC16:53
*** e0ne_ is now known as e0ne16:55
jordanPDuncanT, it will be fixed in a couple of minute. We will leave a couple of "recheck scality" on the patch that failed16:55
jordanPI have to go...16:55
DuncanTjordanP: That's great, thanks16:56
*** jordanP has quit IRC16:56
DuncanTI only mentioned it incase you hadn't noticed TBH16:56
*** Yogi11 has joined #openstack-cinder16:56
*** Mandell has joined #openstack-cinder16:57
*** alecv_ has quit IRC16:58
*** dustins_ has joined #openstack-cinder16:58
*** Yogi1 has quit IRC16:59
*** dustins has quit IRC16:59
*** rushil has quit IRC16:59
*** Yogi1 has joined #openstack-cinder17:01
*** bswartz has quit IRC17:01
tbarronsmcginnis: now I was away.  Thanks for explaining.17:01
*** EmilienM is now known as EmilienM|afk17:01
*** annegentle has quit IRC17:03
*** bswartz has joined #openstack-cinder17:03
*** Yogi11 has quit IRC17:04
tbarronWhat you folks said on that (scmginnis, e0ne, DuncanT) makes sense to me.17:04
smcginnistbarron: :)17:05
*** lcurtis has quit IRC17:07
*** pradipta has quit IRC17:13
*** ebalduf has joined #openstack-cinder17:14
*** dflorea has quit IRC17:18
*** ebalduf has quit IRC17:19
*** dflorea has joined #openstack-cinder17:19
*** dflorea has quit IRC17:23
*** sks has joined #openstack-cinder17:25
*** sks has quit IRC17:25
*** Mandell has quit IRC17:25
*** dustins_ has quit IRC17:26
*** patrickeast has joined #openstack-cinder17:29
*** aswadr has quit IRC17:30
*** Mandell has joined #openstack-cinder17:30
*** alexpilotti_ has joined #openstack-cinder17:30
*** rongze has joined #openstack-cinder17:30
*** alexpilotti has quit IRC17:32
*** alexpilotti_ is now known as alexpilotti17:33
*** e0ne has quit IRC17:33
openstackgerritVipin Balachandran proposed openstack/cinder: VMware: Skip vSAN for preallocated image download  https://review.openstack.org/15690417:33
*** dulek has quit IRC17:34
openstackgerritVipin Balachandran proposed openstack/cinder: VMware: Skip vSAN for preallocated image download  https://review.openstack.org/15690417:37
*** dflorea has joined #openstack-cinder17:38
*** dustins has joined #openstack-cinder17:41
*** eharney has joined #openstack-cinder17:42
*** emagana has quit IRC17:42
*** alexpilotti has quit IRC17:42
*** alexpilotti has joined #openstack-cinder17:44
*** markstur has joined #openstack-cinder17:50
*** dflorea has quit IRC17:51
*** dflorea has joined #openstack-cinder17:52
*** dflorea_ has joined #openstack-cinder17:53
*** dflorea has quit IRC17:54
*** russellb has quit IRC17:55
*** marcusvrn1 has joined #openstack-cinder17:56
*** marcusvrn has quit IRC17:56
*** markstur has left #openstack-cinder17:57
*** annegentle has joined #openstack-cinder17:58
*** russellb has joined #openstack-cinder17:58
*** rongze has quit IRC18:01
*** kaufer has joined #openstack-cinder18:01
*** kaufer1 has quit IRC18:01
*** Mandell has quit IRC18:02
*** dustins_ has joined #openstack-cinder18:03
*** dustins has quit IRC18:06
*** dflorea_ has quit IRC18:11
*** dflorea has joined #openstack-cinder18:12
*** e0ne has joined #openstack-cinder18:14
*** russellb has quit IRC18:15
*** dflorea has quit IRC18:16
*** russellb has joined #openstack-cinder18:19
*** mriedem has quit IRC18:19
*** annegentle has quit IRC18:20
*** ganso_ has quit IRC18:27
openstackgerritLee Yarwood proposed openstack/os-brick: Fix multipath device discovery when UFN is enabled.  https://review.openstack.org/17023218:29
*** JayJ_ has joined #openstack-cinder18:30
*** EmilienM|afk is now known as EmilienM18:30
*** cpg|away is now known as cpg18:30
*** sgotliv has quit IRC18:30
*** diemt has joined #openstack-cinder18:30
*** dustins has joined #openstack-cinder18:31
*** kaufer1 has joined #openstack-cinder18:32
*** kaufer has quit IRC18:33
*** dustins_ has quit IRC18:34
hemnanice!18:38
e0nehemna: what did i miss?18:38
*** jgravel has quit IRC18:39
hemnae0ne, just trying to coordinate some fixes that are going into nova's libvirt volume driver -> os-brick18:39
e0ne:)18:39
hemnae0ne, https://review.openstack.org/#/c/170232/18:39
hemnaredhat7 breakage with multipath18:40
lpetrutHi guys. All the volume drivers that rely on nova assisted snapshoting currently fail the volume boot pattern test. Is it fine to exclude this on our CI? I've added some more info on this bug report: https://bugs.launchpad.net/tempest/+bug/143980618:40
openstackLaunchpad bug 1439806 in tempest "Volume boot pattern issue" [Undecided,New]18:40
hemnae0ne, the nova fix: https://review.openstack.org/#/c/169873/18:40
*** bkopilov has quit IRC18:41
e0nehemna: imo, it's great! it makes our chance to use brick in nova higher18:41
*** russellb has quit IRC18:42
*** thangp has quit IRC18:42
hemnayup.18:44
*** ronis_ has joined #openstack-cinder18:46
*** russellb has joined #openstack-cinder18:47
*** mriedem has joined #openstack-cinder18:48
*** ronis__ has joined #openstack-cinder18:49
*** timcl has quit IRC18:49
*** Mandell has joined #openstack-cinder18:49
*** bkopilov has joined #openstack-cinder18:50
*** ronis has quit IRC18:50
*** ronis_ has quit IRC18:52
*** annegentle has joined #openstack-cinder18:53
e0nejaypipes: hi. ^^ it's related your question about brick18:53
*** lpetrut has quit IRC18:58
*** lpetrut has joined #openstack-cinder18:58
*** lpetrut has quit IRC18:59
*** annegentle has quit IRC18:59
*** bswartz has quit IRC18:59
*** annegentle has joined #openstack-cinder18:59
e0nehemna: what are your thought about design summit topic for cinder agent and ironic integration? should we propose two different sessions?19:01
e0nehemna: our guys from ironic team is very interested in it19:01
hemnasure.  I think they could be one in the same19:01
*** rongze has joined #openstack-cinder19:02
hemnathe ironic cinder integration is a much broader topic though19:02
hemnait requires some server vendors to make some changes to support boot from volume settings via remote19:02
e0nehemna: at least, we could implement attachement19:03
vilobhmm1eone, hemna : do we have a doc/spec/blueprint regarding the same…would be happy to contribute in this effort19:03
hemnait might be worth sitting in on an ironic meetup sessions and raise the question again and see where everyone is.19:03
hemnaI was trying to drive this a few releases ago19:03
hemnabut we got stuck on needing h/w vendor support19:03
hemnathe cinder agent really is needed though in the long run as well19:04
hemnathere are some challenges there that we need to figure out.19:04
e0neagree. i've added proposal to design summit19:04
hemnaok sounds good.19:04
hemnafor the most part the cinder agent is straight forward19:05
hemnaREST API in front of brick19:05
hemnabut it needs keystone support19:05
e0nehemna: i remember it:)19:05
hemnahence flask + keystone19:05
hemnaand that also assumes that there is some sort of config or settings injection in the agent, and the agent is allowed to talk to keystone19:05
e0nei stuck with internal release/tasks...19:06
*** rongze has quit IRC19:06
hemnabut I would love to get it working19:06
e0nei need to integrate keystone middleware and finish unit tests19:06
e0nevilobhmm1: i'll find etherpad and add link to https://etherpad.openstack.org/p/cinder-liberty-proposed-sessions19:07
hemnaso maybe we can target a preview release for the agent in L.19:07
e0nesounds great19:07
vilobhmm1e0ne : ok thanks19:08
hemnaI can probably work on it as well after we get cinder/nova using brick19:08
hemnathat's my top priority for L.19:08
hemnaeventually I see the cinder agent also being a subproject of cinder itself, just like os-brick is.  owned by the cinder team, but used by others.19:09
hemnamaybe nova, and ironic19:09
e0nei could enforce our ironic team on it19:10
hemnae0ne, we should probably do a writeup on the cinder wiki on our proposal for the agent.  what it is, what it isn't, etc.19:10
hemnaok going to go get some lunch....bbiab.19:11
e0neof cource, i can't promice it, but we are very interesting in 2 big areas for:  ha and ironic integration to MOS (our product)19:11
vilobhmm1hemna : sounds like a good idea…having all the docs for cinder + ironic at one place will help ….e0ne : i could find https://wiki.openstack.org/wiki/Ironic/blueprints/cinder-integration https://etherpad.openstack.org/p/ironic-and-cinder one the liberty sessions etherpad page19:13
vilobhmm1will start from there19:13
vilobhmm1once i am done with this objects task in hand19:14
* e0ne bb tomorrow19:14
*** e0ne has quit IRC19:15
*** rushil has joined #openstack-cinder19:20
*** dflorea has joined #openstack-cinder19:21
*** Apoorva has quit IRC19:23
*** Apoorva has joined #openstack-cinder19:23
*** dflorea has quit IRC19:25
*** thingee has joined #openstack-cinder19:27
*** cpg is now known as cpg|away19:27
*** Bsony has quit IRC19:31
*** kaufer1 has quit IRC19:35
*** kaufer has joined #openstack-cinder19:36
*** kaufer1 has joined #openstack-cinder19:37
*** sgotliv has joined #openstack-cinder19:38
*** sgotliv has quit IRC19:39
*** kaufer has quit IRC19:40
*** lcurtis has joined #openstack-cinder19:41
*** lpetrut has joined #openstack-cinder19:46
*** rmesta has quit IRC19:47
*** rushiagr is now known as rushiagr_away19:51
*** dflorea has joined #openstack-cinder19:51
*** rushiagr_away is now known as rushiagr19:53
*** dflorea has quit IRC19:54
*** Mandell has quit IRC19:54
*** geguileo has quit IRC20:00
*** alecv_ has joined #openstack-cinder20:00
*** rongze has joined #openstack-cinder20:02
*** marcusvrn1 has quit IRC20:06
*** rongze has quit IRC20:07
*** rmesta has joined #openstack-cinder20:15
*** anshul has quit IRC20:16
*** cpg|away is now known as cpg20:16
*** Mandell has joined #openstack-cinder20:16
*** Apoorva_ has joined #openstack-cinder20:17
*** Apoorva has quit IRC20:17
*** dflorea has joined #openstack-cinder20:18
*** Apoorva_ has quit IRC20:18
*** rushiagr is now known as rushiagr_away20:23
*** rmesta has quit IRC20:26
*** rmesta has joined #openstack-cinder20:26
*** alecv_ has quit IRC20:31
*** lcurtis has quit IRC20:32
*** bswartz has joined #openstack-cinder20:34
*** rsoto has joined #openstack-cinder20:36
*** Bsony has joined #openstack-cinder20:37
rsotoHello all, I have a question and havent been able to find an answer in the docs or in ask.openstack20:37
rsotoI have 2 VMs, one runs my Cinder API and Scheduler and the other runs the Cinder Volume, I try to create a volume but I get the following error Failed to run task cinder.scheduler.flows.create_volume.ScheduleCreateVolumeTask;volume:create: No valid host was found. No weighed hosts available20:38
*** lcurtis has joined #openstack-cinder20:48
*** annegentle has quit IRC20:51
*** lpetrut has quit IRC20:53
*** annegentle has joined #openstack-cinder20:54
*** bswartz has quit IRC20:55
*** annegentle has quit IRC20:55
openstackgerrithadi esiely proposed openstack/cinder: Store volume encryption metadata on each volume  https://review.openstack.org/15228420:56
*** Apoorva has joined #openstack-cinder20:58
*** dannywilson has joined #openstack-cinder21:00
hemnalooks like some features that have been added to nova's LibvirtISCSIVolumeDriver aren't in brick's iscsi connector21:01
hemna*sigh*21:01
hemnastarting to work on a WIP patch for nova -> os-brick21:01
*** patrickeast_ has joined #openstack-cinder21:01
*** annegentle has joined #openstack-cinder21:01
*** patrickeast has quit IRC21:02
*** patrickeast_ is now known as patrickeast21:02
*** melwitt has quit IRC21:02
*** melwitt_ has joined #openstack-cinder21:02
*** dannywil_ has quit IRC21:02
anishhemna: one of those is mine21:02
anishwith an open spec21:02
hemnathe transports21:02
anishyes21:02
*** lpabon has joined #openstack-cinder21:02
*** vilobhmm1 has quit IRC21:03
*** melwitt_ has quit IRC21:03
hemnaI'm taking a look at it now21:03
hemnaso it looks like there is a CONF.libvirt.iscsi_iface setting in nova21:03
hemnathat is the asked for transport21:03
*** vilobhmm1 has joined #openstack-cinder21:03
*** rongze has joined #openstack-cinder21:03
*** lcurtis has quit IRC21:03
*** melwitt_ has joined #openstack-cinder21:03
hemnaI'll make that a kwarg in the ISCSIConnector21:03
anishsounds good21:04
anishthe bigger change is in the dev path21:04
anishit is broken for iser right now in brick21:04
hemnaoh?21:04
anishthere is a pci suffix in the device name when you use any transport21:05
*** melwitt_ is now known as melwitt21:06
*** emagana has joined #openstack-cinder21:07
*** rongze has quit IRC21:08
anishman, github is still reeling21:09
anishhemna: https://github.com/openstack/os-brick/blob/master/os_brick/initiator/connector.py#L41621:09
*** emagana has quit IRC21:09
anishsorry, i meant this one https://github.com/openstack/os-brick/blob/master/os_brick/initiator/connector.py#L66521:10
*** emagana has joined #openstack-cinder21:10
anishcompare with the path in https://review.openstack.org/#/c/146233/22/nova/virt/libvirt/volume.py21:10
anishpci-xxxx-21:10
*** _cjones_ has quit IRC21:11
*** _cjones_ has joined #openstack-cinder21:11
*** dustins has quit IRC21:11
*** dflorea has quit IRC21:12
*** Mandell has quit IRC21:12
*** dflorea has joined #openstack-cinder21:13
*** ronis__ has quit IRC21:13
*** emagana has quit IRC21:14
*** Mandell has joined #openstack-cinder21:15
*** akerr has quit IRC21:15
*** emagana has joined #openstack-cinder21:16
*** Yogi1 has quit IRC21:16
*** haomaiwang has quit IRC21:16
*** dflorea has quit IRC21:17
openstackgerrithadi esiely proposed openstack/cinder: Store volume encryption metadata on each volume  https://review.openstack.org/15228421:17
*** cbader has quit IRC21:17
*** xyang1 has quit IRC21:18
*** Bsony has quit IRC21:21
hemnaquite a bit has changed since I pulled the iscsi stuff out of nova21:24
*** ociuhandu has quit IRC21:32
*** rushil has quit IRC21:33
*** sweston has quit IRC21:33
*** mgagne has quit IRC21:33
*** annashen has quit IRC21:34
*** adam_g has quit IRC21:34
*** fanyaohong_ has joined #openstack-cinder21:34
*** rmesta1 has joined #openstack-cinder21:35
*** julim_ has joined #openstack-cinder21:36
*** leeantho_ has joined #openstack-cinder21:36
*** sweston has joined #openstack-cinder21:36
*** morganfainberg has quit IRC21:37
*** morganfainberg has joined #openstack-cinder21:37
*** garysmith_ has joined #openstack-cinder21:37
*** haomaiwang has joined #openstack-cinder21:37
*** emagana has quit IRC21:38
*** vilobhmm11 has joined #openstack-cinder21:38
*** fanyaohong has quit IRC21:38
*** gary-smith has quit IRC21:38
*** krtaylor has quit IRC21:38
*** rmesta has quit IRC21:38
*** vilobhmm1 has quit IRC21:38
*** leeantho has quit IRC21:38
*** julim has quit IRC21:38
*** fanyaohong_ is now known as fanyaohong21:38
*** adam_g has joined #openstack-cinder21:39
*** kaufer1 has quit IRC21:40
*** adam_g has quit IRC21:40
*** adam_g has joined #openstack-cinder21:40
*** mgagne has joined #openstack-cinder21:40
Swansonhemna: in a "that's interesting" way?  In a "that causes a problem way"?21:40
hemnaboth :P21:40
hemnaI have to resolve the differences21:40
hemnaor nova won't accept using os-brick losing features.21:41
*** krtaylor has joined #openstack-cinder21:41
*** lpabon has quit IRC21:41
*** annegentle has quit IRC21:44
*** rmesta1 has quit IRC21:44
*** angela-s has quit IRC21:46
*** rmesta has joined #openstack-cinder21:50
*** vilobhmm11 has quit IRC21:53
*** vilobhmm1 has joined #openstack-cinder21:53
*** vilobhmm1 has quit IRC21:54
*** crose has quit IRC21:54
*** vilobhmm1 has joined #openstack-cinder21:54
*** esker has quit IRC21:54
*** dannywilson has quit IRC21:58
*** dannywilson has joined #openstack-cinder21:59
*** casusbelli has quit IRC21:59
*** alexpilotti has quit IRC21:59
*** jungleboyj has quit IRC21:59
*** annegentle has joined #openstack-cinder22:02
*** rongze has joined #openstack-cinder22:04
*** melwitt has quit IRC22:07
*** melwitt has joined #openstack-cinder22:07
*** melwitt has quit IRC22:08
*** melwitt has joined #openstack-cinder22:09
*** melwitt has quit IRC22:09
*** rongze has quit IRC22:09
*** annegentle has quit IRC22:11
*** annegentle has joined #openstack-cinder22:12
*** marcusvrn has joined #openstack-cinder22:18
*** marcusvrn has quit IRC22:19
*** marcusvrn has joined #openstack-cinder22:19
*** JayJ_ has quit IRC22:25
*** melwitt has joined #openstack-cinder22:25
*** annegentle has quit IRC22:27
*** melwitt has quit IRC22:31
*** Mandell has quit IRC22:40
*** rsoto has quit IRC22:41
*** eharney has quit IRC22:43
*** annashen has joined #openstack-cinder22:45
*** Mandell has joined #openstack-cinder22:45
*** ebalduf has joined #openstack-cinder22:45
*** ebalduf has quit IRC22:50
*** annashen has quit IRC22:55
*** annashen has joined #openstack-cinder22:55
*** mriedem is now known as mriedem_away22:58
*** Lee1092 has quit IRC23:00
*** dannywilson has quit IRC23:03
openstackgerritTom Swanson proposed openstack/cinder: Dell SC driver has insufficient iscsi logging  https://review.openstack.org/17031023:04
*** rongze has joined #openstack-cinder23:05
*** dannywilson has joined #openstack-cinder23:05
openstackgerritVilobh Meshram proposed openstack/cinder: WIP : Quota Objects  https://review.openstack.org/16323223:07
*** rongze has quit IRC23:10
*** tsekiyam_ has joined #openstack-cinder23:11
*** iwao has joined #openstack-cinder23:13
*** tsekiyama has quit IRC23:14
*** tsekiyam_ has quit IRC23:15
*** dflorea has joined #openstack-cinder23:16
*** jdurgin has quit IRC23:17
*** annashen has quit IRC23:20
*** annashen has joined #openstack-cinder23:22
vilobhmm1dulek : ping23:23
*** hemna is now known as hemnafk23:25
*** patrickeast has quit IRC23:25
*** dannywilson has quit IRC23:26
*** _cjones_ has quit IRC23:34
*** annegentle has joined #openstack-cinder23:41
*** annashen has quit IRC23:42
*** garysmith_ has quit IRC23:44
*** rmesta has quit IRC23:45
*** rmesta has joined #openstack-cinder23:45
*** haomaiwang has quit IRC23:45
*** haomaiwang has joined #openstack-cinder23:46
*** rlucio has quit IRC23:46
*** annashen has joined #openstack-cinder23:47
*** dflorea has quit IRC23:48
*** annashen has quit IRC23:48
*** dflorea has joined #openstack-cinder23:49
*** annashen has joined #openstack-cinder23:50
*** erlon has quit IRC23:51
*** IanGovett has quit IRC23:52
*** IanGovett has joined #openstack-cinder23:52
*** bswartz has joined #openstack-cinder23:53
*** dflorea has quit IRC23:53
*** rmesta has quit IRC23:53
*** jaypipes has quit IRC23:54
*** IanGovett has quit IRC23:57
*** annegentle has quit IRC23:57

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