Friday, 2016-07-29

*** lujinluo has joined #openstack-glance00:04
*** takedakn has joined #openstack-glance00:20
*** sdake has quit IRC00:23
*** hwcomcn has joined #openstack-glance00:24
*** takedakn has quit IRC00:24
*** btully has quit IRC00:32
*** btully has joined #openstack-glance00:37
*** btully has quit IRC00:49
*** jamielennox is now known as jamielennox|away00:49
*** hwcomcn has quit IRC00:55
*** btully has joined #openstack-glance01:00
*** ducttape_ has quit IRC01:04
*** lujinluo has quit IRC01:06
*** lujinluo has joined #openstack-glance01:06
*** ducttape_ has joined #openstack-glance01:06
*** bpokorny has quit IRC01:10
*** itisha has quit IRC01:10
*** sdake has joined #openstack-glance01:13
*** sdake has quit IRC01:13
*** sdake has joined #openstack-glance01:13
*** sdake_ has joined #openstack-glance01:15
*** pt_15 has quit IRC01:16
*** sdake has quit IRC01:18
*** TravT has quit IRC01:21
*** harshs has quit IRC01:26
*** hemanthm|afk is now known as hemanthm01:27
*** harshs has joined #openstack-glance01:28
*** jamielennox|away is now known as jamielennox01:34
nikhilflwang: hi01:41
*** hongbin_ has joined #openstack-glance01:46
flwangnikhil:01:46
flwanghi01:46
flwanghongbin: around?01:47
flwanghongbin_: ^01:47
hongbin_yes01:47
flwanghongbin_: would you mind explaining the requirement of zun for glance?01:47
flwangfor the image support01:47
hongbin_sure01:47
hongbin_The basic is to support layer of images01:48
hongbin_There are several advanced requirements01:48
hongbin_Such as configure it as a cache for public docker registry01:48
*** harshs has quit IRC01:49
*** TravT has joined #openstack-glance01:49
hongbin_Provide a docker registry compatible API01:49
hongbin_etc.01:49
hongbin_flwang: ^^01:50
flwangnikhil: ^01:51
kragnizwhat level of support for layers do you need?01:53
*** TravT has quit IRC01:54
kragnizI mean, you could probably hack something up where each layer is stored as a single glance image01:54
hongbin_Yes, that will work.01:55
flwangkragniz: instead of hacking, zun is looking for a native support, i think01:55
hongbin_but it is better to have a holistic support01:55
hongbin_Maybe it is not just for Zun, magnum also has a similiar requirement01:56
kragnizso adding something to the api where you can request all the ancestors of a layer?01:56
hongbin_Maybe the API don't need to change01:57
hongbin_But support a docker image type, that store and retrieve layer of images01:57
*** TravT has joined #openstack-glance01:58
nikhil(I'm listening)01:58
kragnizso when you get that image from glance, you get a copy of all the layers in one go?01:58
*** TravT has quit IRC01:58
hongbin_yes01:58
hongbin_The behavior should be similiar to docker pull01:59
nikhilhongbin: I'm curious if this can be implemented client side?01:59
nikhilI know it's a bit of stretch01:59
kragnizdoesn't docker pull request each layer in turn?01:59
hongbin_nikhil: Yes, it can be implemented in client side, if that is the best approach02:00
kragniz(I've only implemented part of the v1 docker api, so it might be different in v2)02:00
flwangnikhil: but i think we do need some support in glance to maintain the chain/relationship02:00
nikhilThe concept of deltas isn't a new thing02:00
flwangi mean the relationship between image layers02:01
nikhilflwang: yes, unfortunately that isn't so easy. It was the very reason I had started pursuing concept of artifacts ;) but only a few understood my insistence02:02
kragnizcouldn't it be done using image properties?02:02
nikhilBut glare as of today is in no position to support images API02:02
flwangkragniz: +102:02
kragnizso each layer has a property that points at its ancestor02:02
nikhilkragniz: that's exactly I was getting at02:02
flwangi prefer to use image properties02:02
nikhilBy client side02:02
kragnizlike a linked list of deltas02:02
nikhilBut02:03
flwangbut we need reserved property name02:03
nikhilYou have a BIG problem doing that02:03
flwanghow BIG is big :)02:03
nikhil... You need to maintain the images that are in use02:04
nikhilAnd...02:04
nikhilIf you are using something that can't be deleted but someone does (a part of chain), the whole thing comes down02:05
nikhilThink of it as  reimplementing git tree logic client side02:05
nikhilYour deletes, updates etc will also need to be aware of the chain02:06
flwangcan  we support flatten?02:06
nikhilEssentially, a single image is independent entity today02:06
nikhilLayering will call for a change in that concept02:07
*** bpokorny has joined #openstack-glance02:07
flwangbut here, when you delete an image in the chain, you should got a warning02:07
kragnizI mean, if you delete something you need, you're going to have problems02:07
flwangabout what will happen02:07
flwangbecause those users are in the same tenant02:07
flwangand they should know what they're doing, no?02:08
nikhilWho is supposed to verify all that?02:08
nikhilFor each delete, we will expect GET calls to the chain02:08
hongbin_I think users should not be given pemission to delete individual layers. Maybe all layers should be hidden from end-users02:08
nikhilFor each GET we will need multiple GETs02:08
nikhilhongbin: yeah, exactly02:08
flwangnikhil: i agree with hongbin_, user can't delete single image in the chain02:09
nikhilAbility to do this is horrendous experience02:09
flwangunless he delete the latest/leaf first02:09
nikhilflwang: yep, and to implement that you need to implement a whole git tree like logic02:09
*** btully has quit IRC02:09
nikhilBasically, it's a distributed version control system02:10
*** ducttape_ has quit IRC02:10
nikhilBecause, potentially you can boot something of a nonleaf and create a timeline for that image02:10
nikhilIn the worst case, you end up with a complete binary tree02:11
*** lujinluo has quit IRC02:11
flwangnikhil: +102:11
*** bpokorny has quit IRC02:11
*** lujinluo has joined #openstack-glance02:11
hongbin_I see. That is the reason Glance don't want the docker image support02:12
nikhilhongbin_:  I am strongly in favor of this use case02:12
nikhilhongbin_: not exactly02:12
kragnizcould you abuse metadefs to describe the images and the layers associated with each?02:13
nikhilhongbin_: it's a very complicated problem but to get it right we need to implement right stuff02:13
hongbin_nikhil: ack02:13
kragnizhongbin_: I'm not sure what you're gaining by making glance deal with docker images over just using a docker registry instance02:13
hongbin_kragniz: multi-tenant, keystone, ...02:14
kragnizyeah, actually02:14
kragnizgood things to have :)02:14
*** btully has joined #openstack-glance02:15
nikhilhongbin_: because the concept of delta is not just for docker. I what to see glance Support swarm like logic for servers too. xen has a concept of vdi chain and qcow too...02:15
hongbin_nikhil: ack. Is there any plan for that?02:16
nikhilWe need a version control system and I don't have a good answer for it atm02:16
hongbin_I see02:16
nikhilhongbin_: the plan was glare :) but due to many reasons I see it failing for images02:16
nikhilhongbin_: I'm hoping we will have better answers in ocata . But I would love to keep this conversation open02:17
hongbin_nikhil: sure. me as well02:18
hongbin_nikhil: Actually, it is good that Glance is willing to consider the container use cases02:18
nikhilhongbin_: just fyi, there is a nova spec open that talks about xen based deltas. I don't have a link atm but good read for starters on this conversation02:19
nikhilhongbin_: totally02:19
hongbin_nikhil: ack02:19
*** btully has quit IRC02:19
*** sdake_ has quit IRC02:19
hongbin_All. Thanks for sharing the information. It is a productive talk02:20
hongbin_(will leave for a while)02:21
flwangnikhil: should we plan a session in summit about this?02:21
nikhilflwang: may be :) pre-summit for sure  to start off02:22
flwangnikhil: ok, cool02:22
nikhilThanks for coordinating this flwang very helpful and productive02:23
* nikhil goes for some food02:24
flwangnikhil: thank you for your support :D02:25
openstackgerritOpenStack Proposal Bot proposed openstack/glance: Updated from global requirements  https://review.openstack.org/34862102:28
openstackgerritOpenStack Proposal Bot proposed openstack/glance_store: Updated from global requirements  https://review.openstack.org/34862202:28
hongbin_nikhil: Hey. Sorry, another question for you02:29
hongbin_nikhil: I knew many people suggested Glance to support docker image for years, but it seems the work hasn't been started yet. Is that any reason for that? (For example, lack of resources to do that, many objection within the team, etc.)02:31
*** jamielennox is now known as jamielennox|away02:32
*** jinquan has quit IRC02:33
flwanghongbin_: i think just we discussed above, it's hard :)02:33
*** mine0901 has quit IRC02:33
openstackgerritOpenStack Proposal Bot proposed openstack/python-glanceclient: Updated from global requirements  https://review.openstack.org/34867002:34
hongbin_flwang: I see02:34
*** _ducttape_ has joined #openstack-glance02:35
flwanghongbin_: maybe nikhil has a better answer ;)02:36
*** jinquan has joined #openstack-glance02:37
*** btully has joined #openstack-glance02:38
*** TravT has joined #openstack-glance02:43
nikhilhongbin_: flwang is right. And in reality it's a bit of both. We may get resources temporarily to complete stuff but having maintainers for that is the biggest challenge02:43
nikhilRight about being hard02:43
flwangnikhil: i mentioned that with hongbin_, i had discussion with Sam(https://twitter.com/sam_alba) 3 years ago about this02:47
flwangand unfortunately, (shame), we didn't make much progress on this02:48
*** harshs has joined #openstack-glance02:48
*** btully has quit IRC02:51
*** btully has joined #openstack-glance03:02
*** _ducttape_ has quit IRC03:04
*** ducttape_ has joined #openstack-glance03:05
*** ducttape_ has quit IRC03:05
*** btully has quit IRC03:07
*** bpokorny has joined #openstack-glance03:08
*** TravT has quit IRC03:10
*** TravT has joined #openstack-glance03:11
*** btully has joined #openstack-glance03:12
*** bpokorny has quit IRC03:14
*** TravT has quit IRC03:15
*** hongbin_ has quit IRC03:20
*** takedakn has joined #openstack-glance03:21
*** btully has quit IRC03:23
*** takedakn has quit IRC03:25
*** lujinluo has quit IRC03:25
*** jinquan has quit IRC03:25
*** jinquan has joined #openstack-glance03:27
nikhil:)03:31
*** harshs has quit IRC03:32
*** ducttape_ has joined #openstack-glance03:37
*** btully has joined #openstack-glance03:37
*** btully has quit IRC03:50
*** ducttape_ has quit IRC03:58
*** lujinluo has joined #openstack-glance03:59
*** btully has joined #openstack-glance04:02
*** liwei has joined #openstack-glance04:05
*** liwei has quit IRC04:08
*** links has joined #openstack-glance04:13
*** btully has quit IRC04:15
*** btully has joined #openstack-glance04:37
*** pdeore has joined #openstack-glance04:44
*** ducttape_ has joined #openstack-glance04:59
*** NanKe has joined #openstack-glance05:01
*** ducttape_ has quit IRC05:04
*** flwang1 has quit IRC05:06
*** bpokorny has joined #openstack-glance05:11
*** bpokorny has quit IRC05:16
*** GB21 has joined #openstack-glance05:22
*** ducttape_ has joined #openstack-glance05:29
*** ducttape_ has quit IRC05:34
*** GB21 has quit IRC05:36
*** GB21 has joined #openstack-glance05:37
openstackgerritItisha Dewan proposed openstack/glance_store: Improve the help text for vmware datastore driver opts  https://review.openstack.org/34228605:48
*** groen692 has joined #openstack-glance05:49
openstackgerritSwapnil Kulkarni (coolsvap) proposed openstack/glance: [WIP] Testing latest u-c  https://review.openstack.org/31843605:49
*** dshakhray has joined #openstack-glance06:02
*** david-lyle has joined #openstack-glance06:07
*** e0ne has joined #openstack-glance06:12
*** takedakn has joined #openstack-glance06:21
*** takedakn has quit IRC06:26
*** ducttape_ has joined #openstack-glance06:30
*** ducttape_ has quit IRC06:35
*** GB21 has quit IRC06:36
*** tesseract- has joined #openstack-glance06:37
*** maestropandy has joined #openstack-glance06:40
*** btully has quit IRC06:43
*** btully has joined #openstack-glance06:43
*** david-lyle has quit IRC06:45
*** pcaruana has joined #openstack-glance06:45
*** GB21 has joined #openstack-glance06:49
*** itisha has joined #openstack-glance06:53
*** pt_15 has joined #openstack-glance06:54
*** btully has quit IRC06:56
*** GB21 has quit IRC06:57
*** GB21 has joined #openstack-glance07:02
*** GB21 has quit IRC07:07
*** bpokorny has joined #openstack-glance07:12
*** bpokorny has quit IRC07:17
*** btully has joined #openstack-glance07:17
*** GB21 has joined #openstack-glance07:18
*** btully has quit IRC07:22
*** GB21 has quit IRC07:33
*** flwang1 has joined #openstack-glance07:34
*** btully has joined #openstack-glance07:37
*** mosulica has joined #openstack-glance07:43
*** btully has quit IRC07:49
*** e0ne has quit IRC08:00
*** dshakhray has quit IRC08:11
*** btully has joined #openstack-glance08:17
*** dshakhray has joined #openstack-glance08:20
*** btully has quit IRC08:21
*** ducttape_ has joined #openstack-glance08:30
*** btully has joined #openstack-glance08:31
*** GB21 has joined #openstack-glance08:34
*** btully has quit IRC08:35
*** ducttape_ has quit IRC08:35
*** btully has joined #openstack-glance08:37
*** btully has quit IRC08:41
*** NanKe has quit IRC08:42
*** NanKe has joined #openstack-glance08:44
*** e0ne has joined #openstack-glance08:52
*** btully has joined #openstack-glance08:56
*** btully has quit IRC09:05
*** e0ne has quit IRC09:05
*** btully has joined #openstack-glance09:12
*** bpokorny has joined #openstack-glance09:14
*** bpokorny has quit IRC09:19
*** btully has quit IRC09:21
*** ihrachys has joined #openstack-glance09:21
*** takedakn has joined #openstack-glance09:22
*** gparaskevas has joined #openstack-glance09:24
gparaskevasHello there09:24
gparaskevasi have a quick questio, centos 7 installation with packages09:24
gparaskevaswhen i systemctl start openstack-glance-api or openstack-glance-registry i get this the logs09:25
gparaskevasglance-registry: ImportError: No module named glance.cmd.registry09:25
gparaskevasglance-registry: ImportError: No module named glance.cmd.api -> when i start the api09:25
*** maestropandy has quit IRC09:25
gparaskevasdoes anyone has any clue?09:25
gparaskevasis that something i can pip install?09:26
*** takedakn has quit IRC09:26
*** btully has joined #openstack-glance09:32
*** ducttape_ has joined #openstack-glance09:32
*** permalac has joined #openstack-glance09:33
*** ducttape_ has quit IRC09:36
*** GB21 has quit IRC09:46
*** btully has quit IRC09:47
*** GB21 has joined #openstack-glance09:58
*** e0ne has joined #openstack-glance10:01
*** gparaskevas has quit IRC10:01
*** e0ne has quit IRC10:12
*** maestropandy has joined #openstack-glance10:18
*** sdake has joined #openstack-glance10:25
*** ducttape_ has joined #openstack-glance10:33
*** ducttape_ has quit IRC10:37
*** btully has joined #openstack-glance10:37
*** btully has quit IRC10:48
*** lujinluo has quit IRC10:56
*** e0ne has joined #openstack-glance10:58
*** GB21 has quit IRC11:00
*** e0ne has quit IRC11:01
*** liwei has joined #openstack-glance11:13
*** bpokorny has joined #openstack-glance11:15
*** btully has joined #openstack-glance11:17
*** bpokorny has quit IRC11:20
*** btully has quit IRC11:22
*** cdelatte has joined #openstack-glance11:27
*** sdake has quit IRC11:27
*** maestropandy has quit IRC11:27
*** btully has joined #openstack-glance11:35
*** btully has quit IRC11:39
*** btully has joined #openstack-glance11:40
*** itisha has quit IRC11:40
*** maestropandy has joined #openstack-glance11:43
*** maestropandy has left #openstack-glance11:43
*** btully has quit IRC11:50
*** e0ne has joined #openstack-glance11:51
*** hwcomcn has joined #openstack-glance12:05
*** hwcomcn has quit IRC12:07
*** hwcomcn has joined #openstack-glance12:07
*** hwcomcn has quit IRC12:09
*** hwcomcn has joined #openstack-glance12:10
*** hwcomcn has quit IRC12:11
*** ducttape_ has joined #openstack-glance12:11
*** hwcomcn has joined #openstack-glance12:12
openstackgerritDarja Shakhray proposed openstack/glance: [WIP] Add test of microversions  https://review.openstack.org/34885712:12
*** pdeore has quit IRC12:13
*** hwcomcn has quit IRC12:13
*** hwcomcn has joined #openstack-glance12:14
*** itisha has joined #openstack-glance12:16
*** btully has joined #openstack-glance12:17
*** MattMan has quit IRC12:17
*** MattMan has joined #openstack-glance12:17
*** sskripnick has quit IRC12:22
*** btully has quit IRC12:22
*** takedakn has joined #openstack-glance12:23
*** sskripnick has joined #openstack-glance12:23
*** ducttape_ has quit IRC12:26
*** takedakn has quit IRC12:27
*** sskripnick has quit IRC12:29
*** takedakn has joined #openstack-glance12:36
openstackgerritItisha Dewan proposed openstack/glance_store: Improve the help text for Swift driver opts  https://review.openstack.org/34404712:38
*** NanKe has quit IRC12:41
*** NanKe has joined #openstack-glance12:46
*** sskripnick has joined #openstack-glance12:47
*** btully has joined #openstack-glance12:51
*** maestropandy1 has joined #openstack-glance12:52
*** edmondsw has joined #openstack-glance12:54
*** mine0901 has joined #openstack-glance12:54
*** maestropandy1 has left #openstack-glance12:56
*** maestropandy has joined #openstack-glance13:00
*** btully has quit IRC13:00
*** btully has joined #openstack-glance13:01
*** liwei has quit IRC13:04
*** maestropandy has left #openstack-glance13:04
*** NanKe has quit IRC13:05
*** links has quit IRC13:07
*** bpokorny has joined #openstack-glance13:17
*** ducttape_ has joined #openstack-glance13:21
*** bpokorny has quit IRC13:22
*** ducttape_ has quit IRC13:34
*** hongbin has left #openstack-glance13:36
*** catintheroof has quit IRC13:42
*** btully has quit IRC13:50
*** btully has joined #openstack-glance13:51
*** edmondsw has quit IRC13:56
*** hwcomcn has quit IRC14:16
*** dshakhray_ has joined #openstack-glance14:17
*** dshakhray has quit IRC14:18
*** anush_ has joined #openstack-glance14:23
*** edmondsw has joined #openstack-glance14:34
*** harshs has joined #openstack-glance14:34
*** ducttape_ has joined #openstack-glance14:35
*** david-lyle has joined #openstack-glance14:42
*** david-lyle_ has joined #openstack-glance14:46
*** david-lyle has quit IRC14:47
*** harshs has quit IRC14:47
*** david-lyle__ has joined #openstack-glance14:48
*** david-lyle_ has quit IRC14:52
*** harshs has joined #openstack-glance14:53
*** burgerk has joined #openstack-glance14:54
*** mosulica has quit IRC14:56
*** anush_ has quit IRC15:01
*** jistr is now known as jistr|call15:10
*** Dinesh_Bhor has joined #openstack-glance15:10
Dinesh_Bhorflaper87: Hi, Could you please take a look at it ? https://review.openstack.org/#/c/280571/15:12
*** harshs has quit IRC15:13
*** harshs has joined #openstack-glance15:13
*** e0ne has quit IRC15:14
*** anush_ has joined #openstack-glance15:16
*** jistr|call is now known as jistr15:17
*** bpokorny has joined #openstack-glance15:18
*** harshs has quit IRC15:19
*** ayoung has joined #openstack-glance15:22
*** bpokorny has quit IRC15:23
*** david-lyle has joined #openstack-glance15:23
*** david-lyle__ has quit IRC15:23
*** bpokorny has joined #openstack-glance15:25
openstackgerritMerged openstack/glance_store: Updated from global requirements  https://review.openstack.org/34862215:28
*** bpokorny has quit IRC15:29
*** harshs has joined #openstack-glance15:31
*** harshs has quit IRC15:32
*** TravT has joined #openstack-glance15:33
*** Dinesh_Bhor has quit IRC15:37
*** sdake has joined #openstack-glance15:39
*** groen692 has quit IRC15:44
openstackgerritMerged openstack/glance_store: Remove S3 driver  https://review.openstack.org/34762015:45
*** dshakhray_ has quit IRC15:52
*** btully has quit IRC15:56
*** GB21 has joined #openstack-glance15:56
*** btully has joined #openstack-glance15:59
*** pcaruana has quit IRC16:01
*** harshs has joined #openstack-glance16:10
openstackgerritNiall Bunting proposed openstack/glance: Make signature dependencies optional  https://review.openstack.org/28494116:13
openstackgerritNiall Bunting proposed openstack/glance: Make signature dependencies optional  https://review.openstack.org/28494116:14
*** tesseract- has quit IRC16:30
*** bpokorny has joined #openstack-glance16:30
*** permalac has quit IRC16:31
*** jamielennox|away is now known as jamielennox16:32
*** bpokorny has quit IRC16:34
*** takedakn has quit IRC16:38
*** sskripnick has quit IRC16:44
*** e0ne has joined #openstack-glance16:45
*** e0ne has quit IRC16:46
*** TravT has quit IRC16:54
nikhilthanks for the reviews and merge guys, sigmavirus kairat mike and hemanthm ! much appreciated.16:56
nikhil(ref s3 driver)16:56
*** TravT has joined #openstack-glance16:58
sbezverk_kairat ping17:01
*** ducttape_ has quit IRC17:05
*** dshakhray_ has joined #openstack-glance17:07
*** harshs has quit IRC17:17
*** harshs has joined #openstack-glance17:21
*** harshs has quit IRC17:30
*** itlinux has quit IRC17:35
*** jamielennox is now known as jamielennox|away17:35
*** bpokorny has joined #openstack-glance17:36
*** btully has quit IRC17:43
nikhilhttps://review.openstack.org/34898017:45
*** btully has joined #openstack-glance17:46
*** ducttape_ has joined #openstack-glance17:46
*** harshs has joined #openstack-glance17:49
*** e0ne has joined #openstack-glance17:50
*** links has joined #openstack-glance17:54
*** harshs has quit IRC18:00
*** harshs has joined #openstack-glance18:00
*** _stowa has joined #openstack-glance18:04
*** _stowa has quit IRC18:07
*** mtanino has joined #openstack-glance18:14
*** anush_ has quit IRC18:18
*** anush_ has joined #openstack-glance18:19
*** GB21 has quit IRC18:32
*** harshs has quit IRC18:46
openstackgerritMike Fedosin proposed openstack/glance: Glare middlewares  https://review.openstack.org/33045718:47
openstackgerritMike Fedosin proposed openstack/glance: Glare engine  https://review.openstack.org/33045618:47
openstackgerritMike Fedosin proposed openstack/glance: Glare tests  https://review.openstack.org/33045918:47
openstackgerritMike Fedosin proposed openstack/glance: Glare API  https://review.openstack.org/33045818:47
openstackgerritMike Fedosin proposed openstack/glance: Glare sqlalchemy DB  https://review.openstack.org/33045318:47
openstackgerritMike Fedosin proposed openstack/glance: Glare base artifact type  https://review.openstack.org/33045518:47
openstackgerritMike Fedosin proposed openstack/glance: Glare artifact types infrastructure  https://review.openstack.org/33045418:47
openstackgerritMike Fedosin proposed openstack/glance: Glare simple DB  https://review.openstack.org/34378718:47
*** sdake has quit IRC18:47
*** dshakhray__ has joined #openstack-glance18:49
*** dshakhray_ has quit IRC18:51
*** achanda has joined #openstack-glance18:55
*** hoonetorg has quit IRC18:56
*** ihrachys has quit IRC19:04
*** fifieldt has quit IRC19:07
hemanthmnikhil: https://review.openstack.org/#/c/348507/19:07
nikhilhemanthm: yeas?19:08
hemanthmtests failing on that patch19:09
nikhilhemanthm: oh so the glance_store issues persists I guess19:11
nikhilhemanthm: is that what u were saying?19:11
hemanthmyeah, looks like19:11
hemanthmyes19:11
*** ducttape_ has quit IRC19:12
*** btully has quit IRC19:12
nikhilhemanthm: I think its a issuewith mirrors on ubuntu19:12
nikhilbecause glance docs gate works19:13
nikhiland ubuntu did have issues this week like such19:13
*** btully has joined #openstack-glance19:13
hemanthmnikhil: yeah, that's possible too19:14
*** ducttape_ has joined #openstack-glance19:15
*** fifieldt has joined #openstack-glance19:18
*** links has quit IRC19:20
*** sdake has joined #openstack-glance19:35
*** edmondsw has quit IRC19:35
*** btully has quit IRC19:37
*** dshakhray__ has quit IRC19:46
*** sdake has quit IRC19:59
*** cdelatte has quit IRC20:00
*** e0ne has quit IRC20:04
sbezverk_nikhil when glance client tries to reach glance api service, it contacts keystone for glance endpoint url and then tries to contact glance api usig that url, is this correct?20:16
*** btully has joined #openstack-glance20:20
nikhilsbezverk_: it should if env is not set or not passed in by user. and assuming you are referring to client CLI20:21
sbezverk_nikhil: thank you. correct I was refering to client cli.20:23
*** achanda has quit IRC20:34
*** burgerk has quit IRC20:37
*** dshakhray__ has joined #openstack-glance20:46
*** sskripnick has joined #openstack-glance20:58
*** btully has quit IRC21:10
*** btully has joined #openstack-glance21:10
*** btully has quit IRC21:33
*** btully has joined #openstack-glance21:34
*** bpokorny has quit IRC21:40
*** dims_ has quit IRC21:44
*** ayoung has quit IRC21:44
*** dims has joined #openstack-glance21:46
*** dshakhray__ has quit IRC22:01
*** achanda has joined #openstack-glance22:13
*** ducttape_ has quit IRC22:14
*** sskripnick has quit IRC22:45
*** sskripnick1 has joined #openstack-glance22:45
*** ducttape_ has joined #openstack-glance22:50
*** sskripnick1 has quit IRC22:53
*** harshs has joined #openstack-glance22:54
*** harshs has quit IRC22:54
*** harshs has joined #openstack-glance23:00
*** harshs has quit IRC23:06
*** harshs has joined #openstack-glance23:15
*** achanda has quit IRC23:17
*** ducttape_ has quit IRC23:30
*** btully has quit IRC23:38
*** btully has joined #openstack-glance23:40
*** anush_ has quit IRC23:46
*** ducttape_ has joined #openstack-glance23:47
*** ducttape_ has quit IRC23:53
*** achanda has joined #openstack-glance23:58

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