openstackgerrit | Hahyun proposed openstack/os-brick: Fix wrong command for _rescan_multipath https://review.openstack.org/169951 | 00:02 |
---|---|---|
*** tsekiyam_ has joined #openstack-cinder | 00:07 | |
*** tsekiyama has quit IRC | 00:10 | |
*** tsekiyam_ has quit IRC | 00:12 | |
*** mtanino has quit IRC | 00:12 | |
*** dannywilson has quit IRC | 00:18 | |
*** annashen has joined #openstack-cinder | 00:19 | |
*** erlon has quit IRC | 00:31 | |
*** annegentle has joined #openstack-cinder | 00:38 | |
*** cpg is now known as cpg|away | 00:40 | |
*** leeantho has quit IRC | 00:42 | |
*** annegentle has quit IRC | 00:43 | |
*** diegows has joined #openstack-cinder | 00:44 | |
*** dflorea has joined #openstack-cinder | 00:52 | |
*** annashen has quit IRC | 00:54 | |
*** heyun has joined #openstack-cinder | 00:55 | |
openstackgerrit | Bob Callaway proposed openstack/cinder: Fix LUN misalignment issue with NetApp iSCSI drivers https://review.openstack.org/162376 | 00:57 |
*** marcusvrn1 has joined #openstack-cinder | 00:59 | |
*** haigang has joined #openstack-cinder | 00:59 | |
*** marcusvrn has quit IRC | 01:02 | |
*** MentalRay has quit IRC | 01:03 | |
*** ronis has quit IRC | 01:07 | |
*** esker has joined #openstack-cinder | 01:07 | |
*** dflorea has quit IRC | 01:11 | |
*** dflorea has joined #openstack-cinder | 01:12 | |
*** harlowja is now known as harlowja_away | 01:14 | |
*** dflorea has quit IRC | 01:17 | |
*** logan2 has quit IRC | 01:19 | |
*** bkopilov has quit IRC | 01:20 | |
*** _cjones_ has quit IRC | 01:21 | |
*** logan2 has joined #openstack-cinder | 01:21 | |
*** casusbel_ has joined #openstack-cinder | 01:26 | |
*** Lee1092 has joined #openstack-cinder | 01:26 | |
*** ebalduf has joined #openstack-cinder | 01:29 | |
*** alexpilotti has quit IRC | 01:29 | |
*** casusbelli has quit IRC | 01:30 | |
*** kaisers has joined #openstack-cinder | 01:30 | |
*** asselin has joined #openstack-cinder | 01:31 | |
*** vilobhmm1 has quit IRC | 01:31 | |
*** kaisers1 has quit IRC | 01:31 | |
*** IanGovett has quit IRC | 01:31 | |
*** ebalduf has quit IRC | 01:33 | |
*** Longgeek has quit IRC | 01:36 | |
*** Longgeek has joined #openstack-cinder | 01:37 | |
*** Mandell has quit IRC | 01:39 | |
*** annegentle has joined #openstack-cinder | 01:39 | |
*** Longgeek has quit IRC | 01:43 | |
*** annegentle has quit IRC | 01:44 | |
*** Longgeek has joined #openstack-cinder | 01:44 | |
*** Yogi1 has joined #openstack-cinder | 01:51 | |
*** dims_ has joined #openstack-cinder | 01:52 | |
*** annashen has joined #openstack-cinder | 01:54 | |
*** zongliang has quit IRC | 01:56 | |
*** Longgeek_ has joined #openstack-cinder | 01:57 | |
*** xyang1 has quit IRC | 01:58 | |
*** annashen has quit IRC | 01:59 | |
*** Longgeek has quit IRC | 02:00 | |
thingee | jamielennox: ping | 02:03 |
*** dims_ has quit IRC | 02:03 | |
jamielennox | thingee: hey | 02:03 |
*** patrickeast has quit IRC | 02:04 | |
*** dims_ has joined #openstack-cinder | 02:04 | |
*** julim has joined #openstack-cinder | 02:05 | |
openstackgerrit | Vincent Hou proposed openstack/cinder: Delete the temporary volume if migration fails https://review.openstack.org/160682 | 02:07 |
*** dims_ has quit IRC | 02:08 | |
openstackgerrit | Vincent Hou proposed openstack/cinder: Set volume_attachment to [] for the temporary volume creation https://review.openstack.org/167134 | 02:08 |
thingee | jamielennox: finally getting around to working on the discovery stuff since you wanted it outside of the SessionClient class. | 02:09 |
thingee | jamielennox: https://github.com/Thingee/python-cinderclient/commit/4a6833d2538e76035f373eee6d2a4cd9324804aa | 02:09 |
thingee | jamielennox: I have a bit of refactoring..thing is a mess right now | 02:09 |
thingee | jamielennox: however, the problem I'm hitting... | 02:09 |
thingee | jamielennox: I need to request_mock v2.0/tokens | 02:10 |
thingee | jamielennox: https://github.com/openstack/python-cinderclient/blob/master/cinderclient/tests/unit/v2/test_shell.py#L54 | 02:11 |
thingee | jamielennox: 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 address | 02:11 |
thingee | NoMockAddress: No mock address: POST http://172.30.128.4:5000/v2.0/tokens | 02:12 |
thingee | jamielennox: is there a recommended fixture for POST /v2.0/tokens? | 02:13 |
jamielennox | ok | 02:13 |
thingee | jamielennox: I was looking at https://github.com/openstack/python-keystoneclient/blob/master/keystoneclient/fixture/v2.py ... but didn't see anything | 02:13 |
jamielennox | yes, there is a fixture for tokens, fixture.V2Token | 02:14 |
jamielennox | that just provides the body of the token though | 02:14 |
jamielennox | you still need to do the request_mock yourself | 02:14 |
*** haomaiwang has joined #openstack-cinder | 02:15 | |
jamielennox | i'm not sure why the requests_mock isn't being picked up though | 02:16 |
jamielennox | normally it's just | 02:16 |
jamielennox | self.requests_mock.post(self.BASE_URL + '/v2.0/tokens', json=fixture.V2Token()) | 02:17 |
*** annashen has joined #openstack-cinder | 02:19 | |
*** vilobhmm1 has joined #openstack-cinder | 02:27 | |
thingee | jamielennox: I guess need to read up on request_mock...I still don't get what you gave in this context | 02:31 |
thingee | there 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#L54 | 02:31 |
thingee | for GET requests | 02:32 |
jamielennox | thingee: yea, bit nasty but similar to what used to be there | 02:33 |
jamielennox | i'm surprised that's working at all, but GET is used for token validation, not creation | 02:34 |
thingee | yea | 02:34 |
jamielennox | thingee: oh, shell is going to requests_mock, https://github.com/openstack/python-cinderclient/blob/master/cinderclient/tests/unit/v2/test_shell.py#L51 | 02:36 |
*** rongze has joined #openstack-cinder | 02:37 | |
jamielennox | thingee: test_shell is _not_ going to requests_mock i mean | 02:37 |
*** Yogi1 has quit IRC | 02:40 | |
*** annegentle has joined #openstack-cinder | 02:40 | |
*** scottda_ has joined #openstack-cinder | 02:41 | |
*** annegentle has quit IRC | 02:45 | |
thingee | jamielennox: I think this is happening because https://github.com/openstack/python-cinderclient/blob/master/cinderclient/tests/unit/v2/test_shell.py#L47 | 02:46 |
thingee | and eventually this being hit https://github.com/Thingee/python-cinderclient/commit/4a6833d2538e76035f373eee6d2a4cd9324804aa#diff-7e52bfb77cc95e4c1d46b1d39f9ff764R695 | 02:46 |
*** rushiagr_away is now known as rushiagr | 02:52 | |
*** vilobhmm11 has joined #openstack-cinder | 02:54 | |
thingee | jamielennox: yeah it's not picking up on it | 02:57 |
thingee | jamielennox: http://paste.openstack.org/show/197855/ | 02:57 |
*** vilobhmm1 has quit IRC | 02:57 | |
thingee | http://paste.openstack.org/show/197856/ | 02:57 |
thingee | https://github.com/Thingee/python-cinderclient/commit/4a6833d2538e76035f373eee6d2a4cd9324804aa#diff-7e52bfb77cc95e4c1d46b1d39f9ff764R698 | 02:58 |
jamielennox | is 7e52... the commit you're looking at? | 02:58 |
thingee | yea | 02:59 |
openstackgerrit | Rick Chen proposed openstack/cinder: Add patch for consistency group update in ProphetStor driver https://review.openstack.org/169653 | 02:59 |
*** ebalduf has joined #openstack-cinder | 02:59 | |
thingee | jamielennox: actually 4a6833d2538e76035f373eee6d2a4cd9324804aa | 03:00 |
*** asselin has quit IRC | 03:01 | |
*** ebalduf has quit IRC | 03:04 | |
jamielennox | thingee: if i do https://github.com/jamielennox/python-cinderclient/commit/20d50e2a5f6a9be8176c36c6261b83c190b9036a (on top of 4a6) it is mocking the token correctly | 03:08 |
*** vilobhmm11 has quit IRC | 03:09 | |
jamielennox | i 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 it | 03:09 |
*** annashen has quit IRC | 03:10 | |
*** rushiagr is now known as rushiagr_away | 03:13 | |
*** scottda_ has quit IRC | 03:13 | |
*** vilobhmm1 has joined #openstack-cinder | 03:15 | |
*** scottda_ has joined #openstack-cinder | 03:17 | |
*** melwitt has quit IRC | 03:21 | |
*** iwao has quit IRC | 03:22 | |
openstackgerrit | Rick Chen proposed openstack/cinder: Add patch for consistency group update in ProphetStor driver https://review.openstack.org/169653 | 03:24 |
*** nikesh_vedams has quit IRC | 03:28 | |
*** ebalduf has joined #openstack-cinder | 03:31 | |
thingee | jamielennox: oh ok, I wasn't adding the service ahead of time | 03:32 |
jamielennox | thingee: 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 you | 03:33 |
openstackgerrit | Vincent Hou proposed openstack/cinder: Delete the temporary volume if migration fails https://review.openstack.org/160682 | 03:35 |
thingee | jamielennox: ok thanks, got it working | 03:35 |
jamielennox | thingee: cool, np | 03:35 |
*** thingee has quit IRC | 03:38 | |
*** annegentle has joined #openstack-cinder | 03:41 | |
*** scottda_ has quit IRC | 03:41 | |
openstackgerrit | Vincent Hou proposed openstack/cinder-specs: Enhance list operations with the additional keys and next link https://review.openstack.org/148181 | 03:43 |
*** annegentle has quit IRC | 03:50 | |
*** jamielennox is now known as jamielennox|away | 03:51 | |
*** MentalRay has joined #openstack-cinder | 03:54 | |
*** annegentle has joined #openstack-cinder | 04:02 | |
*** ho has quit IRC | 04:03 | |
*** Liu has quit IRC | 04:03 | |
*** akerr has joined #openstack-cinder | 04:04 | |
*** shyama has joined #openstack-cinder | 04:05 | |
*** annashen has joined #openstack-cinder | 04:09 | |
*** akerr has quit IRC | 04:10 | |
*** Bsony has joined #openstack-cinder | 04:13 | |
*** Liu has joined #openstack-cinder | 04:14 | |
*** casusbel_ has quit IRC | 04:25 | |
*** casusbelli has joined #openstack-cinder | 04:26 | |
*** heyun has quit IRC | 04:28 | |
*** heyun has joined #openstack-cinder | 04:28 | |
*** Mandell has joined #openstack-cinder | 04:29 | |
*** Mandell has quit IRC | 04:29 | |
*** bkopilov has joined #openstack-cinder | 04:30 | |
*** Mandell has joined #openstack-cinder | 04:31 | |
*** rushiagr_away is now known as rushiagr | 04:32 | |
*** ebalduf has quit IRC | 04:32 | |
*** _cjones_ has joined #openstack-cinder | 04:47 | |
*** BharatK has joined #openstack-cinder | 04:48 | |
*** _cjones_ has quit IRC | 04:50 | |
*** _cjones_ has joined #openstack-cinder | 04:50 | |
*** vincent_hou has joined #openstack-cinder | 05:03 | |
vincent_hou | winston-d_zZZ: Are you there, brother? | 05:04 |
*** MentalRay has quit IRC | 05:04 | |
*** lpetrut has joined #openstack-cinder | 05:04 | |
*** Bsony has quit IRC | 05:11 | |
*** sks has joined #openstack-cinder | 05:11 | |
*** anshul has joined #openstack-cinder | 05:17 | |
openstackgerrit | xing-yang proposed openstack/cinder: Fix issues with extra specs in VMAX driver https://review.openstack.org/169999 | 05:17 |
*** _cjones_ has quit IRC | 05:29 | |
*** cpg|away is now known as cpg | 05:29 | |
*** ebalduf has joined #openstack-cinder | 05:33 | |
*** annashen has quit IRC | 05:36 | |
openstackgerrit | xing-yang proposed openstack/cinder: Fix a problem with FAST support in VMAX driver https://review.openstack.org/170000 | 05:37 |
*** ebalduf has quit IRC | 05:37 | |
*** annegentle has quit IRC | 05:39 | |
*** Raj_ has joined #openstack-cinder | 05:39 | |
*** annegentle has joined #openstack-cinder | 05:40 | |
*** annegentle has quit IRC | 05:45 | |
*** vilobhmm1 has quit IRC | 05:46 | |
openstackgerrit | xing-yang proposed openstack/cinder: Fix a problem with FAST support in VMAX driver https://review.openstack.org/170000 | 05:48 |
*** sgotliv has joined #openstack-cinder | 05:52 | |
*** jdurgin1 has joined #openstack-cinder | 05:53 | |
*** jdurgin1 has quit IRC | 05:53 | |
*** divya has joined #openstack-cinder | 05:56 | |
*** _cjones_ has joined #openstack-cinder | 05:56 | |
*** divya has quit IRC | 05:57 | |
*** dims_ has joined #openstack-cinder | 06:00 | |
*** lpetrut has quit IRC | 06:02 | |
*** haigang has quit IRC | 06:02 | |
*** dims_ has quit IRC | 06:06 | |
*** shilpa_ has joined #openstack-cinder | 06:07 | |
*** rushiagr is now known as rushiagr_away | 06:07 | |
*** nkrinner has joined #openstack-cinder | 06:09 | |
*** rushiagr_away is now known as rushiagr | 06:10 | |
*** haigang has joined #openstack-cinder | 06:12 | |
*** ishant has joined #openstack-cinder | 06:13 | |
*** avishay has joined #openstack-cinder | 06:23 | |
*** nlevinki has joined #openstack-cinder | 06:24 | |
*** ebalduf has joined #openstack-cinder | 06:34 | |
*** vincent_hou has quit IRC | 06:34 | |
*** Maike has joined #openstack-cinder | 06:36 | |
*** annashen has joined #openstack-cinder | 06:37 | |
*** ebalduf has quit IRC | 06:39 | |
*** annegentle has joined #openstack-cinder | 06:41 | |
*** annashen has quit IRC | 06:42 | |
*** TobiasE has joined #openstack-cinder | 06:43 | |
*** avishay has quit IRC | 06:43 | |
*** annegentle has quit IRC | 06:46 | |
*** TobiasE1 has joined #openstack-cinder | 06:47 | |
*** TobiasE has quit IRC | 06:49 | |
*** afazekas has joined #openstack-cinder | 06:54 | |
*** chlong has quit IRC | 06:55 | |
*** lpetrut has joined #openstack-cinder | 06:56 | |
*** TobiasE1 has quit IRC | 07:00 | |
*** TobiasE has joined #openstack-cinder | 07:00 | |
*** TobiasE1 has joined #openstack-cinder | 07:03 | |
*** TobiasE has quit IRC | 07:04 | |
*** Bsony has joined #openstack-cinder | 07:10 | |
*** jistr has joined #openstack-cinder | 07:13 | |
*** jordanP has joined #openstack-cinder | 07:14 | |
*** Longgeek_ has quit IRC | 07:17 | |
*** Longgeek has joined #openstack-cinder | 07:17 | |
*** boris-42 has quit IRC | 07:18 | |
*** markus_z has joined #openstack-cinder | 07:22 | |
*** fanyaohong has joined #openstack-cinder | 07:23 | |
fanyaohong | hello | 07:29 |
*** tshefi has joined #openstack-cinder | 07:29 | |
*** haigang has quit IRC | 07:30 | |
*** pradipta has joined #openstack-cinder | 07:30 | |
Liu | Hi yaohong | 07:31 |
Liu | :) | 07:31 |
*** Muntaner has joined #openstack-cinder | 07:32 | |
Muntaner | good morning guys | 07:34 |
Muntaner | I'm having troubles in connecting my NAS to my installation | 07:34 |
*** haigang has joined #openstack-cinder | 07:35 | |
Muntaner | I'd like to connect it via iscsi | 07:36 |
Muntaner | anybody can help me? | 07:36 |
*** _cjones_ has quit IRC | 07:37 | |
*** _cjones_ has joined #openstack-cinder | 07:37 | |
*** nikesh has joined #openstack-cinder | 07:41 | |
*** annegentle has joined #openstack-cinder | 07:42 | |
*** annegentle has quit IRC | 07:47 | |
*** Muntaner has quit IRC | 07:49 | |
*** geguileo has joined #openstack-cinder | 07:51 | |
*** geguileo has quit IRC | 07:53 | |
*** geguileo has joined #openstack-cinder | 07:54 | |
*** haigang has quit IRC | 07:56 | |
*** Bsony has quit IRC | 07:58 | |
*** jordanP has quit IRC | 07:59 | |
*** alecv_ has joined #openstack-cinder | 08:00 | |
*** haigang has joined #openstack-cinder | 08:02 | |
*** markvoelker has quit IRC | 08:18 | |
*** e0ne has joined #openstack-cinder | 08:18 | |
*** e0ne has quit IRC | 08:20 | |
*** rhefner has quit IRC | 08:24 | |
*** haigang has quit IRC | 08:24 | |
*** haigang has joined #openstack-cinder | 08:28 | |
*** Udayendu has joined #openstack-cinder | 08:29 | |
*** ronis has joined #openstack-cinder | 08:30 | |
openstackgerrit | YAMADA Hideki proposed openstack/cinder: Fix missing clone_image API support for sheepdog driver. https://review.openstack.org/159856 | 08:33 |
Udayendu | ping 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-cinder | 08:34 | |
Udayendu | iptables rules are there for both cinder and cinder_api | 08: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 |
Udayendu | This is the error message in cinder/volume.log . any suggestion ? | 08:36 |
Udayendu | I am using RDO version of juno with allinone setup. | 08:37 |
*** jordanP has joined #openstack-cinder | 08:37 | |
*** annashen has joined #openstack-cinder | 08:39 | |
*** dulek has joined #openstack-cinder | 08:40 | |
*** aswadr has joined #openstack-cinder | 08:41 | |
*** annegentle has joined #openstack-cinder | 08:43 | |
*** annashen has quit IRC | 08:44 | |
*** Udayendu has left #openstack-cinder | 08:44 | |
*** annegentle has quit IRC | 08:48 | |
*** markvoelker has joined #openstack-cinder | 08:49 | |
*** dims_ has joined #openstack-cinder | 08:50 | |
*** kashyap has joined #openstack-cinder | 08:51 | |
kashyap | W/ current git from Cinder, I notice this: | 08:51 |
kashyap | 2015-04-02 04:41:42.988 TRACE cinder "Could not parse rfc1738 URL from string '%s'" % name) | 08:51 |
kashyap | 2015-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 |
openstackgerrit | Jeegn Chen proposed openstack/cinder: More error handling on EMC VNX migration failure https://review.openstack.org/159704 | 08:53 |
*** markvoelker has quit IRC | 08:55 | |
*** dims_ has quit IRC | 08:55 | |
*** Bsony has joined #openstack-cinder | 08:58 | |
*** Bsony has quit IRC | 09:03 | |
*** _cjones_ has quit IRC | 09:04 | |
*** e0ne has joined #openstack-cinder | 09:13 | |
jordanP | kashyap, which file ? which line ? | 09:16 |
kashyap | jordanP: There we go, complete trace -- http://paste.openstack.org/show/197889/ | 09:17 |
jordanP | kashyap, you sure your cinder.conf is valid ? | 09:20 |
jordanP | the sql_connection parameter must be in [database] section | 09:21 |
kashyap | jordanP: It's whatever DevStack is doing by default. | 09:21 |
kashyap | jordanP: I can remove /etc/cinder and re-invoke stack.sh on this Compute node. | 09:21 |
jordanP | yeah, that could work | 09:21 |
jordanP | kashyap, your oslo_db is in /usr/lib/python2.7/site-packages/oslo_db/sqlalchemy/session.py | 09:23 |
jordanP | did you instal oslo_db using pip ? or is it a system package ? | 09:23 |
*** haigang has quit IRC | 09:24 | |
kashyap | jordanP: /me checks, this is a Fedora 22 machine (development version) | 09:24 |
kashyap | Trying to test some live-migration related issue, and ended up here shaving this yak | 09:24 |
kashyap | jordanP: Oh: This results in nothing, should DevStack log the oslo_db installation? `grep oslo_db ../data/logs/devstacklog.txt` | 09:25 |
*** jistr has quit IRC | 09:26 | |
kashyap | Seems like no -- looking at the Control node, where other Cinder services (including c-vol) are running correctly. | 09:26 |
jordanP | kashyap, so you don"t have a oslo_db rpm packake installed ? | 09:27 |
kashyap | jordanP: No, I don't. | 09:27 |
jordanP | kashyap, then I don't know :) | 09:27 |
jordanP | you sure you have sql_connection or connection flag inthe [database] of cinder.conf ? | 09:28 |
* kashyap double-checks | 09:28 | |
kashyap | jordanP: Damn, you're right: | 09:28 |
kashyap | $ grep connection /etc/cinder/cinder.conf | 09:28 |
kashyap | connection = | 09:28 |
kashyap | On the Compute node. | 09:29 |
kashyap | Where I have just 'c-vol' service is running | 09:29 |
jordanP | kashyap, :) | 09:29 |
kashyap | I think I should add some kind of CINDER_HOST variable on the Compute node's local.conf | 09:30 |
kashyap | (Typo: 'c-vol' service is running --> was _supposed_ to run) | 09:30 |
*** e0ne is now known as e0ne_ | 09:30 | |
jordanP | I don"t know, multi host devstack is not trivial | 09:30 |
kashyap | jordanP: I have it running successfully w/o Cinder many times. :-) | 09:31 |
kashyap | I just run minimal services. Enabling things as needed. | 09:31 |
kashyap | Much easier than having a spaghetti of crap and then trying to clean it up. | 09:32 |
*** BharatK has quit IRC | 09:33 | |
*** spradeepv has left #openstack-cinder | 09:35 | |
*** e0ne_ is now known as e0ne | 09:35 | |
kashyap | jordanP: The 'connection' was missing in nova.conf too, somehow the Compute service is still running. | 09:36 |
* kashyap investigates | 09:36 | |
jordanP | kashyap, nova-compute doesn"t need to connect to the DB | 09:37 |
jordanP | so it's fine if it"s empty | 09:37 |
kashyap | Oh, right. Same for Neutron too. | 09:37 |
*** haigang has joined #openstack-cinder | 09:40 | |
*** skraynev has quit IRC | 09:42 | |
*** skraynev has joined #openstack-cinder | 09:43 | |
*** annegentle has joined #openstack-cinder | 09:43 | |
*** jistr has joined #openstack-cinder | 09:44 | |
*** annegentle has quit IRC | 09:48 | |
*** dims_ has joined #openstack-cinder | 09:52 | |
*** dims_ has quit IRC | 09:52 | |
*** dims__ has joined #openstack-cinder | 09:56 | |
*** dims__ has quit IRC | 10:03 | |
kaisers | Hi! 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-cinder | 10:09 | |
*** TobiasE1 has quit IRC | 10:10 | |
kaisers | tox -e all -- '(?!.*test_volume_boot_pattern.*)(?!.*test_minimum_basic_scenario.*)(volume)' > results.cinder.skipping.txt | 10:12 |
*** kashyap has left #openstack-cinder | 10:13 | |
kaisers | That's what i am tryin'... | 10:13 |
*** ishant has quit IRC | 10:28 | |
openstackgerrit | YAMADA Hideki proposed openstack/cinder: Fix missing clone_image API support for sheepdog driver. https://review.openstack.org/159856 | 10:29 |
*** e0ne is now known as e0ne_ | 10:29 | |
*** ishant has joined #openstack-cinder | 10:29 | |
*** haomaiwang has quit IRC | 10:37 | |
*** Raj_ has quit IRC | 10:37 | |
*** e0ne_ is now known as e0ne | 10:37 | |
*** annashen has joined #openstack-cinder | 10:41 | |
*** annegentle has joined #openstack-cinder | 10:44 | |
*** annashen has quit IRC | 10:45 | |
*** IanGovett has joined #openstack-cinder | 10:47 | |
*** annegentle has quit IRC | 10:49 | |
*** markvoelker has joined #openstack-cinder | 10:52 | |
*** abhijeetm has joined #openstack-cinder | 10:54 | |
*** haigang has quit IRC | 10:55 | |
*** markvoelker has quit IRC | 10:57 | |
*** heyun has quit IRC | 11:02 | |
*** TobiasE has joined #openstack-cinder | 11:09 | |
*** divya has joined #openstack-cinder | 11:10 | |
*** marcusvrn has joined #openstack-cinder | 11:12 | |
divya | hi i have issues in configuring hp 3 par storage in cinder | 11:14 |
divya | getting error either ws api is not running or invalid version, while restarting c-vol in devstac | 11:14 |
divya | can anybody please help me in troubleshooting and configuring the hp 3par server | 11:15 |
*** marcusvrn1 has quit IRC | 11:15 | |
*** e0ne is now known as e0ne_ | 11:16 | |
*** aswadr has quit IRC | 11:21 | |
*** timcl has joined #openstack-cinder | 11:21 | |
*** haigang has joined #openstack-cinder | 11:23 | |
*** e0ne_ has quit IRC | 11:27 | |
*** links has joined #openstack-cinder | 11:33 | |
*** cpg is now known as cpg|away | 11:34 | |
*** akerr has joined #openstack-cinder | 11:34 | |
kaisers | divya: 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-cinder | 11:43 | |
*** annegentle has joined #openstack-cinder | 11:45 | |
*** nikesh has quit IRC | 11:47 | |
*** annegentle has quit IRC | 11:50 | |
*** markvoelker has joined #openstack-cinder | 11:53 | |
*** Robert- has joined #openstack-cinder | 11:54 | |
*** pradipta has quit IRC | 11:56 | |
*** markvoelker has quit IRC | 11:58 | |
*** boris-42 has joined #openstack-cinder | 12:00 | |
*** rongze has quit IRC | 12:01 | |
* Robert- #ATW-RO :) | 12:04 | |
*** _cjones_ has joined #openstack-cinder | 12:05 | |
*** Robert- has left #openstack-cinder | 12:05 | |
*** _cjones_ has quit IRC | 12:09 | |
*** pradipta has joined #openstack-cinder | 12:12 | |
*** bkopilov has quit IRC | 12:15 | |
*** bswartz has quit IRC | 12:16 | |
*** akerr has quit IRC | 12:23 | |
*** dims has quit IRC | 12:25 | |
*** dims has joined #openstack-cinder | 12:26 | |
*** haomaiwang has joined #openstack-cinder | 12:26 | |
*** markvoelker has joined #openstack-cinder | 12:29 | |
*** cbader has joined #openstack-cinder | 12:32 | |
*** annegentle has joined #openstack-cinder | 12:32 | |
*** annegentle has quit IRC | 12:33 | |
*** pradipta has quit IRC | 12:38 | |
*** annegentle has joined #openstack-cinder | 12:39 | |
*** nikesh has joined #openstack-cinder | 12:41 | |
*** e0ne has joined #openstack-cinder | 12:41 | |
*** esker has quit IRC | 12:43 | |
*** esker has joined #openstack-cinder | 12:43 | |
*** esker has quit IRC | 12:43 | |
*** esker has joined #openstack-cinder | 12:44 | |
*** Yogi1 has joined #openstack-cinder | 12:48 | |
*** esker has quit IRC | 12:49 | |
*** e0ne is now known as e0ne_ | 12:58 | |
*** bswartz has joined #openstack-cinder | 12:59 | |
*** chlong has joined #openstack-cinder | 13:01 | |
marcusvrn | jgriffith: hi! | 13:05 |
*** tshefi has quit IRC | 13:07 | |
*** e0ne_ has quit IRC | 13:08 | |
*** akerr has joined #openstack-cinder | 13:08 | |
*** eharney has quit IRC | 13:08 | |
*** annegentle has quit IRC | 13:09 | |
*** rushiagr is now known as rushiagr_away | 13:11 | |
*** dustins has joined #openstack-cinder | 13:17 | |
openstackgerrit | YAMADA Hideki proposed openstack/cinder: Fix missing clone_image API support for sheepdog driver. https://review.openstack.org/159856 | 13:17 |
*** annegentle has joined #openstack-cinder | 13:20 | |
*** ganso_ has joined #openstack-cinder | 13:23 | |
*** annegentle has quit IRC | 13:23 | |
*** annegentle has joined #openstack-cinder | 13:23 | |
*** mriedem_away is now known as mriedem | 13:28 | |
*** e0ne has joined #openstack-cinder | 13:32 | |
*** mwichmann has joined #openstack-cinder | 13:32 | |
*** aswadr has joined #openstack-cinder | 13:37 | |
*** zigo has quit IRC | 13:38 | |
*** zigo_ is now known as zigo | 13:41 | |
*** erlon has joined #openstack-cinder | 13:42 | |
*** Maike has quit IRC | 13:43 | |
*** annashen has joined #openstack-cinder | 13:44 | |
*** nkrinner has quit IRC | 13:46 | |
*** chlong has quit IRC | 13:47 | |
*** eharney has joined #openstack-cinder | 13:47 | |
*** ebalduf has joined #openstack-cinder | 13:50 | |
*** diegows has quit IRC | 13:52 | |
*** rongze has joined #openstack-cinder | 13:54 | |
*** ebalduf has quit IRC | 13:55 | |
*** rushiagr_away is now known as rushiagr | 13:56 | |
*** annashen has quit IRC | 13:56 | |
*** thangp has joined #openstack-cinder | 13:58 | |
*** shilpa_ has quit IRC | 14:01 | |
*** jungleboyj has quit IRC | 14:03 | |
*** Bsony has joined #openstack-cinder | 14:04 | |
*** timcl has quit IRC | 14:05 | |
*** timcl has joined #openstack-cinder | 14:07 | |
*** haigang has quit IRC | 14:08 | |
*** ebalduf has joined #openstack-cinder | 14:11 | |
*** rushil has joined #openstack-cinder | 14:11 | |
*** Bsony has quit IRC | 14:11 | |
*** annashen has joined #openstack-cinder | 14:14 | |
*** annashen has quit IRC | 14:16 | |
*** xyang1 has joined #openstack-cinder | 14:17 | |
*** bkopilov has joined #openstack-cinder | 14:17 | |
*** aix has joined #openstack-cinder | 14:18 | |
*** aix has quit IRC | 14:19 | |
*** xyang1 has quit IRC | 14:19 | |
*** aix has joined #openstack-cinder | 14:20 | |
*** eharney has quit IRC | 14:26 | |
*** links has quit IRC | 14:26 | |
*** ronis has quit IRC | 14:27 | |
*** nlevinki has quit IRC | 14:27 | |
*** Bsony has joined #openstack-cinder | 14:30 | |
*** rhefner has joined #openstack-cinder | 14:33 | |
*** kaisers has quit IRC | 14:34 | |
*** bkopilov has quit IRC | 14:34 | |
*** kaufer has joined #openstack-cinder | 14:34 | |
openstackgerrit | Steven Kaufer proposed openstack/python-cinderclient: Cinder client does not expose error details https://review.openstack.org/148373 | 14:34 |
*** sks has quit IRC | 14:37 | |
jgriffith | jbernard: dansmith You guys have any luck on the UEC image stuff? | 14:38 |
jbernard | jgriffith: yeah, one sec | 14:38 |
dansmith | jgriffith: jbernard is working on the cinder part, I'm trying to get the gate to run the ceph job with a disk image | 14:39 |
dansmith | mine being mostly a stop-gap | 14:39 |
jgriffith | dansmith: yeah, I saw that.... | 14:39 |
jgriffith | dansmith: you didn't see my "opinion" yet :) | 14:39 |
jgriffith | which is good | 14:39 |
jgriffith | dansmith: but yes, better than just failing constantly | 14:40 |
dansmith | jgriffith: I'm confused.. we _know_ what is wrong with the ceph cinder driver, right? | 14:40 |
dansmith | also, I actually think that we should be using disk images for all our jobs, because I expect that's how 90% of people use openstack | 14:41 |
jgriffith | dansmith: I wasn't aware that anybody had actually "found" a real problem | 14:41 |
jgriffith | dansmith: so I'd agree with your second statement probably | 14:41 |
jgriffith | dansmith: and would be fine with that | 14:41 |
dansmith | jgriffith: it doesn't compose the UEC into a disk like the others, right? | 14:42 |
jgriffith | dansmith: sure but the quesiton is *why* | 14:42 |
dansmith | jgriffith: it's just not accounted-for? | 14:42 |
dansmith | jbernard: right? | 14:42 |
jgriffith | dansmith: and the bigger question is why don't we fix it in the driver? | 14:42 |
dansmith | we do | 14:42 |
dansmith | definitely | 14:42 |
dansmith | jbernard is working on it now | 14:42 |
jgriffith | dansmith: perfect | 14:43 |
dansmith | I 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 run | 14:43 | |
dansmith | and prevent further regressions | 14:43 |
*** ishant has quit IRC | 14:43 | |
jgriffith | dansmith: meh... ok | 14:44 |
*** eharney has joined #openstack-cinder | 14:44 | |
*** divya has quit IRC | 14:44 | |
jgriffith | dansmith: how soon do you want to make Ceph *gating*? | 14:44 |
jgriffith | dansmith: cuz frankly I'm not wild about that idea at all | 14:44 |
dansmith | on nova? yesterday, ideally | 14:44 |
jgriffith | LOL | 14:44 |
dansmith | until this test was re-enabled, it was all green | 14:44 |
jgriffith | dansmith: do we have any stats? | 14:45 |
dansmith | it's fully in openstack's infra and tests a ton of nova (and cinder apparently) code that doesn't get exercised any other way | 14:45 |
jgriffith | dansmith: ie length of time it was running, number of tests pass/fail etc | 14:45 |
jgriffith | something to show that it's stable enough for gating? | 14:45 |
dansmith | jgriffith: it's not in the gate, so the only stats we have are logstash I think, which is like ten days | 14:45 |
jgriffith | dansmith: although I'm rat holing on another subject | 14:45 |
jgriffith | we probably don't need to go down this road right now | 14:46 |
dansmith | indeed | 14:46 |
*** jungleboyj has joined #openstack-cinder | 14:46 | |
jgriffith | dansmith: ok, so I get the stop gag.. that's cool (could also do a skip though no?) | 14:46 |
jgriffith | dansmith: I don't like having a unique test for one driver/backend.. but that's just me | 14:47 |
jgriffith | dansmith: and the fact that jbernard is working on a fix in the driver is good enough fo rme. | 14:47 |
jgriffith | for me | 14:47 |
dansmith | we can't skip per job, and skipping this for every job means we have no BFV coverage | 14:47 |
jgriffith | dansmith: How doyou figure? | 14:48 |
jgriffith | dansmith: You could certainl have a skip based on a backedn or conf file setting | 14:48 |
jgriffith | certainly even :) | 14:48 |
dansmith | jgriffith: we discussed this in -nova with mtreinish and sdague yesterday | 14:48 |
dansmith | it requires retooling some things, like this does, except this approach gets us testing of the path instead of skipping of the path | 14:49 |
*** deepakcs has joined #openstack-cinder | 14:49 | |
jgriffith | dansmith: ok | 14:49 |
mtreinish | dansmith: well you can do it per job today by setting a regex in d-g which excludes the test that doesn't work | 14:50 |
mtreinish | but that's not really a friendly interface | 14:50 |
dansmith | mtreinish: oh, I thought sdague was saying there was some problem with that, hence the uuid suggestion? | 14:50 |
mtreinish | sorry setting a regex passed into d-g from project-config | 14:50 |
jgriffith | I wonder if you and the folks you worked iwth on this would be so sympathetic ot *other* 3'rd party folks | 14:51 |
jgriffith | but honestly, I don't care | 14:51 |
jgriffith | it doesn't hurt | 14:51 |
mtreinish | dansmith: no that should work fine, I think that discussion was about a more user friendly way of doing skips | 14:51 |
dansmith | mtreinish: either way, if we have to make a config change, I'd like to make one that's active instead of just skipping | 14:51 |
dansmith | mtreinish: okay | 14:51 |
jbernard | one sec, i have new info, but im on a call atm | 14:52 |
mtreinish | dansmith: sure, I agree. I was just saying | 14:52 |
sdague | the problem with the regex is it ends up hitting unrelated stuff some times | 14:52 |
sdague | and if tests move around you no longer test what you think you are | 14:52 |
*** gary-smith__ has joined #openstack-cinder | 14:52 | |
jgriffith | sdague: dansmith mtreinish Thoughts on just chaning it for *everyone* then? | 14:52 |
jgriffith | sdague: dansmith mtreinish and dropping support for UEC? | 14:53 |
dansmith | jgriffith: changing what, to use the disk images? | 14:53 |
jgriffith | dansmith: yes | 14:53 |
dansmith | jgriffith: I'm fine with that, I think I suggested that yesterday | 14:53 |
*** markstur has joined #openstack-cinder | 14:53 | |
jbernard | so, there's a distinct difference in the xml generated by nova for lvm volumes vs. ceph volumes, which worries me a bit | 14:53 |
jbernard | for lvm, the -initrd and -kernel are included, but for ceph they are not | 14:53 |
jgriffith | jbernard: yes, ceph has it's own libvrit driver | 14:54 |
jbernard | when volume is created for the same UEC image | 14:54 |
dansmith | jbernard: orly? | 14:54 |
mtreinish | sdague: sure, but you could use the uuid as the regex exclude too | 14:54 |
sdague | oh, so it might be a nova bad then? | 14:54 |
dansmith | jbernard: I thought I asked about this yesterday | 14:54 |
jbernard | im learning about all of this now, so bare with me | 14:54 |
dansmith | jbernard: because that means the disk doesn't have to be complete | 14:54 |
jbernard | dansmith: i had a chance to look at the xml this morning | 14:54 |
jbernard | for lvm, they additional references are included | 14:54 |
jbernard | but for the same from ceph, they're missing | 14:55 |
jbernard | so, im not /sure/ it's a bug in the ceph driver | 14:55 |
dansmith | okay, let's take this back to -nova and work on that | 14:55 |
jbernard | i just need some time to figure out what when wrong | 14:55 |
jbernard | it's failing for gluster and sheepdog in the same way, i suspect | 14:55 |
*** Bsony has quit IRC | 14:55 | |
*** hemnafk is now known as hemna | 14:55 | |
hemna | morning | 14:56 |
openstackgerrit | Ivan Kolodyazhny proposed openstack/cinder: Use six.text_type instead of unicode https://review.openstack.org/170156 | 14:56 |
*** lpabon has joined #openstack-cinder | 14:56 | |
jgriffith | sdague: mtreinish My point I was trying to make was just that it seems "wrong" to have a unique/different set of testing methodology here | 14:57 |
sdague | jgriffith: maybe | 14:57 |
*** Bsony has joined #openstack-cinder | 14:57 | |
jgriffith | but I seem to be the only one that feels that way so I will let it go | 14:57 |
openstackgerrit | Lee Yarwood proposed openstack/cinder: Fix multipath device discovery when UFN is enabled. https://review.openstack.org/170157 | 14:58 |
sdague | honestly, I think there is shoring up things so they don't backslide | 14:58 |
sdague | and I'd rather do that at this point in a release cycle | 14:58 |
sdague | then normalize when we aren't up against rcs | 14:58 |
*** xyang1 has joined #openstack-cinder | 14:58 | |
jgriffith | sdague: I kinda see that. Although frankly there's a dozen or so driver/backends that run this test fine | 14:59 |
*** garysmith_ has joined #openstack-cinder | 14:59 | |
jgriffith | sdague: and there *may* be people that actually *use* UEC in the real world... I dunno | 14:59 |
*** garysmith__ has joined #openstack-cinder | 14:59 | |
jgriffith | sdague: I'm cool with whatever you all decide here I guess | 14:59 |
jgriffith | Just wanted to make sure I voiced my opinion and we thought about it | 15:00 |
jgriffith | moving on | 15:00 |
sdague | jgriffith: sure, but if it turns out that a different image type means we get to test the whole path | 15:00 |
jgriffith | sdague: dansmith thanks for listening | 15:00 |
sdague | that prevents bugs in other parts | 15:00 |
sdague | if we always fail because of an image type we don't test the rest of the volume path | 15:00 |
jgriffith | sdague: sure | 15:00 |
*** gary-smith_ has quit IRC | 15:00 | |
jgriffith | sdague: my thoguth was we suport both, we shoudl test both :) | 15:01 |
sdague | so it can just be noted as a limitation of this driver in release notes, and move on | 15:01 |
jgriffith | sdague: yeah, that's fien by me | 15:01 |
jgriffith | sdague: although it completely goes against what Cinder put in place for CI rules | 15:01 |
*** markstur has left #openstack-cinder | 15:01 | |
jgriffith | but I have other things to occupy my time :) | 15:02 |
*** kvidvans has quit IRC | 15:03 | |
*** gary-smith__ has quit IRC | 15:03 | |
sdague | looking at - https://review.openstack.org/#/c/151567/ - I don't see other 3rd party ci that's passing running this test | 15:04 |
jbernard | sdague: yeah, they all seem to be failing on teh same test | 15:04 |
sdague | oh, not entirely true - http://oscilogs.x-io.com/67/151567/3/check/dsvm-tempest-xio-fc/9271d0a/console.html is passing | 15:04 |
jbernard | sdague: im not convinced it's a ceph and/or UEC image bug | 15:04 |
jbernard | sdague: ahh, fair point | 15:05 |
jbernard | sdague: i hope to have more info after today | 15:05 |
*** garysmith_ has left #openstack-cinder | 15:05 | |
sdague | but a lot seem to have old tempest trees, so are still skipping it | 15:05 |
jgriffith | sdague: dansmith my vote is go with dansmith 's suggestion of just not using UEC for now at least | 15:05 |
*** garysmith__ has left #openstack-cinder | 15:05 | |
jbernard | that's strange, are they not reclosing? | 15:05 |
jbernard | *recloning* | 15:05 |
jgriffith | sdague: dansmith across the board | 15:05 |
jgriffith | at leat that way we're consistent (IMHO) | 15:06 |
sdague | jgriffith: like I said, that's a broader policy thing that I don't think we should flip at this point in the RC process | 15:06 |
dansmith | but then we don't get any uec coverage, and a this point, it moves us to testing a lot of different code | 15:06 |
jgriffith | sdague: ahh... sorry, I missed that | 15:06 |
jgriffith | Ok | 15:06 |
jgriffith | fair enough | 15:06 |
sdague | because 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 fine | 15:06 |
sdague | and post RC, I'm ok with it | 15:06 |
jgriffith | Yep, agreed | 15:06 |
jgriffith | Ok | 15:06 |
*** gary-smith has joined #openstack-cinder | 15:07 | |
jgriffith | You guys have the best plan it would seem then | 15:07 |
jgriffith | sorry for the disruption | 15:07 |
e0ne | hi! you you talking about ceph backend or other one? | 15:07 |
*** Mandell has quit IRC | 15:07 | |
jgriffith | e0ne: ceph and the boot uec stuff | 15:07 |
e0ne | jgriffith: thanks. i've just seen thad dsvm-ceph jobs failed today | 15:08 |
jbernard | e0ne: im looking into it today, hope to have it sorted soon | 15:09 |
*** pradipta has joined #openstack-cinder | 15:09 | |
e0ne | jbernard: great! thanks for taking care on it. | 15:10 |
*** anshul has quit IRC | 15:10 | |
*** xyang1 has quit IRC | 15:11 | |
openstackgerrit | Ivan Kolodyazhny proposed openstack/os-brick: Use six.text_type instead of unicode https://review.openstack.org/170162 | 15:11 |
openstackgerrit | Ivan Kolodyazhny proposed openstack/cinder: Use six.text_type instead of unicode https://review.openstack.org/170156 | 15:11 |
deepakcs | jbernard, for glusterfs CI its failing the same testcase (test_volume_boot_pattern) but the fail error/excp is different when compared to ceph | 15:12 |
openstackgerrit | Ivan Kolodyazhny proposed openstack/os-brick: Use six.text_type instead of unicode https://review.openstack.org/170162 | 15:12 |
deepakcs | jbernard, 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 |
jbernard | deepakcs: yeah, you'll want to dig into that then | 15:12 |
deepakcs | jbernard, fyi in case that helps | 15:12 |
*** ebalduf has quit IRC | 15:12 | |
jbernard | deepakcs: its looks distinctly different from my issue | 15:12 |
deepakcs | jbernard, ok, the test case is same tho' | 15:12 |
jbernard | yeah, but not surprsising | 15:13 |
jbernard | that test case covers _a lot_ | 15:13 |
deepakcs | jbernard, I just saw 1 of the glusterfs CI failure, need to see more to convincingly say that its the same failure across all glusterfs fails | 15:13 |
*** Bsony has quit IRC | 15:13 | |
deepakcs | jbernard, frankly, i don't know much of the test details, need to ramp up on my UEC knowledge first :) | 15:13 |
deepakcs | jbernard, so will be looking at ur debug/analysis | 15:13 |
jbernard | deepakcs: ping me if you have questions, i *might* be able to help | 15:14 |
openstackgerrit | Ankit Agrawal proposed openstack/cinder: Fix missing translations for log messages https://review.openstack.org/164697 | 15:14 |
deepakcs | jbernard, 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/others | 15:14 |
jbernard | deepakcs: will do, get some sleep :) | 15:15 |
deepakcs | jbernard, thanks, one last q, were u able to narrow down which patch caused this tests to fail ? | 15:15 |
deepakcs | jbernard, bcos for glusterfs all tests were passing atleast 1 week back :) | 15:15 |
jbernard | deepakcs: yes, the patch where the test was enabled :) | 15:15 |
jbernard | deepakcs: prior to that time, it was skipped | 15:15 |
deepakcs | jbernard, ah, hmm, i thot it was alweays enabled, doh! | 15:15 |
jbernard | previously it have failed for all drivers intermittently | 15:16 |
*** jaypipes has joined #openstack-cinder | 15:16 | |
deepakcs | jbernard, so does it now too :) | 15:16 |
jbernard | i believe it passes for lvm now | 15:16 |
jbernard | it did for me | 15:16 |
deepakcs | jbernard, yeah, i guess so, otherwise the patch wouldn't have got +1 :) | 15:16 |
jbernard | i ignored it originally because it also failed on lvm | 15:16 |
*** annashen has joined #openstack-cinder | 15:17 | |
deepakcs | jbernard, 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 |
jbernard | deepakcs: kk, will do | 15:17 |
deepakcs | jbernard, thanks, good day | 15:17 |
*** deepakcs has quit IRC | 15:18 | |
*** alexpilotti_ has joined #openstack-cinder | 15:19 | |
*** annashen has quit IRC | 15:21 | |
*** alexpilotti has quit IRC | 15:22 | |
*** alexpilotti_ is now known as alexpilotti | 15:22 | |
*** alecv_ has quit IRC | 15:24 | |
*** dannywilson has joined #openstack-cinder | 15:24 | |
*** tsekiyama has joined #openstack-cinder | 15:29 | |
*** dannywil_ has joined #openstack-cinder | 15:29 | |
*** dannywilson has quit IRC | 15:29 | |
*** markus_z has quit IRC | 15:30 | |
*** kaufer1 has joined #openstack-cinder | 15:30 | |
*** MentalRay has joined #openstack-cinder | 15:32 | |
*** jdurgin1 has joined #openstack-cinder | 15:32 | |
*** kaufer has quit IRC | 15:33 | |
*** TobiasE has left #openstack-cinder | 15:33 | |
*** MentalRay has quit IRC | 15:35 | |
openstackgerrit | Aviram Bar-Haim proposed openstack/cinder: Fix ISCSIDriver initialized connection volume type https://review.openstack.org/170178 | 15:39 |
*** esker has joined #openstack-cinder | 15:40 | |
openstackgerrit | Lee Yarwood proposed openstack/cinder: Fix multipath device discovery when UFN is enabled. https://review.openstack.org/170157 | 15:40 |
openstackgerrit | Aviram Bar-Haim proposed openstack/cinder: Fix ISCSIDriver initialized connection volume type https://review.openstack.org/170178 | 15:43 |
Swanson | deepakcs: I've had some issues with that test case intermittently. which bug are you looking at? | 15:45 |
*** ronis has joined #openstack-cinder | 15:48 | |
*** kbyrne has quit IRC | 15:48 | |
*** Apoorva has joined #openstack-cinder | 15:51 | |
*** Apoorva has quit IRC | 15:52 | |
*** aswadr has quit IRC | 15:52 | |
*** e0ne is now known as e0ne_ | 15:52 | |
*** emagana has joined #openstack-cinder | 15:53 | |
*** Apoorva has joined #openstack-cinder | 15:56 | |
*** crose has joined #openstack-cinder | 15:56 | |
*** shilpa_ has joined #openstack-cinder | 15:57 | |
*** e0ne_ is now known as e0ne | 15:59 | |
*** eharney has quit IRC | 16:00 | |
*** abhijeetm has quit IRC | 16:00 | |
*** lpabon has quit IRC | 16:01 | |
*** ndipanov has quit IRC | 16:01 | |
*** mriedem has quit IRC | 16:02 | |
*** _cjones_ has joined #openstack-cinder | 16:03 | |
*** xyang1 has joined #openstack-cinder | 16:03 | |
openstackgerrit | Ivan Kolodyazhny proposed openstack/cinder: six.text_type should be used instead of unicode https://review.openstack.org/170156 | 16:03 |
openstackgerrit | Ivan Kolodyazhny proposed openstack/cinder: Use six.text_type instead of unicode https://review.openstack.org/170156 | 16:04 |
*** dflorea has joined #openstack-cinder | 16:05 | |
smcginnis | e0ne: Hey! Not sure if you saw my comment, but HACKING.rst needs to be updated with your new check. | 16:05 |
e0ne | smcginnis: hi. i've already fixed it | 16:05 |
*** xyang1 has quit IRC | 16:06 | |
e0ne | smcginnis: oops. didn't upload the latest patch | 16:06 |
smcginnis | e0ne: Hmm, I don't see it in the review. :/ | 16:06 |
*** annashen has joined #openstack-cinder | 16:07 | |
*** mriedem has joined #openstack-cinder | 16:07 | |
smcginnis | e0ne: Oh good, simple explanation. :) | 16:07 |
*** aix has quit IRC | 16:07 | |
openstackgerrit | Ivan Kolodyazhny proposed openstack/cinder: Use six.text_type instead of unicode https://review.openstack.org/170156 | 16:07 |
e0ne | smcginnis: done ^^ :) | 16:07 |
smcginnis | e0ne: Thanks! :) | 16:08 |
e0ne | smcginnis: thanks for the review | 16:08 |
smcginnis | e0ne: NP. I've been trying to get rid of those in the i18n patches too. | 16:08 |
e0ne | smcginnis: i hope, we'll move all of such checks to hacking | 16:09 |
smcginnis | e0ne: Yeah, great to have that enforcement in there. Otherwise the list of things to watch out for in reviews just keeps growing. | 16:10 |
e0ne | smcginnis: these things make me sad:(. i tired to review it manually | 16:11 |
DuncanT | Hacking checks are definitely the way forward | 16:11 |
*** ebalduf has joined #openstack-cinder | 16:13 | |
e0ne | DuncanT: +2. i've started thread in ML and i'm working on it in scope of hacking project | 16:13 |
DuncanT | Excellent stuff | 16:13 |
tbarron | smcginnis: in https://review.openstack.org/162376 you say you'd prefer that log message checking not be done in unit tests | 16:14 |
tbarron | now I'm too lazy to do that kind of checking myself :-) | 16:15 |
tbarron | but I | 16:15 |
tbarron | am curious about the reasoning behind this preference. | 16:15 |
*** kbyrne has joined #openstack-cinder | 16:15 | |
*** afazekas has quit IRC | 16:16 | |
*** xyang1 has joined #openstack-cinder | 16:16 | |
*** markstur has joined #openstack-cinder | 16:17 | |
*** ebalduf has quit IRC | 16:18 | |
*** Bsony has joined #openstack-cinder | 16:19 | |
*** markstur has left #openstack-cinder | 16:19 | |
openstackgerrit | Anton Arefiev proposed openstack/cinder: Enable H238 hacking rule https://review.openstack.org/170199 | 16:21 |
*** aswadr has joined #openstack-cinder | 16:21 | |
*** mdenny has joined #openstack-cinder | 16:21 | |
*** alecv_ has joined #openstack-cinder | 16:22 | |
*** jistr has quit IRC | 16:23 | |
*** Bsony has quit IRC | 16:24 | |
DuncanT | Hmmm, scality CI seems to be ill | 16:27 |
*** vilobhmm1 has joined #openstack-cinder | 16:28 | |
*** lcurtis has joined #openstack-cinder | 16:29 | |
*** leeantho has joined #openstack-cinder | 16:30 | |
smcginnis | tbarron: Sorry, had stepped away. | 16:32 |
jordanP | DuncanT, I am on it | 16:32 |
smcginnis | tbarron: Seems like something prone to fail. | 16:32 |
DuncanT | jordanP: Cheers | 16:32 |
smcginnis | tbarron: Log messages can be updated and it's not obvious that they are used elsewhere. | 16:32 |
smcginnis | tbarron: I think as far as unit tests go, the actual text of the log message should be irrelevant. | 16:33 |
smcginnis | tbarron: 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 |
smcginnis | tbarron: Maybe just my opinion. | 16:33 |
e0ne | smcginnis: +1 on it | 16:33 |
DuncanT | I 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 though | 16:34 |
*** shilpa_ has quit IRC | 16:35 | |
*** jdurgin1 has quit IRC | 16:41 | |
*** Bsony has joined #openstack-cinder | 16:41 | |
*** harlowja_away is now known as harlowja | 16:42 | |
openstackgerrit | Anton Arefiev proposed openstack/cinder: Enable H238 hacking rule https://review.openstack.org/170199 | 16:43 |
*** anshul has joined #openstack-cinder | 16:45 | |
*** bkopilov has joined #openstack-cinder | 16:45 | |
*** melwitt has joined #openstack-cinder | 16:46 | |
*** e0ne is now known as e0ne_ | 16:46 | |
*** Longgeek has quit IRC | 16:50 | |
*** rongze has quit IRC | 16:52 | |
*** Miouge has quit IRC | 16:53 | |
*** e0ne_ is now known as e0ne | 16:55 | |
jordanP | DuncanT, it will be fixed in a couple of minute. We will leave a couple of "recheck scality" on the patch that failed | 16:55 |
jordanP | I have to go... | 16:55 |
DuncanT | jordanP: That's great, thanks | 16:56 |
*** jordanP has quit IRC | 16:56 | |
DuncanT | I only mentioned it incase you hadn't noticed TBH | 16:56 |
*** Yogi11 has joined #openstack-cinder | 16:56 | |
*** Mandell has joined #openstack-cinder | 16:57 | |
*** alecv_ has quit IRC | 16:58 | |
*** dustins_ has joined #openstack-cinder | 16:58 | |
*** Yogi1 has quit IRC | 16:59 | |
*** dustins has quit IRC | 16:59 | |
*** rushil has quit IRC | 16:59 | |
*** Yogi1 has joined #openstack-cinder | 17:01 | |
*** bswartz has quit IRC | 17:01 | |
tbarron | smcginnis: now I was away. Thanks for explaining. | 17:01 |
*** EmilienM is now known as EmilienM|afk | 17:01 | |
*** annegentle has quit IRC | 17:03 | |
*** bswartz has joined #openstack-cinder | 17:03 | |
*** Yogi11 has quit IRC | 17:04 | |
tbarron | What you folks said on that (scmginnis, e0ne, DuncanT) makes sense to me. | 17:04 |
smcginnis | tbarron: :) | 17:05 |
*** lcurtis has quit IRC | 17:07 | |
*** pradipta has quit IRC | 17:13 | |
*** ebalduf has joined #openstack-cinder | 17:14 | |
*** dflorea has quit IRC | 17:18 | |
*** ebalduf has quit IRC | 17:19 | |
*** dflorea has joined #openstack-cinder | 17:19 | |
*** dflorea has quit IRC | 17:23 | |
*** sks has joined #openstack-cinder | 17:25 | |
*** sks has quit IRC | 17:25 | |
*** Mandell has quit IRC | 17:25 | |
*** dustins_ has quit IRC | 17:26 | |
*** patrickeast has joined #openstack-cinder | 17:29 | |
*** aswadr has quit IRC | 17:30 | |
*** Mandell has joined #openstack-cinder | 17:30 | |
*** alexpilotti_ has joined #openstack-cinder | 17:30 | |
*** rongze has joined #openstack-cinder | 17:30 | |
*** alexpilotti has quit IRC | 17:32 | |
*** alexpilotti_ is now known as alexpilotti | 17:33 | |
*** e0ne has quit IRC | 17:33 | |
openstackgerrit | Vipin Balachandran proposed openstack/cinder: VMware: Skip vSAN for preallocated image download https://review.openstack.org/156904 | 17:33 |
*** dulek has quit IRC | 17:34 | |
openstackgerrit | Vipin Balachandran proposed openstack/cinder: VMware: Skip vSAN for preallocated image download https://review.openstack.org/156904 | 17:37 |
*** dflorea has joined #openstack-cinder | 17:38 | |
*** dustins has joined #openstack-cinder | 17:41 | |
*** eharney has joined #openstack-cinder | 17:42 | |
*** emagana has quit IRC | 17:42 | |
*** alexpilotti has quit IRC | 17:42 | |
*** alexpilotti has joined #openstack-cinder | 17:44 | |
*** markstur has joined #openstack-cinder | 17:50 | |
*** dflorea has quit IRC | 17:51 | |
*** dflorea has joined #openstack-cinder | 17:52 | |
*** dflorea_ has joined #openstack-cinder | 17:53 | |
*** dflorea has quit IRC | 17:54 | |
*** russellb has quit IRC | 17:55 | |
*** marcusvrn1 has joined #openstack-cinder | 17:56 | |
*** marcusvrn has quit IRC | 17:56 | |
*** markstur has left #openstack-cinder | 17:57 | |
*** annegentle has joined #openstack-cinder | 17:58 | |
*** russellb has joined #openstack-cinder | 17:58 | |
*** rongze has quit IRC | 18:01 | |
*** kaufer has joined #openstack-cinder | 18:01 | |
*** kaufer1 has quit IRC | 18:01 | |
*** Mandell has quit IRC | 18:02 | |
*** dustins_ has joined #openstack-cinder | 18:03 | |
*** dustins has quit IRC | 18:06 | |
*** dflorea_ has quit IRC | 18:11 | |
*** dflorea has joined #openstack-cinder | 18:12 | |
*** e0ne has joined #openstack-cinder | 18:14 | |
*** russellb has quit IRC | 18:15 | |
*** dflorea has quit IRC | 18:16 | |
*** russellb has joined #openstack-cinder | 18:19 | |
*** mriedem has quit IRC | 18:19 | |
*** annegentle has quit IRC | 18:20 | |
*** ganso_ has quit IRC | 18:27 | |
openstackgerrit | Lee Yarwood proposed openstack/os-brick: Fix multipath device discovery when UFN is enabled. https://review.openstack.org/170232 | 18:29 |
*** JayJ_ has joined #openstack-cinder | 18:30 | |
*** EmilienM|afk is now known as EmilienM | 18:30 | |
*** cpg|away is now known as cpg | 18:30 | |
*** sgotliv has quit IRC | 18:30 | |
*** diemt has joined #openstack-cinder | 18:30 | |
*** dustins has joined #openstack-cinder | 18:31 | |
*** kaufer1 has joined #openstack-cinder | 18:32 | |
*** kaufer has quit IRC | 18:33 | |
*** dustins_ has quit IRC | 18:34 | |
hemna | nice! | 18:38 |
e0ne | hemna: what did i miss? | 18:38 |
*** jgravel has quit IRC | 18:39 | |
hemna | e0ne, just trying to coordinate some fixes that are going into nova's libvirt volume driver -> os-brick | 18:39 |
e0ne | :) | 18:39 |
hemna | e0ne, https://review.openstack.org/#/c/170232/ | 18:39 |
hemna | redhat7 breakage with multipath | 18:40 |
lpetrut | Hi 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/1439806 | 18:40 |
openstack | Launchpad bug 1439806 in tempest "Volume boot pattern issue" [Undecided,New] | 18:40 |
hemna | e0ne, the nova fix: https://review.openstack.org/#/c/169873/ | 18:40 |
*** bkopilov has quit IRC | 18:41 | |
e0ne | hemna: imo, it's great! it makes our chance to use brick in nova higher | 18:41 |
*** russellb has quit IRC | 18:42 | |
*** thangp has quit IRC | 18:42 | |
hemna | yup. | 18:44 |
*** ronis_ has joined #openstack-cinder | 18:46 | |
*** russellb has joined #openstack-cinder | 18:47 | |
*** mriedem has joined #openstack-cinder | 18:48 | |
*** ronis__ has joined #openstack-cinder | 18:49 | |
*** timcl has quit IRC | 18:49 | |
*** Mandell has joined #openstack-cinder | 18:49 | |
*** bkopilov has joined #openstack-cinder | 18:50 | |
*** ronis has quit IRC | 18:50 | |
*** ronis_ has quit IRC | 18:52 | |
*** annegentle has joined #openstack-cinder | 18:53 | |
e0ne | jaypipes: hi. ^^ it's related your question about brick | 18:53 |
*** lpetrut has quit IRC | 18:58 | |
*** lpetrut has joined #openstack-cinder | 18:58 | |
*** lpetrut has quit IRC | 18:59 | |
*** annegentle has quit IRC | 18:59 | |
*** bswartz has quit IRC | 18:59 | |
*** annegentle has joined #openstack-cinder | 18:59 | |
e0ne | hemna: what are your thought about design summit topic for cinder agent and ironic integration? should we propose two different sessions? | 19:01 |
e0ne | hemna: our guys from ironic team is very interested in it | 19:01 |
hemna | sure. I think they could be one in the same | 19:01 |
*** rongze has joined #openstack-cinder | 19:02 | |
hemna | the ironic cinder integration is a much broader topic though | 19:02 |
hemna | it requires some server vendors to make some changes to support boot from volume settings via remote | 19:02 |
e0ne | hemna: at least, we could implement attachement | 19:03 |
vilobhmm1 | eone, hemna : do we have a doc/spec/blueprint regarding the same…would be happy to contribute in this effort | 19:03 |
hemna | it might be worth sitting in on an ironic meetup sessions and raise the question again and see where everyone is. | 19:03 |
hemna | I was trying to drive this a few releases ago | 19:03 |
hemna | but we got stuck on needing h/w vendor support | 19:03 |
hemna | the cinder agent really is needed though in the long run as well | 19:04 |
hemna | there are some challenges there that we need to figure out. | 19:04 |
e0ne | agree. i've added proposal to design summit | 19:04 |
hemna | ok sounds good. | 19:04 |
hemna | for the most part the cinder agent is straight forward | 19:05 |
hemna | REST API in front of brick | 19:05 |
hemna | but it needs keystone support | 19:05 |
e0ne | hemna: i remember it:) | 19:05 |
hemna | hence flask + keystone | 19:05 |
hemna | and that also assumes that there is some sort of config or settings injection in the agent, and the agent is allowed to talk to keystone | 19:05 |
e0ne | i stuck with internal release/tasks... | 19:06 |
*** rongze has quit IRC | 19:06 | |
hemna | but I would love to get it working | 19:06 |
e0ne | i need to integrate keystone middleware and finish unit tests | 19:06 |
e0ne | vilobhmm1: i'll find etherpad and add link to https://etherpad.openstack.org/p/cinder-liberty-proposed-sessions | 19:07 |
hemna | so maybe we can target a preview release for the agent in L. | 19:07 |
e0ne | sounds great | 19:07 |
vilobhmm1 | e0ne : ok thanks | 19:08 |
hemna | I can probably work on it as well after we get cinder/nova using brick | 19:08 |
hemna | that's my top priority for L. | 19:08 |
hemna | eventually 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 |
hemna | maybe nova, and ironic | 19:09 |
e0ne | i could enforce our ironic team on it | 19:10 |
hemna | e0ne, 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 |
hemna | ok going to go get some lunch....bbiab. | 19:11 |
e0ne | of 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 |
vilobhmm1 | hemna : 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 page | 19:13 |
vilobhmm1 | will start from there | 19:13 |
vilobhmm1 | once i am done with this objects task in hand | 19:14 |
* e0ne bb tomorrow | 19:14 | |
*** e0ne has quit IRC | 19:15 | |
*** rushil has joined #openstack-cinder | 19:20 | |
*** dflorea has joined #openstack-cinder | 19:21 | |
*** Apoorva has quit IRC | 19:23 | |
*** Apoorva has joined #openstack-cinder | 19:23 | |
*** dflorea has quit IRC | 19:25 | |
*** thingee has joined #openstack-cinder | 19:27 | |
*** cpg is now known as cpg|away | 19:27 | |
*** Bsony has quit IRC | 19:31 | |
*** kaufer1 has quit IRC | 19:35 | |
*** kaufer has joined #openstack-cinder | 19:36 | |
*** kaufer1 has joined #openstack-cinder | 19:37 | |
*** sgotliv has joined #openstack-cinder | 19:38 | |
*** sgotliv has quit IRC | 19:39 | |
*** kaufer has quit IRC | 19:40 | |
*** lcurtis has joined #openstack-cinder | 19:41 | |
*** lpetrut has joined #openstack-cinder | 19:46 | |
*** rmesta has quit IRC | 19:47 | |
*** rushiagr is now known as rushiagr_away | 19:51 | |
*** dflorea has joined #openstack-cinder | 19:51 | |
*** rushiagr_away is now known as rushiagr | 19:53 | |
*** dflorea has quit IRC | 19:54 | |
*** Mandell has quit IRC | 19:54 | |
*** geguileo has quit IRC | 20:00 | |
*** alecv_ has joined #openstack-cinder | 20:00 | |
*** rongze has joined #openstack-cinder | 20:02 | |
*** marcusvrn1 has quit IRC | 20:06 | |
*** rongze has quit IRC | 20:07 | |
*** rmesta has joined #openstack-cinder | 20:15 | |
*** anshul has quit IRC | 20:16 | |
*** cpg|away is now known as cpg | 20:16 | |
*** Mandell has joined #openstack-cinder | 20:16 | |
*** Apoorva_ has joined #openstack-cinder | 20:17 | |
*** Apoorva has quit IRC | 20:17 | |
*** dflorea has joined #openstack-cinder | 20:18 | |
*** Apoorva_ has quit IRC | 20:18 | |
*** rushiagr is now known as rushiagr_away | 20:23 | |
*** rmesta has quit IRC | 20:26 | |
*** rmesta has joined #openstack-cinder | 20:26 | |
*** alecv_ has quit IRC | 20:31 | |
*** lcurtis has quit IRC | 20:32 | |
*** bswartz has joined #openstack-cinder | 20:34 | |
*** rsoto has joined #openstack-cinder | 20:36 | |
*** Bsony has joined #openstack-cinder | 20:37 | |
rsoto | Hello all, I have a question and havent been able to find an answer in the docs or in ask.openstack | 20:37 |
rsoto | I 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 available | 20:38 |
*** lcurtis has joined #openstack-cinder | 20:48 | |
*** annegentle has quit IRC | 20:51 | |
*** lpetrut has quit IRC | 20:53 | |
*** annegentle has joined #openstack-cinder | 20:54 | |
*** bswartz has quit IRC | 20:55 | |
*** annegentle has quit IRC | 20:55 | |
openstackgerrit | hadi esiely proposed openstack/cinder: Store volume encryption metadata on each volume https://review.openstack.org/152284 | 20:56 |
*** Apoorva has joined #openstack-cinder | 20:58 | |
*** dannywilson has joined #openstack-cinder | 21:00 | |
hemna | looks like some features that have been added to nova's LibvirtISCSIVolumeDriver aren't in brick's iscsi connector | 21:01 |
hemna | *sigh* | 21:01 |
hemna | starting to work on a WIP patch for nova -> os-brick | 21:01 |
*** patrickeast_ has joined #openstack-cinder | 21:01 | |
*** annegentle has joined #openstack-cinder | 21:01 | |
*** patrickeast has quit IRC | 21:02 | |
*** patrickeast_ is now known as patrickeast | 21:02 | |
*** melwitt has quit IRC | 21:02 | |
*** melwitt_ has joined #openstack-cinder | 21:02 | |
*** dannywil_ has quit IRC | 21:02 | |
anish | hemna: one of those is mine | 21:02 |
anish | with an open spec | 21:02 |
hemna | the transports | 21:02 |
anish | yes | 21:02 |
*** lpabon has joined #openstack-cinder | 21:02 | |
*** vilobhmm1 has quit IRC | 21:03 | |
*** melwitt_ has quit IRC | 21:03 | |
hemna | I'm taking a look at it now | 21:03 |
hemna | so it looks like there is a CONF.libvirt.iscsi_iface setting in nova | 21:03 |
hemna | that is the asked for transport | 21:03 |
*** vilobhmm1 has joined #openstack-cinder | 21:03 | |
*** rongze has joined #openstack-cinder | 21:03 | |
*** lcurtis has quit IRC | 21:03 | |
*** melwitt_ has joined #openstack-cinder | 21:03 | |
hemna | I'll make that a kwarg in the ISCSIConnector | 21:03 |
anish | sounds good | 21:04 |
anish | the bigger change is in the dev path | 21:04 |
anish | it is broken for iser right now in brick | 21:04 |
hemna | oh? | 21:04 |
anish | there is a pci suffix in the device name when you use any transport | 21:05 |
*** melwitt_ is now known as melwitt | 21:06 | |
*** emagana has joined #openstack-cinder | 21:07 | |
*** rongze has quit IRC | 21:08 | |
anish | man, github is still reeling | 21:09 |
anish | hemna: https://github.com/openstack/os-brick/blob/master/os_brick/initiator/connector.py#L416 | 21:09 |
*** emagana has quit IRC | 21:09 | |
anish | sorry, i meant this one https://github.com/openstack/os-brick/blob/master/os_brick/initiator/connector.py#L665 | 21:10 |
*** emagana has joined #openstack-cinder | 21:10 | |
anish | compare with the path in https://review.openstack.org/#/c/146233/22/nova/virt/libvirt/volume.py | 21:10 |
anish | pci-xxxx- | 21:10 |
*** _cjones_ has quit IRC | 21:11 | |
*** _cjones_ has joined #openstack-cinder | 21:11 | |
*** dustins has quit IRC | 21:11 | |
*** dflorea has quit IRC | 21:12 | |
*** Mandell has quit IRC | 21:12 | |
*** dflorea has joined #openstack-cinder | 21:13 | |
*** ronis__ has quit IRC | 21:13 | |
*** emagana has quit IRC | 21:14 | |
*** Mandell has joined #openstack-cinder | 21:15 | |
*** akerr has quit IRC | 21:15 | |
*** emagana has joined #openstack-cinder | 21:16 | |
*** Yogi1 has quit IRC | 21:16 | |
*** haomaiwang has quit IRC | 21:16 | |
*** dflorea has quit IRC | 21:17 | |
openstackgerrit | hadi esiely proposed openstack/cinder: Store volume encryption metadata on each volume https://review.openstack.org/152284 | 21:17 |
*** cbader has quit IRC | 21:17 | |
*** xyang1 has quit IRC | 21:18 | |
*** Bsony has quit IRC | 21:21 | |
hemna | quite a bit has changed since I pulled the iscsi stuff out of nova | 21:24 |
*** ociuhandu has quit IRC | 21:32 | |
*** rushil has quit IRC | 21:33 | |
*** sweston has quit IRC | 21:33 | |
*** mgagne has quit IRC | 21:33 | |
*** annashen has quit IRC | 21:34 | |
*** adam_g has quit IRC | 21:34 | |
*** fanyaohong_ has joined #openstack-cinder | 21:34 | |
*** rmesta1 has joined #openstack-cinder | 21:35 | |
*** julim_ has joined #openstack-cinder | 21:36 | |
*** leeantho_ has joined #openstack-cinder | 21:36 | |
*** sweston has joined #openstack-cinder | 21:36 | |
*** morganfainberg has quit IRC | 21:37 | |
*** morganfainberg has joined #openstack-cinder | 21:37 | |
*** garysmith_ has joined #openstack-cinder | 21:37 | |
*** haomaiwang has joined #openstack-cinder | 21:37 | |
*** emagana has quit IRC | 21:38 | |
*** vilobhmm11 has joined #openstack-cinder | 21:38 | |
*** fanyaohong has quit IRC | 21:38 | |
*** gary-smith has quit IRC | 21:38 | |
*** krtaylor has quit IRC | 21:38 | |
*** rmesta has quit IRC | 21:38 | |
*** vilobhmm1 has quit IRC | 21:38 | |
*** leeantho has quit IRC | 21:38 | |
*** julim has quit IRC | 21:38 | |
*** fanyaohong_ is now known as fanyaohong | 21:38 | |
*** adam_g has joined #openstack-cinder | 21:39 | |
*** kaufer1 has quit IRC | 21:40 | |
*** adam_g has quit IRC | 21:40 | |
*** adam_g has joined #openstack-cinder | 21:40 | |
*** mgagne has joined #openstack-cinder | 21:40 | |
Swanson | hemna: in a "that's interesting" way? In a "that causes a problem way"? | 21:40 |
hemna | both :P | 21:40 |
hemna | I have to resolve the differences | 21:40 |
hemna | or nova won't accept using os-brick losing features. | 21:41 |
*** krtaylor has joined #openstack-cinder | 21:41 | |
*** lpabon has quit IRC | 21:41 | |
*** annegentle has quit IRC | 21:44 | |
*** rmesta1 has quit IRC | 21:44 | |
*** angela-s has quit IRC | 21:46 | |
*** rmesta has joined #openstack-cinder | 21:50 | |
*** vilobhmm11 has quit IRC | 21:53 | |
*** vilobhmm1 has joined #openstack-cinder | 21:53 | |
*** vilobhmm1 has quit IRC | 21:54 | |
*** crose has quit IRC | 21:54 | |
*** vilobhmm1 has joined #openstack-cinder | 21:54 | |
*** esker has quit IRC | 21:54 | |
*** dannywilson has quit IRC | 21:58 | |
*** dannywilson has joined #openstack-cinder | 21:59 | |
*** casusbelli has quit IRC | 21:59 | |
*** alexpilotti has quit IRC | 21:59 | |
*** jungleboyj has quit IRC | 21:59 | |
*** annegentle has joined #openstack-cinder | 22:02 | |
*** rongze has joined #openstack-cinder | 22:04 | |
*** melwitt has quit IRC | 22:07 | |
*** melwitt has joined #openstack-cinder | 22:07 | |
*** melwitt has quit IRC | 22:08 | |
*** melwitt has joined #openstack-cinder | 22:09 | |
*** melwitt has quit IRC | 22:09 | |
*** rongze has quit IRC | 22:09 | |
*** annegentle has quit IRC | 22:11 | |
*** annegentle has joined #openstack-cinder | 22:12 | |
*** marcusvrn has joined #openstack-cinder | 22:18 | |
*** marcusvrn has quit IRC | 22:19 | |
*** marcusvrn has joined #openstack-cinder | 22:19 | |
*** JayJ_ has quit IRC | 22:25 | |
*** melwitt has joined #openstack-cinder | 22:25 | |
*** annegentle has quit IRC | 22:27 | |
*** melwitt has quit IRC | 22:31 | |
*** Mandell has quit IRC | 22:40 | |
*** rsoto has quit IRC | 22:41 | |
*** eharney has quit IRC | 22:43 | |
*** annashen has joined #openstack-cinder | 22:45 | |
*** Mandell has joined #openstack-cinder | 22:45 | |
*** ebalduf has joined #openstack-cinder | 22:45 | |
*** ebalduf has quit IRC | 22:50 | |
*** annashen has quit IRC | 22:55 | |
*** annashen has joined #openstack-cinder | 22:55 | |
*** mriedem is now known as mriedem_away | 22:58 | |
*** Lee1092 has quit IRC | 23:00 | |
*** dannywilson has quit IRC | 23:03 | |
openstackgerrit | Tom Swanson proposed openstack/cinder: Dell SC driver has insufficient iscsi logging https://review.openstack.org/170310 | 23:04 |
*** rongze has joined #openstack-cinder | 23:05 | |
*** dannywilson has joined #openstack-cinder | 23:05 | |
openstackgerrit | Vilobh Meshram proposed openstack/cinder: WIP : Quota Objects https://review.openstack.org/163232 | 23:07 |
*** rongze has quit IRC | 23:10 | |
*** tsekiyam_ has joined #openstack-cinder | 23:11 | |
*** iwao has joined #openstack-cinder | 23:13 | |
*** tsekiyama has quit IRC | 23:14 | |
*** tsekiyam_ has quit IRC | 23:15 | |
*** dflorea has joined #openstack-cinder | 23:16 | |
*** jdurgin has quit IRC | 23:17 | |
*** annashen has quit IRC | 23:20 | |
*** annashen has joined #openstack-cinder | 23:22 | |
vilobhmm1 | dulek : ping | 23:23 |
*** hemna is now known as hemnafk | 23:25 | |
*** patrickeast has quit IRC | 23:25 | |
*** dannywilson has quit IRC | 23:26 | |
*** _cjones_ has quit IRC | 23:34 | |
*** annegentle has joined #openstack-cinder | 23:41 | |
*** annashen has quit IRC | 23:42 | |
*** garysmith_ has quit IRC | 23:44 | |
*** rmesta has quit IRC | 23:45 | |
*** rmesta has joined #openstack-cinder | 23:45 | |
*** haomaiwang has quit IRC | 23:45 | |
*** haomaiwang has joined #openstack-cinder | 23:46 | |
*** rlucio has quit IRC | 23:46 | |
*** annashen has joined #openstack-cinder | 23:47 | |
*** dflorea has quit IRC | 23:48 | |
*** annashen has quit IRC | 23:48 | |
*** dflorea has joined #openstack-cinder | 23:49 | |
*** annashen has joined #openstack-cinder | 23:50 | |
*** erlon has quit IRC | 23:51 | |
*** IanGovett has quit IRC | 23:52 | |
*** IanGovett has joined #openstack-cinder | 23:52 | |
*** bswartz has joined #openstack-cinder | 23:53 | |
*** dflorea has quit IRC | 23:53 | |
*** rmesta has quit IRC | 23:53 | |
*** jaypipes has quit IRC | 23:54 | |
*** IanGovett has quit IRC | 23:57 | |
*** annegentle has quit IRC | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!