Monday, 2013-12-16

*** ccs has joined #heat00:01
*** arbylee has quit IRC00:15
openstackgerritChmouel Boudjnah proposed a change to openstack/python-heatclient: Use jsonutils from oslo incubator  https://review.openstack.org/6225500:19
openstackgerritA change was merged to openstack/heat: Add support for network name for os::nova::Server  https://review.openstack.org/5979600:21
*** ccs has quit IRC00:30
*** gokrokve has joined #heat00:31
*** rongze has joined #heat00:31
SpamapSstevebaker: hey I skimmed your config status email.. looking pretty good.. still need to dig into the examples. :)00:32
SpamapSstevebaker: I really want that to land so I can port the tripleo heat templates to HOT :)00:32
SpamapSno more launchconfigs.. and users.. and blaaahh00:32
asalkeldyeah, I read - lots to digest00:32
asalkeldstevebaker, don't assume no one is reading00:33
*** gokrokve_ has joined #heat00:33
stevebakerSpamapS: I really need to go through the implications for the tripleo templates. On the plus side, no hook is required. On the minus side the top levels of the metadata format has changed. Now its {'namespace': [config1, config2, ...]}00:35
SpamapSstevebaker: that is really easy to adapt to00:35
SpamapSstevebaker: and falls in line with how occ wants things to work anyway00:36
stevebakergood00:36
asalkeldstevebaker, a concern i have is the inputs/outputs are not typed like the properties00:36
stevebakerthey are typed like parameters00:36
asalkeldreally?00:36
*** gokrokve has quit IRC00:36
asalkeldcool00:36
*** rongze has quit IRC00:37
stevebakerwell, you can define types, but nothing is done with that yet. http://docs-draft.openstack.org/79/58879/6/check/gate-heat-docs/af0731a/doc/build/html/template_guide/openstack.html#OS::Heat::SoftwareConfig inputs -> type00:38
stevebakerit may need to switch to something more parameters-like once we try to implement a hook for a CM tool with strong typing00:39
openstackgerritAngus Salkeld proposed a change to openstack/heat: Improve autoscaling error message  https://review.openstack.org/6160700:42
asalkeldstevebaker, can't the inputs just be the properties?00:42
*** arbylee has joined #heat00:42
stevebakerthe properties of what?00:42
asalkeldsoftware config00:42
*** alexheneveld has joined #heat00:43
asalkeldand we derive the attributes from the config content00:43
*** alexheneveld has quit IRC00:43
stevebakerhow would a template author define what properties they want for the config?00:44
asalkeldTemplateResource00:44
asalkeldactually00:44
asalkeldwhat I was really after was the no software config00:45
asalkeld(so when it is not a resource)00:45
asalkeldbut more of a template00:45
asalkeldI think that is better (but dones not invalidate your resource)00:46
asalkeldalso (a bit premature - I know) but we could store the config in glance00:47
*** ccs has joined #heat00:49
stevebakeryes, I think SoftwareConfig will be used mostly inside TemplateResource00:58
asalkeldstevebaker, any bright ideas on how to choose the crypto method? another config option?01:00
asalkeldthen we have 2 crypto techniques in the code - arg01:01
SpamapSisn't this why we have migrations?01:02
asalkeldSpamapS, so in the db migrate do a decrypt/new_encrypt01:04
*** nosnos has joined #heat01:05
*** gokrokve has joined #heat01:05
*** faramir has joined #heat01:06
openstackgerritA change was merged to openstack/heat: Update tox.ini to use new features  https://review.openstack.org/6080301:07
*** gokrokve_ has quit IRC01:08
openstackgerritA change was merged to openstack/heat: Utilize stack-lock for multi-engine support  https://review.openstack.org/5608001:11
stevebakerasalkeld: how about a new column flag for the encryption method, existing records use the old method, newly created stacks use the new one01:17
asalkeldor change redact from true/false to (0=no encrypt, 1=old encrypt, 2 = new encrypt)01:34
stevebakeroverload alert!01:36
asalkeldit would be ok, except it flips the logic01:36
SpamapSasalkeld: yeah. The other option is to support both, but IMO these are tiny and will likely convert rapidly.01:37
SpamapSOr is this somehow exposed in the API?01:37
asalkeldI'll try the migrate method first01:38
*** arbylee has quit IRC01:38
asalkeldseems the most obvious and easy way to deprecate01:38
*** fandikurnia01 has joined #heat01:44
*** rpothier__ has quit IRC01:47
stevebakeryou mean migrate old encrypted values to new encrypted values? That sounds scary unless you're writing to a new column01:47
asalkeldwhy?01:50
lifelessstevebaker: what makes it scary?01:50
stevebakerif migration fails halfway through, half of your stacks have lost secrets01:51
lifelesshow so?01:51
asalkeldthen you get the backup01:51
asalkeld:)01:51
stevebakerwell, I suppose you still have the decryption code01:51
lifelessisn't each row atomically updated?01:51
asalkeldI wouldn't upgrade with out a backup of the db01:51
lifelessasalkeld: busy clouds will have that but invoking it is a pile of fail01:52
stevebakeryou just have to attempt decryption with both methods to know which one works01:52
lifelessstevebaker: right01:52
asalkeldstevebaker, doing it at migration should mean you know?01:52
asalkeldbecause at one point all the data is the old encryption and after the migration it's all the new encryption01:53
stevebakerdo we need to allow live migration?01:54
lifelessyesss01:55
lifelesssilly question01:55
lifelessSpamapS: ^01:55
asalkeldmmm01:55
asalkeldwell then it's messier01:55
stevebakerwhy not a new encryption method column?01:56
asalkeldmaybe we need the new column after all01:57
asalkeldyip01:57
*** rpothier__ has joined #heat01:57
SpamapSAFAIK, only engine talks to the db in this way, yes?01:59
*** fandikurnia01 has quit IRC01:59
SpamapSI'd test how fast you can migrate 10000 rows01:59
asalkeldyeah01:59
*** fandikurnia01 has joined #heat02:00
stevebakerdoesn't heat-manage connect direct to the db?02:00
asalkeldSpamapS, if I add a redact_method we don't need to migrate02:00
SpamapSIf it is < 5s on a reasonable machine.. do it all in one transaction. Engines should be able to be upgraded and respect the db schema version.02:00
asalkeldwe can just keep both around for a cycle02:00
stevebakershould saving a stack passively switch to the new encryption method for that stack?02:01
asalkeldSpamapS, what if the old crypt code then runs02:01
*** IlyaE has joined #heat02:01
asalkeldyou now have old encrypetd secrete02:01
asalkeldyou need to migrate the data and code atomically02:02
asalkeldnot so easy02:02
SpamapSasalkeld: upgrade engines -> old crypt stays and works but only because of db version. Upgrade database -> new crypt is now in effect.02:02
lifelessasalkeld: deployers can sequence the upgrade:02:02
lifeless 1) deploy new code02:02
lifeless 2) run db syn02:02
SpamapSright what he said02:02
* SpamapS runs off to airport02:02
lifelessthe only thing you need to do is make sure all the new code can run before the db sync is done02:03
asalkeldor we could start using nova objects02:03
asalkeldnasty magic code02:04
*** ccs has quit IRC02:06
openstackgerritA change was merged to openstack/python-heatclient: Deprecate mox in favor of mox3  https://review.openstack.org/6054702:06
openstackgerritA change was merged to openstack/heat: Allow docker plugin to run w/o deps  https://review.openstack.org/6119002:06
*** ccs has joined #heat02:09
lifelessasalkeld: thats an impl strategy for my point :)02:10
asalkeldsaying you like/dislike nova objects?02:11
*** liang has joined #heat02:11
*** ccs has quit IRC02:11
lifelessI don't know them well enough to have that sort of opinion02:11
lifelessthe basic strategy is sound AFAICT02:12
asalkeldyeah, need quite a bit of work to drag that in02:12
*** guohliu has joined #heat02:13
*** ccs has joined #heat02:19
*** erkules has quit IRC02:19
*** erkules_ has joined #heat02:19
*** rushiagr has joined #heat02:21
*** rongze has joined #heat02:23
*** rongze_ has joined #heat02:31
*** rongze has quit IRC02:33
*** ccs has quit IRC02:37
*** gokrokve has quit IRC02:41
*** gokrokve has joined #heat02:41
*** Alienyyg has joined #heat02:42
*** gokrokve has quit IRC02:46
openstackgerritA change was merged to openstack/heat: Remove unused dumps validation in JsonParam value  https://review.openstack.org/6077002:53
*** arbylee has joined #heat02:54
*** faramir has quit IRC03:00
*** rushiagr has quit IRC03:04
openstackgerritMitsuru Kanabuchi proposed a change to openstack/heat: Implements resource types OS::Neutron::NetworkGateway and OS::Neutron::NetworkGatewayConnection  https://review.openstack.org/6228703:08
sdakeis anything further needed for the multiengines blueprint?03:10
asalkeldnot sure03:10
sdakei'll catch up with jasond in the morning then03:11
sdakealmost got the speaker hung03:11
sdakenow time to assemble more ikea furniture03:11
sdakepretty sure the devil and ikea are in league03:11
asalkeldI just bought a cool speaker03:11
asalkeldmarshall :)03:12
*** gokrokve has joined #heat03:12
sdakenice03:12
sdakegot a soundbar for our tv setup in living room03:12
sdakeand bought a tv mounting bracket friday on amazon03:12
sdakethey delivered it saturday -> Robyn "get to work hanging!"03:12
asalkeldhttps://www.google.com.au/search?q=marshall+stanmore&tbm=isch&tbo=u&source=univ&sa=X&ei=rW-uUrXpDYvksASG_oGACg&ved=0CDUQsAQ&biw=1600&bih=76103:12
asalkeldnot huge, but awesome sound03:13
sdakeya those cats make good gear03:13
sdakebeen doing it for 60+ years03:13
sdakehope they would have it down by now :)03:13
asalkeldthe sound just cuts through the walls :)03:13
*** gokrokve_ has joined #heat03:13
*** rushiagr has joined #heat03:14
sdakeyou hook it up to your phone?03:14
asalkeldphone/tv/blue tooth/laptop03:15
sdakei asked robyn for this for christmas -> http://schiit.com/products/asgard-203:15
sdakepretty sure robyn wouldn't tolerate blaring music in the house during the workday ;-)03:16
*** gokrokve has quit IRC03:16
asalkeldlooks ok, we just wanted simple (speaker and amp in one)03:17
asalkeldand lots of inputs03:17
asalkeldand quality03:17
asalkeldchecks all those boxes03:17
sdakemy headphones are only 18 ohm, hard to find a compatible amp03:17
asalkeldyeah03:18
sdakesounds like garbage coming out of my computer output03:18
*** gokrokve_ has quit IRC03:18
sdakeoh well back to hanging, myself next03:19
sdakesee you tomororw guys :)03:19
asalkeldlater03:19
*** _Seal has joined #heat03:20
*** che-arne has quit IRC03:24
*** che-arne has joined #heat03:26
*** yogesh has joined #heat03:26
*** arbylee has joined #heat03:29
*** yogesh has quit IRC03:31
*** yogesh has joined #heat03:32
*** IlyaE has quit IRC03:33
*** vkozhukalov has joined #heat03:35
*** yogesh has quit IRC03:36
*** fandikurnia01 has quit IRC03:37
*** ccs has joined #heat03:38
*** ccs has quit IRC03:39
*** ccs has joined #heat03:44
*** rushiagr has quit IRC03:48
*** jergerber has joined #heat03:51
*** chandankumar has joined #heat03:56
*** jergerber has quit IRC03:57
*** slong has quit IRC04:00
*** ccs has quit IRC04:01
*** _Seal has quit IRC04:02
*** gokrokve has joined #heat04:05
*** arbylee has quit IRC04:18
*** sdake has quit IRC04:29
*** rushiagr has joined #heat04:32
*** rongze_ has quit IRC04:44
*** amritanshu_RnD has joined #heat04:48
*** arbylee has joined #heat04:48
*** spzala has quit IRC04:56
*** arbylee has quit IRC04:57
*** urulama has joined #heat04:58
*** faramir has joined #heat04:59
*** gokrokve has quit IRC05:07
*** gokrokve has joined #heat05:09
*** SergeyLukjanov has joined #heat05:11
*** ccs has joined #heat05:12
openstackgerritAngus Salkeld proposed a change to openstack/heat: Add support for multiple encryption methods  https://review.openstack.org/6229505:13
openstackgerritAngus Salkeld proposed a change to openstack/heat: oslo: add the crypto module  https://review.openstack.org/5968405:13
openstackgerritAngus Salkeld proposed a change to openstack/heat: Use oslo crypto  https://review.openstack.org/5968505:13
*** fandikurnia01 has joined #heat05:26
*** faramir has quit IRC05:29
*** gokrokve has quit IRC05:29
*** gokrokve has joined #heat05:30
*** faramir has joined #heat05:32
*** nosnos_ has joined #heat05:34
*** gokrokve has quit IRC05:34
*** rongze has joined #heat05:35
*** nosnos_ has quit IRC05:35
*** nosnos_ has joined #heat05:36
*** nosnos has quit IRC05:37
*** rongze has quit IRC05:41
*** erkules_ is now known as erkules05:41
*** nkhare has joined #heat05:43
*** Adri2000 has quit IRC05:47
*** IlyaE has joined #heat06:01
*** yogesh_ has joined #heat06:01
*** skraynev has joined #heat06:06
*** vkozhukalov has quit IRC06:06
skraynevMorning06:06
openstackgerritJenkins proposed a change to openstack/heat: Imported Translations from Transifex  https://review.openstack.org/6132206:06
*** rongze has joined #heat06:08
*** SergeyLukjanov is now known as _SergeyLukjanov06:11
*** IlyaE has quit IRC06:14
*** _SergeyLukjanov is now known as SergeyLukjanov06:20
*** yogesh_ has quit IRC06:21
*** fandikurnia01 has quit IRC06:22
*** IlyaE has joined #heat06:22
*** IlyaE has quit IRC06:32
*** IlyaE has joined #heat06:33
*** IlyaE has quit IRC06:36
*** yogesh_ has joined #heat06:37
Alienyygmorning,skraynev06:41
*** _Seal has joined #heat06:44
*** _Seal has quit IRC06:44
*** SushilKM has joined #heat06:44
*** rushiagr has quit IRC06:44
*** arbylee has joined #heat06:54
*** arbylee has quit IRC06:58
*** funzo has quit IRC06:59
*** nosnos has joined #heat06:59
*** nosnos_ has quit IRC06:59
skraynevhi, Alienyyg)07:03
*** rushiagr has joined #heat07:16
Alienyygskraynev:  I have a zombie stack ,and can not be deleted ,it status keep " delete in progress" , this just happen after I reboot the controller, how can I delete it ?07:21
skraynevAlienyyg: I only can guess: 1. delete all resources via related clients. 2. clear you heat db. 3. check that heat stack-list is empty07:24
*** bgorski has joined #heat07:25
*** lsmola has quit IRC07:26
Alienyygskraynev: I didn't find a CLI which can clear the db, login to mysql and clear the db manually is to dangerous07:29
skraynevAlienyyg: Unfortunately is's only way, that I could offer you(07:30
Alienyygskaynev: thanks,but  it does not matter if a zombie stack exits, I think. I will say" i can't see you, I can't see you.... " when I operate the stacks07:34
*** SushilKM has quit IRC07:44
*** osphy has joined #heat07:51
*** vkozhukalov has joined #heat07:53
*** SushilKM has joined #heat08:02
skraynevAlienyyg: )))08:08
*** che-arne has quit IRC08:16
*** guohliu has quit IRC08:26
openstackgerritChmouel Boudjnah proposed a change to openstack/python-heatclient: Show better error when json fail to parse template  https://review.openstack.org/6231108:30
*** lsmola has joined #heat08:31
shardymorning08:32
*** che-arne has joined #heat08:34
bgorskimorning08:37
*** pshchelo has joined #heat08:42
*** SergeyLukjanov has quit IRC08:46
*** TonyBurn has joined #heat08:53
*** arbylee has joined #heat08:54
openstackgerritPavlo Shchelokovskyy proposed a change to openstack/heat: Fix comparison with singletons  https://review.openstack.org/6144708:55
*** arbylee has quit IRC08:58
*** faramir has quit IRC08:59
*** tomek_adamczewsk has joined #heat09:02
openstackgerritAngus Salkeld proposed a change to openstack/heat: Use oslo crypto  https://review.openstack.org/5968509:05
openstackgerritAngus Salkeld proposed a change to openstack/heat: Add support for multiple encryption methods  https://review.openstack.org/6229509:05
*** alexheneveld has joined #heat09:08
*** derekh has joined #heat09:17
*** ccs has quit IRC09:18
*** ccs has joined #heat09:21
*** faramir has joined #heat09:22
*** aignatov has joined #heat09:25
*** aignatov has quit IRC09:25
openstackgerritAndrey Kurilin proposed a change to openstack/python-heatclient: Sync base and exceptions from oslo  https://review.openstack.org/6199109:25
*** pshchelo has quit IRC09:26
*** aignatov has joined #heat09:26
*** liang has quit IRC09:32
*** giulivo has joined #heat09:32
*** akuznetsov has quit IRC09:33
*** che-arne has quit IRC09:39
*** ccs has quit IRC09:40
openstackgerritJordan Pittier proposed a change to openstack/heat: Make endpoint_type configurable  https://review.openstack.org/5771709:43
*** che-arne has joined #heat09:45
openstackgerritA change was merged to openstack/heat: Convert [Cinder]Volume to new Schema format  https://review.openstack.org/6178209:46
Alienyygskyaynev, I have delete that zombie stack, it confused me, the reson is the change I did in /etc/heat/enviornment.d/default.yaml, after I change    #"AWS::CloudWatch::Alarm": "OS::Heat::CWLiteAlarm"09:46
Alienyygto   "file:///etc/heat/templates/AWS_CloudWatch_Alarm.yaml" and I got an error when I start a stack contain "AWS::CloudWatch::Alarm"09:46
Alienyygthe error is at http://paste.openstack.org/show/55040/09:47
openstackgerritA change was merged to openstack/heat: Enables db2 server disconnects to be handled pessimistically  https://review.openstack.org/5055209:49
openstackgerritA change was merged to openstack/heat: oslo: add the crypto module  https://review.openstack.org/5968409:50
*** giulivo has quit IRC09:52
*** bgorski has quit IRC09:52
*** yogesh_ has quit IRC09:52
*** larsks|phone_ has quit IRC09:52
*** john-n-seattle has quit IRC09:52
openstackgerritA change was merged to openstack/heat: Fix stack_get_by_name does not list nested stack issue  https://review.openstack.org/6132609:53
shardyAlienyyg: So you launched the stack, changed default.yaml, then tried to delete it?09:53
*** giulivo has joined #heat09:54
*** bgorski has joined #heat09:54
*** yogesh_ has joined #heat09:54
*** larsks|phone_ has joined #heat09:54
*** john-n-seattle has joined #heat09:54
therveCan someone tell me the point of stack_delete_after?09:56
shardytherve: To ensure the stack gets deleted from the DB if the test fails09:56
therveshardy, Why does it matter?09:57
shardytherve: because if tests create stacks with the same name, one failure makes them all fail09:57
therveHuml09:57
therveI'm pretty sure I'm reusing names and it doesn't break09:59
shardytherve: It won't break until one of the tests fails part way through and doesn't delete the stack before the next test runs09:59
therveshardy, But if I don't delete the stack at all?10:00
shardytherve: which test are we talking about?10:00
therveAll in test_neutron_loadbalancer for example10:00
shardyI think utils.setup_dummy_db may be providing a clean DB for each test10:02
shardypreviously, that was not the case in some (many/all) tests10:02
*** akuznetsov has joined #heat10:03
therveYeah I wonder10:04
shardyThere is reset_dummy_db, but it's not being triggered from the base HeatTestCase AFAICS10:05
*** rongze has quit IRC10:09
therveshardy, What provides unique names in a tenant?10:10
Alienyygshardy: after I change the default.yaml, I can delete the stack, BTW, the stack is created before the modification10:10
therveSo yeah nothing prevents me from recreating a stack with the same name if I don't use the EngineService10:14
shardytherve: Yeah the engine enforces it by raising a StackExists exception, which is mapped to a 409 in the API10:15
shardyAlienyyg: I think your failure is expected - we probably need to document that changing the global environment requires deleting all stacks affected by the resource redefinition10:16
shardyAlienyyg: A workaround would be to pass an environment file when creating the stack, so the resource mapping isn't affected by the change to default.yaml10:17
shardybut in general, I think the answer is "don't do that", as the default.yaml is expected to be a static configuration10:17
*** faramir has quit IRC10:19
Alienyygshardy: I won't change it ,as I cann't even launch a stack after the change :)10:19
*** SergeyLukjanov has joined #heat10:24
openstackgerritA change was merged to openstack/python-heatclient: Use jsonutils from oslo incubator  https://review.openstack.org/6225510:29
*** faramir has joined #heat10:32
*** rongze has joined #heat10:40
*** che-arne has quit IRC10:40
*** rongze has quit IRC10:45
*** rushiagr has quit IRC10:46
*** arbylee has joined #heat10:54
openstackgerritJordan Pittier proposed a change to openstack/heat: Make endpoint_type configurable  https://review.openstack.org/5771710:56
*** arbylee has quit IRC10:59
openstackgerritA change was merged to openstack/heat: Improve autoscaling error message  https://review.openstack.org/6160711:06
*** yogesh_ has quit IRC11:13
*** yogesh_ has joined #heat11:13
*** yogesh_ has quit IRC11:18
lsmolashardy: hello11:33
*** SushilKM has quit IRC11:34
shardylsmola: hi11:39
lsmolashardy: hello11:39
lsmolashardy: I have a quick question11:39
lsmolashardy: does heat template has some place where you can put some scripts that will be done after heat stack-create11:40
lsmolashardy: look e.g. to step 13 http://docs.openstack.org/developer/tripleo-incubator/devtest_overcloud.html11:41
lsmolashardy: I wonder what operations should be packed into template and what should be separated11:42
shardylsmola: It depends on what you mean by "after heat stack-create"11:44
shardymost of the scripts which are run via UserData are run when the stack create is in progres (when we create the resource)11:44
shardybut it is possible to update the configuration subsequently using cfn-hup, or os-collect-config/os-apply-config, which read updated resource Metadata and apply it11:45
*** zaneb has quit IRC11:49
*** SergeyLukjanov has quit IRC11:51
lsmolashardy: hmm ok11:51
*** SergeyLukjanov has joined #heat11:52
lsmolashardy: I just wonder whether this kind of initialization belongs to heat template11:52
lsmolashadower: or (os-..)11:52
lsmolashadower: sorry, typo11:52
openstackgerritPavlo Shchelokovskyy proposed a change to openstack/python-heatclient: Allow the environment file to be specified via URL  https://review.openstack.org/6204411:53
*** aignatov has quit IRC11:53
lsmolashardy: or as a separate API call we call after the heat stack-create11:53
shardylsmola: If it was me, I'd be looking to put everything into the template, but really I don't have enough information about what you're trying to do11:54
lsmolashardy: well it's an initialization of the openstack application11:54
lsmolashardy: which I believe belongs to heat template11:54
*** urulama_ has joined #heat11:54
lsmolashardy: as it is important part of the deployment11:55
*** urulama has quit IRC11:55
lsmolashardy: good thing is, there are places where to put it, now there should be a conversation about that11:56
*** Adri2000 has joined #heat11:58
openstackgerritA change was merged to openstack/heat: Imported Translations from Transifex  https://review.openstack.org/6132212:00
*** zaneb has joined #heat12:01
*** ifarkas has joined #heat12:02
*** aignatov has joined #heat12:05
*** chmouel has joined #heat12:12
*** aignatov has quit IRC12:17
*** aignatov has joined #heat12:17
*** faramir has quit IRC12:18
*** rushiagr has joined #heat12:22
*** urulama_ has quit IRC12:27
*** aignatov has quit IRC12:28
*** rpothier__ has quit IRC12:31
*** nkhare has quit IRC12:32
*** aignatov has joined #heat12:37
*** alexheneveld has quit IRC12:41
*** rongze has joined #heat12:41
*** alexheneveld has joined #heat12:43
*** rongze has quit IRC12:46
*** nosnos has quit IRC12:47
openstackgerritAndrey Kurilin proposed a change to openstack/python-heatclient: Reuse BaseManager and Resource from oslo.  https://review.openstack.org/6234812:51
*** tomek_adamczewsk has quit IRC13:02
openstackgerritChmouel Boudjnah proposed a change to openstack/heat: Don't pass swift headers as None  https://review.openstack.org/6219913:04
*** tomek_adamczewsk has joined #heat13:10
*** rpothier__ has joined #heat13:23
openstackgerritChmouel Boudjnah proposed a change to openstack/heat: use builtin bash getopts  https://review.openstack.org/6235913:24
*** dims has quit IRC13:26
*** amritanshu_RnD has quit IRC13:26
*** rushiagr has quit IRC13:30
*** radez_g0n3 is now known as radez13:32
*** dims has joined #heat13:35
openstackgerritJordan Pittier proposed a change to openstack/heat: Make endpoint_type configurable  https://review.openstack.org/5771713:35
openstackgerritAndrey Kurilin proposed a change to openstack/python-heatclient: Reuse BaseManager and Resource from oslo  https://review.openstack.org/6234813:35
openstackgerritAndrey Kurilin proposed a change to openstack/python-heatclient: Sync base and exceptions from oslo  https://review.openstack.org/6199113:35
*** jamieh has joined #heat13:35
*** john-n-seattle1 has joined #heat13:46
*** zigo has quit IRC13:55
*** zigo has joined #heat14:00
*** alexheneveld has quit IRC14:02
*** che-arne has joined #heat14:09
*** rongze has joined #heat14:12
*** spzala has joined #heat14:18
*** bgorski has quit IRC14:20
*** rustlebee is now known as russellb14:22
*** mestery_ is now known as mestery14:22
*** john-n-seattle1 has quit IRC14:23
*** vkozhukalov has quit IRC14:23
*** denis_makogon has quit IRC14:23
*** pasquier-s has quit IRC14:23
*** asalkeld has quit IRC14:23
*** sdake_ has quit IRC14:23
*** SergeyLukjanov is now known as _SergeyLukjanov14:24
*** giulivo has quit IRC14:24
*** bgorski has joined #heat14:24
*** _SergeyLukjanov has quit IRC14:24
*** tomek_adamczewsk has quit IRC14:24
*** jcru has joined #heat14:24
*** giulivo has joined #heat14:25
*** alexheneveld has joined #heat14:26
*** vodorezov has joined #heat14:27
*** tomek_adamczewsk has joined #heat14:28
*** pasquier-s has joined #heat14:30
*** sdake_ has joined #heat14:30
*** asalkeld has joined #heat14:30
*** vkozhukalov has joined #heat14:30
*** denis_makogon has joined #heat14:30
*** openstackgerrit has quit IRC14:31
*** openstackgerrit has joined #heat14:31
*** john-n-seattle1 has joined #heat14:32
*** sdake_ has quit IRC14:35
*** sdake_ has joined #heat14:35
*** vodorezov has quit IRC14:37
*** rushiagr has joined #heat14:38
*** jasond has joined #heat14:41
sdake_jasond ping re multi engines14:41
jasondsdake_: hey14:42
sdake_hey - so is all the code in for multi-engines now?14:42
sdake_or does more work need to be done?14:42
openstackgerritSergey Kraynev proposed a change to openstack/heat: Implement neutron metering resources  https://review.openstack.org/6237814:42
jasondsdake_: yep, looks like it14:42
sdake_nice work - know its been a rough slog :)14:43
jasondthanks!  :)14:43
*** pshchelo has joined #heat14:43
skraynevjasond, sdake_: What is about 2 other section in BP? I mean: "add alarming to ceilometer" and "remove heat's watcher task"14:45
skraynevOr multi-engine currently is available for using?14:45
shardyskraynev: Alarming was added to ceilometer for Havana, and the heat watcher task is now optional, because you can use Ceilometer alarms instead14:46
skraynevshardy: Yep, I know about it. May be update status in BP? Because it seems very confused.14:47
*** tomek_adamczewsk has quit IRC14:49
*** jasond has quit IRC14:49
*** jasond has joined #heat14:49
*** alcabrera has joined #heat14:50
*** alcabrera has left #heat14:50
*** AndrewMichalik has joined #heat14:53
*** tims has joined #heat14:57
sdake_radix around?14:58
*** pfreund has joined #heat15:00
openstackgerritZhiQiang Fan proposed a change to openstack/python-heatclient: Supports bash_completion for heatclient  https://review.openstack.org/6214415:04
*** funzo has joined #heat15:05
*** brint has joined #heat15:05
openstackgerritThomas Herve proposed a change to openstack/heat: Remove useless validate methods  https://review.openstack.org/6239415:06
*** che-arne has quit IRC15:07
openstackgerritJason Dunsmore proposed a change to openstack/heat: Validate number of instance metadata entries  https://review.openstack.org/6186415:07
*** sjmc has joined #heat15:08
*** rpothier_ has joined #heat15:11
*** tims has quit IRC15:12
*** mestery_ has joined #heat15:14
*** plomakin_ has joined #heat15:14
*** akuznetsov has quit IRC15:14
*** sirushti has quit IRC15:14
*** plomakin has quit IRC15:14
*** asalkeld has quit IRC15:14
*** rpothier__ has quit IRC15:14
*** akuznets_ has joined #heat15:14
*** asalkeld has joined #heat15:15
*** nkhare has joined #heat15:15
*** bvandenh has quit IRC15:17
*** tomek_adamczewsk has joined #heat15:17
*** sirushti has joined #heat15:17
*** SergeyLukjanov has joined #heat15:17
*** mestery has quit IRC15:17
*** SushilKM has joined #heat15:18
openstackgerritA change was merged to openstack/heat: Add oslo mock fixture  https://review.openstack.org/6208615:19
*** che-arne has joined #heat15:20
radixsdake_: yo15:23
*** sabeen has joined #heat15:23
*** vkozhukalov has quit IRC15:23
*** pscheie_ has quit IRC15:27
pshchelois stevebaker around?15:29
sdake_radix was it a system76 workstation you got with linux preinstalled?15:29
sdake_pschelo try about 6 hours from now - he is in NZ15:29
pshchelook, thnx15:29
radixsdake_: yep, got a beefy box from them. also bought the xps13 developer edition from Dell.15:30
*** bvandenh has joined #heat15:30
sdake_did the xps13 have windows preinstalled, or were you able to get one without windows?15:30
*** gokrokve has joined #heat15:32
*** alexheneveld has quit IRC15:33
*** tomek_adamczewsk has quit IRC15:33
*** blamar has joined #heat15:35
radixthe developer edition comes with ubuntu15:36
*** john-n-seattle1 has quit IRC15:36
radixsorry, was afk15:36
*** randallburt has joined #heat15:36
*** randallburt has joined #heat15:37
*** jergerber has joined #heat15:37
*** jergerber has quit IRC15:37
*** jergerber has joined #heat15:37
sdake_i want a SFF workstation - but they don't seem to come with linux15:37
sdake_guess I'll have to get a custom quote from our dell guy15:37
sdake_just wondering if there was an easier way :)15:38
*** rcleere has joined #heat15:38
*** jergerber has quit IRC15:39
*** zigo has quit IRC15:39
*** zaneb has quit IRC15:39
*** Adri2000 has quit IRC15:39
*** larsks|phone_ has quit IRC15:39
*** john-n-seattle has quit IRC15:39
radixwell, system76 does some small form factors too15:41
*** SushilKM has quit IRC15:43
*** zaneb has joined #heat15:44
*** pscheie__ has joined #heat15:44
*** tims has joined #heat15:44
*** zigo has joined #heat15:44
*** Adri2000 has joined #heat15:44
*** larsks|phone_ has joined #heat15:44
*** john-n-seattle has joined #heat15:44
*** topol has joined #heat15:45
*** spzala_ has joined #heat15:46
SpamapSsdake_: http://h71028.www7.hp.com/enterprise/cache/321117-0-0-0-121.html ... we have lots of options :)15:48
*** TonyBurn1 has joined #heat15:48
*** metabro_ has joined #heat15:49
*** nkhare_ has joined #heat15:51
*** mtaylor has joined #heat15:51
*** john-n-seattle1 has joined #heat15:52
*** dmakogon_ has joined #heat15:52
*** lsmola_ has joined #heat15:52
*** sdake_ has quit IRC15:53
*** TonyBurn_ has quit IRC15:54
*** metabro has quit IRC15:54
*** mordred has quit IRC15:55
*** nkhare has quit IRC15:56
*** denis_makogon has quit IRC15:56
*** pasquier-s has quit IRC15:56
*** spzala has quit IRC15:56
*** lsmola has quit IRC15:56
*** john-n-seattle1 has left #heat15:57
*** alexheneveld has joined #heat15:58
*** pasquier-s has joined #heat15:59
*** nkhare_ has quit IRC16:02
*** derekh has quit IRC16:03
*** osphy has quit IRC16:03
*** sdake has joined #heat16:03
*** sdake has quit IRC16:03
*** sdake has joined #heat16:03
*** derekh has joined #heat16:04
*** pfreund has quit IRC16:04
openstackgerritPablo Andres Fuente proposed a change to openstack/heat: WaitCondition Count property is now updatable  https://review.openstack.org/6121816:05
*** mestery_ is now known as mestery16:05
*** pfreund has joined #heat16:05
*** dmakogon_ is now known as denis_makogon16:09
*** akuznetsov has joined #heat16:13
openstackgerritZane Bitter proposed a change to openstack/heat: Use property name constants in Ceilometer alarm  https://review.openstack.org/6241316:16
*** chandankumar has quit IRC16:17
*** sdake has quit IRC16:18
*** mtaylor has quit IRC16:18
*** metabro_ has quit IRC16:18
*** shardy has quit IRC16:18
*** Daviey has quit IRC16:18
*** chmouel has quit IRC16:18
*** jomara has quit IRC16:18
*** radix has quit IRC16:18
*** zaneb has quit IRC16:18
*** pscheie__ has quit IRC16:18
*** tims has quit IRC16:18
*** zigo has quit IRC16:18
*** Adri2000 has quit IRC16:18
*** larsks|phone_ has quit IRC16:18
*** john-n-seattle has quit IRC16:18
*** jpeeler has quit IRC16:18
*** pleia2 has quit IRC16:18
*** al-maisan has quit IRC16:18
*** SpamapS has quit IRC16:18
*** scroiset_ has quit IRC16:18
*** hub_cap has quit IRC16:18
*** lazzurs has quit IRC16:18
*** derekh has quit IRC16:18
*** blamar has quit IRC16:18
*** SergeyLukjanov has quit IRC16:18
*** akuznets_ has quit IRC16:18
*** brint has quit IRC16:18
*** pshchelo has quit IRC16:18
*** fsargent has quit IRC16:18
*** stevebaker has quit IRC16:18
*** Daviey_ has joined #heat16:21
*** metabro_ has joined #heat16:21
*** chmouel has joined #heat16:21
*** derekh has joined #heat16:21
*** john-n-seattle has joined #heat16:21
*** larsks|phone_ has joined #heat16:21
*** Adri2000 has joined #heat16:21
*** zigo has joined #heat16:21
*** tims has joined #heat16:21
*** pscheie__ has joined #heat16:21
*** zaneb has joined #heat16:21
*** blamar has joined #heat16:21
*** brint has joined #heat16:21
*** jpeeler has joined #heat16:21
*** jomara has joined #heat16:21
*** pleia2 has joined #heat16:21
*** al-maisan has joined #heat16:21
*** SpamapS has joined #heat16:21
*** scroiset_ has joined #heat16:21
*** fsargent has joined #heat16:21
*** hub_cap has joined #heat16:21
*** stevebaker has joined #heat16:21
*** radix has joined #heat16:21
*** lazzurs has joined #heat16:21
*** swygue has joined #heat16:21
*** sergmelikyan has quit IRC16:22
*** sdake has joined #heat16:23
*** aignatov has quit IRC16:23
*** Daviey_ has quit IRC16:23
*** Daviey_ has joined #heat16:23
*** Daviey_ is now known as Daviey16:24
*** lsmola_ has quit IRC16:24
*** mtaylor has joined #heat16:25
*** jergerber has joined #heat16:26
*** rushiagr has quit IRC16:26
*** rwsu_ has joined #heat16:26
*** dims has quit IRC16:27
*** rwsu has quit IRC16:27
*** gondoi has quit IRC16:27
*** rushiagr has joined #heat16:27
*** TonyBurn has quit IRC16:28
openstackgerritTim Schnell proposed a change to openstack/heat: Adds Parameter Label to HOT spec and parameter schema  https://review.openstack.org/6241816:28
*** gondoi has joined #heat16:30
*** giulivo has quit IRC16:30
*** giulivo has joined #heat16:31
*** ifarkas has quit IRC16:34
*** dims has joined #heat16:34
*** pfreund has quit IRC16:40
*** topol_ has joined #heat16:48
*** topol has quit IRC16:50
*** topol_ is now known as topol16:50
*** dmueller has joined #heat16:52
*** SushilKM has joined #heat16:54
*** dmueller has quit IRC17:02
*** akuznetsov has quit IRC17:02
*** pfreund has joined #heat17:12
*** radix_ has joined #heat17:15
*** nkhare has joined #heat17:16
*** rocigar has joined #heat17:18
*** rocigar has quit IRC17:19
*** ocrazy has joined #heat17:22
*** ocrazy has quit IRC17:26
openstackgerritPablo Andres Fuente proposed a change to openstack/heat: WaitCondition Count property is now updatable  https://review.openstack.org/6121817:26
*** pvaneck has joined #heat17:27
*** vijendar has joined #heat17:29
*** bvandenh has quit IRC17:29
*** pablosan has joined #heat17:29
*** shardy has joined #heat17:30
openstackgerritZane Bitter proposed a change to openstack/heat: Convert Neutron resources to new Schema format  https://review.openstack.org/6182317:32
*** derekh has quit IRC17:35
*** pfreund has quit IRC17:41
*** aignatov has joined #heat17:41
*** denis_makogon has quit IRC17:42
*** vkozhukalov has joined #heat17:42
*** denis_makogon has joined #heat17:42
*** harlowja_away is now known as harlowja17:53
*** SergeyLukjanov has joined #heat17:54
*** AndrewMichalik has quit IRC17:56
*** akuznetsov has joined #heat17:57
stevebakermorning17:59
shardyhey stevebaker18:00
*** arbylee has joined #heat18:00
stevebakerI'm about to drive to the in-laws, so will be offline for a couple of hours18:01
openstackgerritZane Bitter proposed a change to openstack/heat: Add a schema for the AWS::EC2::Instance Volumes property  https://review.openstack.org/6243418:05
openstackgerritZane Bitter proposed a change to openstack/heat: Convert Instance to new Schema format  https://review.openstack.org/6178018:05
sdakeenjoy the drive stevebaker18:06
sdakebtw, up early :)18:06
*** AndrewMichalik has joined #heat18:08
*** andersonvom has joined #heat18:09
*** SergeyLukjanov has quit IRC18:10
*** SergeyLukjanov has joined #heat18:12
*** alexheneveld has quit IRC18:12
*** yogesh has joined #heat18:13
*** nkhare has quit IRC18:14
*** jamieh has quit IRC18:15
openstackgerritSteven Hardy proposed a change to openstack/heat: Correct create_trust_context docstring  https://review.openstack.org/6243618:17
openstackgerritSteven Hardy proposed a change to openstack/heat: Add sanity check to ensure user_id can be trusted  https://review.openstack.org/6243718:17
openstackgerritSteven Hardy proposed a change to openstack/heat: Convert stored trust_id to service_trust_id  https://review.openstack.org/6243818:17
openstackgerritSteven Hardy proposed a change to openstack/heat: Add initial support for instance_auth_method  https://review.openstack.org/6243918:17
openstackgerritSteven Hardy proposed a change to openstack/heat: SignalResponder store access/secret in resource data  https://review.openstack.org/6244018:17
openstackgerritSteven Hardy proposed a change to openstack/heat: heat_keystoneclient revise get_ec2_keypair  https://review.openstack.org/6244118:17
shardytherve: FYI that's the first batch of instance-user patches we discussed last week18:17
shardymore coming tomorrow ;)18:18
*** ccs has joined #heat18:19
openstackgerritSteven Hardy proposed a change to openstack/heat: Convert stored trust_id to service_trust_id  https://review.openstack.org/6243818:21
openstackgerritSteven Hardy proposed a change to openstack/heat: Add initial support for instance_auth_method  https://review.openstack.org/6243918:21
openstackgerritSteven Hardy proposed a change to openstack/heat: SignalResponder store access/secret in resource data  https://review.openstack.org/6244018:21
openstackgerritSteven Hardy proposed a change to openstack/heat: heat_keystoneclient revise get_ec2_keypair  https://review.openstack.org/6244118:21
*** sqlautmn has joined #heat18:27
*** cody-somerville has joined #heat18:28
*** cody-somerville has quit IRC18:28
*** cody-somerville has joined #heat18:28
*** sqlautmn has quit IRC18:30
*** walton has joined #heat18:33
*** walton has quit IRC18:33
*** SushilKM has quit IRC18:36
*** rongze has quit IRC18:41
*** downintel has joined #heat18:47
*** rushiagr has quit IRC18:47
*** downintel has quit IRC18:49
openstackgerritPablo Andres Fuente proposed a change to openstack/heat: EventService exception handling to not log errors  https://review.openstack.org/6244618:53
*** IlyaE has joined #heat18:54
*** zombiex has joined #heat18:55
*** alexheneveld has joined #heat18:58
openstackgerritZane Bitter proposed a change to openstack/heat: Use property name constants in CinderVolume  https://review.openstack.org/6244919:01
*** zombiex has quit IRC19:02
*** gokrokve has quit IRC19:04
*** gokrokve has joined #heat19:04
*** SushilKM has joined #heat19:05
*** randallburt has quit IRC19:08
*** gokrokve has quit IRC19:08
openstackgerritZane Bitter proposed a change to openstack/heat: Use property name constants in CinderVolume  https://review.openstack.org/6244919:09
openstackgerritZane Bitter proposed a change to openstack/heat: Convert [Cinder]VolumeAttachment to new Schema format  https://review.openstack.org/6178319:09
*** sdake_ has joined #heat19:10
*** sdake_ has quit IRC19:15
*** sdake has quit IRC19:15
openstackgerritZane Bitter proposed a change to openstack/heat: rackspace: Convert Scaling resources to new Schema format  https://review.openstack.org/6182719:20
*** sdake has joined #heat19:23
*** sdake has quit IRC19:23
*** sdake has joined #heat19:23
*** gokrokve has joined #heat19:24
*** sdake_ has joined #heat19:26
*** brint has quit IRC19:32
openstackgerritZane Bitter proposed a change to openstack/heat: rackspace: Convert CloudLoadBalancer to new Schema format  https://review.openstack.org/6182819:34
*** randallburt has joined #heat19:45
*** randallburt1 has joined #heat19:46
*** bnemec_ has joined #heat19:48
*** bnemec has quit IRC19:49
openstackgerritZane Bitter proposed a change to openstack/heat: Convert Neutron resources to new Schema format  https://review.openstack.org/6182319:49
*** randallburt has quit IRC19:50
*** denis_makogon has quit IRC19:58
*** denis_makogon has joined #heat19:58
*** tomek_adamczewsk has joined #heat19:59
*** SushilKM has quit IRC20:02
openstackgerritZane Bitter proposed a change to openstack/heat: Add a schema for the AWS::EC2::Instance Volumes property  https://review.openstack.org/6243420:02
openstackgerritZane Bitter proposed a change to openstack/heat: Convert Instance to new Schema format  https://review.openstack.org/6178020:02
*** brint has joined #heat20:02
*** tomek_adamczewsk has quit IRC20:03
*** tomek_adamczewsk has joined #heat20:04
*** brint has quit IRC20:07
*** AndrewMichalik has quit IRC20:13
*** tomek_adamczewsk has quit IRC20:13
*** tomek_adamczewsk has joined #heat20:14
*** brint has joined #heat20:15
*** dims has quit IRC20:28
*** sabeen has left #heat20:29
*** pshchelo has joined #heat20:30
*** tomek_adamczewsk has quit IRC20:31
*** dims has joined #heat20:32
pshchelohi all, is stevebaker here?20:32
randallburt1pshchelo: I think he's traveling atm20:33
*** randallburt1 is now known as randallburt20:33
*** tomek_adamczewsk has joined #heat20:34
pshchelothen may be someone can answer my workflow process. I would like to implement a blueprint that is not currently assigned to anybody (bp/cancel-update-stack).20:35
pshcheloHow can I get it assigned to me?20:35
randallburtpshchelo:  if you're logged in, you should be able to assign it to yourself, IIRC20:36
zanebpshchelo: I just assigned it to you :)20:37
zanebI suspect that maybe only heat-drivers folks can do that20:37
randallburtzaneb:  thanks, I was still trying to find it :)20:38
pshchelothanks! yes, that20:38
*** tomek_adamczewsk has quit IRC20:38
*** tomek_adamczewsk has joined #heat20:39
jasondpshchelo: please keep multi-engine scenarios in mind while you're working on that :)20:40
*** aignatov has quit IRC20:41
pshchelojasond, will try :)20:41
openstackgerritZane Bitter proposed a change to openstack/heat: Convert Server to new Schema format  https://review.openstack.org/6178620:41
*** bgorski has quit IRC20:46
openstackgerritZane Bitter proposed a change to openstack/heat: Use property name constants in CinderVolume  https://review.openstack.org/6244920:47
openstackgerritZane Bitter proposed a change to openstack/heat: Convert [Cinder]VolumeAttachment to new Schema format  https://review.openstack.org/6178320:47
*** tomek_adamczewsk has quit IRC20:49
*** nati_ueno has joined #heat20:52
*** AndrewMichalik has joined #heat20:52
*** pshchelo has quit IRC20:53
openstackgerritZane Bitter proposed a change to openstack/heat: rackspace: Convert resources to new Schema format  https://review.openstack.org/6183420:54
*** bridavis has joined #heat21:02
*** radez is now known as radez_g0n321:04
*** openstackgerrit has quit IRC21:08
*** openstackgerrit has joined #heat21:08
*** denis_makogon has quit IRC21:09
*** dmakogon_ has joined #heat21:10
openstackgerritZane Bitter proposed a change to openstack/heat: Convert AWS network resources to new Schema format  https://review.openstack.org/6181821:14
*** blak111 has joined #heat21:20
*** radez_g0n3 is now known as radez21:20
blak111hi, a patch i authored is having trouble merging: https://review.openstack.org/#/c/41044/21:21
blak111This is the error in tempest: http://logs.openstack.org/44/41044/16/gate/gate-tempest-dsvm-postgres-full/965efb4/logs/screen-h-api.txt.gz21:21
blak111is that a bug in tempest or is something in the change causing that size problem?21:21
zanebblak111: it's almost certainly an intermittent problem with another project21:22
zanebblak111: look here for something similar: http://status.openstack.org/rechecks/21:22
zanebblak111: then you can retrigger as documented here: https://wiki.openstack.org/wiki/GerritJenkinsGit#Test_Failures21:22
openstackgerritRichard Lee proposed a change to openstack/heat: Refactor Instance#_check_active  https://review.openstack.org/6247821:23
openstackgerritRichard Lee proposed a change to openstack/heat: Add way to group exceptions in DependencyTaskGroup  https://review.openstack.org/6247921:23
blak111zaneb: thanks, i found the matching bug: https://code.launchpad.net/bugs/1261433 I'll keep smashing it through :-)21:24
uvirtbotLaunchpad bug 1261433 in heat "heat-tempest-xx already has an action (DELETE) in progress" [Undecided,New]21:24
zanebblak111: perfect :)21:25
openstackgerritAnderson Mesquita proposed a change to openstack/heat: Check resources are in expected states  https://review.openstack.org/5864121:25
*** sabeen has joined #heat21:29
*** SergeyLukjanov has quit IRC21:35
*** vkozhukalov has quit IRC21:35
*** SergeyLukjanov has joined #heat21:38
openstackgerritVijendar Komalla proposed a change to openstack/heat: update rackspace clients.py  https://review.openstack.org/6248321:41
*** SergeyLukjanov_ has joined #heat21:42
*** SergeyLukjanov is now known as SergeyLukjanov_a21:42
*** SergeyLukjanov_a has quit IRC21:43
*** radez is now known as radez_g0n321:48
stevebakerhi21:48
jasondstevebaker: hey21:48
jasondthe heat tempest tests aren't playing nicely with multi-engine21:49
jasondi think the problem is somewhere around here https://github.com/openstack/tempest/blob/master/tempest/api/orchestration/stacks/test_stacks.py#L69-L7121:49
zaneboooh, I never knew you could get a URL to a range of lines in GitHub! :)21:52
asalkeldmorning21:53
jasondzaneb: just click one line, hold shift, and click another line21:53
zanebjasond: nifty. thank you!21:53
jasondnp21:54
asalkeldcan some look at this, it's been there since nov 27: https://review.openstack.org/#/c/58723/21:54
stevebakerjasond: can you point me at a review which showed this bug21:55
stevebaker?21:55
jasondstevebaker: https://review.openstack.org/#/c/61717/21:56
jasondstevebaker: https://bugs.launchpad.net/heat/+bug/126143321:56
uvirtbotLaunchpad bug 1261433 in heat "heat-tempest-xx already has an action (DELETE) in progress" [Undecided,New]21:56
*** IlyaE has quit IRC21:57
*** SergeyLukjanov_ has quit IRC21:57
*** SergeyLukjanov has joined #heat21:57
stevebakerjasond: it would be interesting to know if this only shows up in postgres jobs21:58
jasondthe 2 out of 2 that i've seen so far have21:59
stevebakerso it looks like tempest sends 2 delete requests http://logs.openstack.org/17/61717/4/check/check-tempest-dsvm-postgres-full/3b776c3/logs/screen-h-eng.txt.gz22:00
stevebakerso why is that job failing? the tests pass22:03
jasondstevebaker: i see that, two deletes on stackheat-tempest-115283806322:03
jasondprobably because an exception was raised22:03
*** SergeyLukjanov has quit IRC22:04
*** brint has quit IRC22:05
stevebakerjasond: so if a user can easily trigger it, it shouldn't be logged as an ERROR. ERRORs in logs will trigger tempest failures22:05
stevebakerjasond: change that to a warning and it should be better, also if the user can easily trigger it then no stack trace should be logged22:06
jasondstevebaker: it's not logging to error, it's raising an ActionInProgress exception, which i think is correct22:07
jasondthe user needs to see that22:07
jasondwhat if we add a stop_delete_stack method to EngineService?22:08
stevebakerthe user needs to see that, but it shouldn't be logged as an ERROR22:08
stevebakerjasond: it failed because "Logs have errors" http://logs.openstack.org/17/61717/4/check/check-tempest-dsvm-postgres-full/3b776c3/console.html22:08
*** brint has joined #heat22:09
jasondstevebaker: will it say that if an exception is raised?22:09
jasondthere's no logging to error here https://github.com/openstack/heat/blob/master/heat/engine/stack_lock.py22:10
*** swygue has quit IRC22:10
*** gokrokve has quit IRC22:11
randallburtkebray:  noon to 1. so I'll head to SA in the morning and then come back to Austin after the talk22:14
randallburtwhoops. wrong window22:14
stevebakerjasond: maybe we should be using the client_exceptions decorator on our service methods22:17
jasondstevebaker: that looks perfect, nice find22:18
*** jergerber has quit IRC22:19
*** AndrewMichalik has quit IRC22:20
stevebakerjasond: it looks like HeatException might be best for the client_exceptions argument. You'll need to check our api and client error handling still works22:20
jasondwill do.  thanks!22:21
*** AndrewMichalik has joined #heat22:27
*** bgorski has joined #heat22:29
*** pablosan has quit IRC22:30
*** jasond has quit IRC22:32
*** jergerber has joined #heat22:43
*** che-arne has quit IRC22:45
*** rpothier_ has quit IRC22:46
*** ccs has quit IRC22:46
openstackgerritChmouel Boudjnah proposed a change to openstack/heat: Don't pass swift headers as None  https://review.openstack.org/6219922:50
*** bridavis has quit IRC22:50
*** dims has quit IRC23:02
*** cody-somerville has quit IRC23:04
*** vijendar has quit IRC23:04
*** topol has quit IRC23:06
*** cody-somerville has joined #heat23:07
*** brint has quit IRC23:08
*** gokrokve has joined #heat23:10
*** tomek_adamczewsk has joined #heat23:12
*** gokrokve has quit IRC23:12
*** gokrokve has joined #heat23:12
*** brint has joined #heat23:13
*** sgordon has joined #heat23:16
*** sgordon has quit IRC23:16
*** sgordon has joined #heat23:16
*** tomek_adamczewsk has quit IRC23:16
*** dims has joined #heat23:17
*** tomek_adamczewsk has joined #heat23:17
*** brint has quit IRC23:17
*** IlyaE has joined #heat23:18
*** brint has joined #heat23:19
*** ccs has joined #heat23:24
*** tomek_adamczewsk has quit IRC23:24
*** tomek_adamczewsk has joined #heat23:24
asalkeld[openstack-dev] Project-Scoped Service Catalog Entries23:28
asalkeldstevebaker, totally cool idea here ^23:28
*** ccs has quit IRC23:28
asalkeldthat would fix our heat standalone bug23:28
asalkeldthe one where you use heat client in the engine and it looks up the endpoint23:29
stevebakeryes, that would be very useful23:29
stevebakeralthough the paranoid me thinks it would be a good way to cause havoc on a horizon or heat installation23:31
*** tomek_adamczewsk has quit IRC23:31
asalkeldwell it would be the users doing23:34
*** cody-somerville has quit IRC23:35
stevebakerbut currently we trust our endpoints because the cloud admin installed them. If heat could be made to consume any random endpoint that the user installs then that user could cause all manner of problems23:36
*** tomek_adamczewsk has joined #heat23:37
asalkeldbrb: hanging biltong23:45
*** tomek_adamczewsk has quit IRC23:45
stevebakeryum, I had to google that23:46
*** tomek_adamczewsk has joined #heat23:47
*** ccs has joined #heat23:47
*** sabeen has quit IRC23:50
*** tomek_adamczewsk has quit IRC23:51
*** rcleere has quit IRC23:52
*** bgorski has quit IRC23:52
*** tomek_adamczewsk has joined #heat23:52
*** sjmc has quit IRC23:58

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