*** gouthamr has quit IRC | 00:48 | |
*** larainema has quit IRC | 00:58 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/os-client-config master: Updated from global requirements https://review.openstack.org/491294 | 01:22 |
---|---|---|
*** larainema has joined #openstack-shade | 02:55 | |
*** gkadam has joined #openstack-shade | 03:33 | |
*** slaweq has joined #openstack-shade | 04:25 | |
*** slaweq has quit IRC | 04:30 | |
*** rods has quit IRC | 04:57 | |
*** slaweq has joined #openstack-shade | 05:26 | |
*** slaweq has quit IRC | 05:31 | |
*** yfried has joined #openstack-shade | 05:54 | |
*** slaweq has joined #openstack-shade | 06:33 | |
*** slaweq has quit IRC | 06:35 | |
*** slaweq has joined #openstack-shade | 07:52 | |
*** slaweq has quit IRC | 07:55 | |
*** slaweq has joined #openstack-shade | 08:14 | |
*** ioggstream has joined #openstack-shade | 08:22 | |
*** TheJulia has quit IRC | 08:47 | |
*** slaweq has quit IRC | 08:47 | |
*** thingee has quit IRC | 08:47 | |
*** kong has quit IRC | 08:47 | |
*** Shrews has quit IRC | 08:47 | |
*** larainema has quit IRC | 08:47 | |
*** jamielennox has quit IRC | 08:47 | |
*** yfried has quit IRC | 08:47 | |
*** olaph has quit IRC | 08:47 | |
*** zigo has quit IRC | 08:47 | |
*** spredzy has quit IRC | 08:47 | |
*** yolanda has quit IRC | 08:47 | |
*** DuncanT has quit IRC | 08:47 | |
*** lastmikoi has quit IRC | 08:47 | |
*** jlk has quit IRC | 08:47 | |
*** dhellmann has quit IRC | 08:47 | |
*** SamYaple has quit IRC | 08:47 | |
*** ioggstream has quit IRC | 08:47 | |
*** gkadam has quit IRC | 08:47 | |
*** samueldmq has quit IRC | 08:47 | |
*** mgagne has quit IRC | 08:47 | |
*** mrhillsman has quit IRC | 08:47 | |
*** purplerbot has quit IRC | 08:47 | |
*** pleia2 has quit IRC | 08:47 | |
*** calebb has quit IRC | 08:47 | |
*** dtroyer has quit IRC | 08:47 | |
*** mordred has quit IRC | 08:47 | |
*** morgan has quit IRC | 08:47 | |
*** GheRivero has quit IRC | 08:47 | |
*** openstackgerrit has quit IRC | 08:47 | |
*** rcarrillocruz has quit IRC | 08:47 | |
*** ChanServ has quit IRC | 08:47 | |
*** cmurphy has quit IRC | 08:47 | |
*** melwitt has quit IRC | 08:47 | |
*** openstack has joined #openstack-shade | 13:52 | |
*** openstack has joined #openstack-shade | 13:52 | |
*** ioggstream has quit IRC | 14:27 | |
*** ioggstream has joined #openstack-shade | 14:27 | |
*** slaweq_ has joined #openstack-shade | 14:35 | |
*** slaweq_ has quit IRC | 14:40 | |
*** gouthamr has joined #openstack-shade | 14:47 | |
openstackgerrit | David Shrewsbury proposed openstack-infra/shade master: DNM: Ignore https://review.openstack.org/490948 | 15:28 |
openstackgerrit | David Shrewsbury proposed openstack-infra/shade master: DNM: Ignore https://review.openstack.org/490948 | 15:29 |
openstackgerrit | David Shrewsbury proposed openstack-infra/shade master: DNM: Ignore https://review.openstack.org/490948 | 15:33 |
*** slaweq_ has joined #openstack-shade | 15:37 | |
openstackgerrit | David Shrewsbury proposed openstack-infra/shade master: DNM: Ignore https://review.openstack.org/490948 | 15:37 |
*** slaweq_ has quit IRC | 15:41 | |
*** slaweq_ has joined #openstack-shade | 15:57 | |
SamYaple | can shade be configured with a persistent cache? | 16:03 |
pabelanger | ya, it has dogpile.cache support | 16:10 |
SamYaple | i thought so | 16:20 |
SamYaple | thanks | 16:20 |
*** slaweq_ has quit IRC | 16:34 | |
*** slaweq_ has joined #openstack-shade | 16:35 | |
*** slaweq_ has quit IRC | 16:38 | |
*** slaweq_ has joined #openstack-shade | 16:39 | |
mordred | SamYaple: it's not 100% complete - fleshing it out further is on the todo-list | 16:40 |
SamYaple | mordred: the extent i need it for is to preserve an `openstack domain/project/user list` between salt state/ansible playbook runs so it doesn't have to do a list before adding a domain/project/user multiple times in a single run | 16:44 |
SamYaple | is it at that level? | 16:44 |
mordred | SamYaple: yes indeed | 16:48 |
SamYaple | awesome! im writting the salt modules now, just need to justify replacing the internal one with this one to continue working on it | 16:48 |
SamYaple | caching was the last step | 16:48 |
mordred | SamYaple: https://github.com/openstack-infra/shade/blob/master/shade/openstackcloud.py#L312 is where we generate cache keys | 16:49 |
SamYaple | ++ | 16:53 |
mordred | SamYaple: it's a smidge involved - but it's basically "{cloud_name}:','.join(args):'%s:%s' % (k, kwargs[k]) for k in kw_keys if k != 'cache'" | 16:53 |
mordred | SamYaple: it strikes me that there is a bug here in that it's not including region_name which it should | 16:54 |
SamYaple | in my case, that shouldn't affect me. this will be single region runs. but im glad you caught it | 16:54 |
SamYaple | im really looking for basic level caching which seems to be in place | 16:55 |
mordred | SamYaple: you may need to add @_utils.cache_on_arguments() decorator to OperatorCloud:list_domains | 16:56 |
SamYaple | ok. ill let you know when i get there. if im reading the way you do this correctly, it should be fairly simple to cache anything | 16:57 |
mordred | yah. it should be | 16:57 |
mordred | SamYaple: beware we'll be caching AFTER shade normalization - that should not break you in this case, but it's worth noting anyway | 16:59 |
mordred | SamYaple: also - at some point someone was talking about using shade for salt too ... you might have been one of those people :) | 16:59 |
SamYaple | indeed. this is official salt module that im talking about | 16:59 |
mordred | woot | 17:00 |
*** rods has joined #openstack-shade | 17:24 | |
*** gkadam has joined #openstack-shade | 17:36 | |
*** yfried has joined #openstack-shade | 18:10 | |
*** gkadam has quit IRC | 18:38 | |
*** morgan is now known as kmalloc | 18:46 | |
*** ioggstream has quit IRC | 18:49 | |
*** ioggstream has joined #openstack-shade | 18:49 | |
*** jeblair has joined #openstack-shade | 18:50 | |
*** slaweq__ has joined #openstack-shade | 18:57 | |
*** slaweq_ has quit IRC | 18:57 | |
*** slaweq_ has joined #openstack-shade | 19:13 | |
*** slaweq__ has quit IRC | 19:15 | |
*** ioggstream has quit IRC | 19:19 | |
*** ioggstream has joined #openstack-shade | 19:19 | |
*** yfried has quit IRC | 19:25 | |
*** rods_ has joined #openstack-shade | 19:32 | |
*** rods has quit IRC | 19:32 | |
*** ioggstream has quit IRC | 19:33 | |
*** slaweq_ has quit IRC | 20:10 | |
*** slaweq_ has joined #openstack-shade | 20:14 | |
*** slaweq__ has joined #openstack-shade | 20:28 | |
*** slaweq_ has quit IRC | 20:31 | |
*** slaweq_ has joined #openstack-shade | 21:00 | |
*** slaweq__ has quit IRC | 21:04 | |
*** rods_ has quit IRC | 21:23 | |
*** rods has joined #openstack-shade | 21:25 | |
*** slaweq_ has quit IRC | 21:36 | |
*** gouthamr has quit IRC | 21:52 | |
*** ioggstream has joined #openstack-shade | 22:23 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!