Tuesday, 2014-09-23

oakstreamstevebaker,  if I use the Heat API can how do i pass in that i need to install multiple software components?   Do I need a heat template pre-set?   (I don't want to have 100 different templates)00:00
oakstreamDo I need a middle ware piece where I should dynamically create a heat template....Then call the heat API and just refer to that template?  Would that be a good approach00:01
sdakehttp://www.cnet.com/news/silicon-valley-talent-wars-engineers-come-get-your-250k-salary/00:02
stevebakeroakstream: that is certainly a valid option. a heat template is just a data structure, and can definitly be built programatically00:03
oakstreamthanks steve, I've looked at the HEAT API and struggling to see how you can pass in multiple software components.  This is the only choice I'm aware of.  Any suggestions?00:06
oakstreamAlso, Would it be better practice to install software  (such as postgres, apache, java, etc..) usign Puppet....Or just putting this in the Heat Template (like user data or Software Config?).  (I'm just learning heat)00:07
*** achampion has quit IRC00:08
*** Qiming has joined #heat00:08
oakstreamI guess a better question.  If I dynamically create a template based on user input for what software they want on the server.....Would it make more sense to add this to the heat template as user data...Or just add a call to a puppet config/script00:09
*** alexheneveld_ has joined #heat00:09
*** alexheneveld has quit IRC00:09
*** alexheneveld_ is now known as alexheneveld00:09
stevebakeroakstream: each component they choose could add a SoftwareConfig plus a SoftwareDeployment resource to the template you're building https://review.openstack.org/#/c/120280/ https://github.com/openstack/heat-templates/tree/master/hot/software-config00:10
*** julienvey has quit IRC00:11
oakstreamsounds great. Thanks steve.   Is it possible to import the SoftwareConfig/SoftwareDeployment  sort of like a nested Template....Or do I need to just build this on the fly?00:12
*** alexheneveld_ has joined #heat00:13
stevebakeroakstream: SoftwareConfig resources are backed by an API, so you can define them anywhere and pass around references by UUID. You need to create a SoftwareDeployment resource per server resource you want to deploy to.00:14
openstackgerritSteve Baker proposed a change to openstack/heat: Add keystone v2 keypair methods  https://review.openstack.org/12329100:14
openstackgerritSteve Baker proposed a change to openstack/heat: Include credentials for heat calling self  https://review.openstack.org/12329200:14
*** alexheneveld has quit IRC00:14
*** alexheneveld_ is now known as alexheneveld00:14
uberjoakstream: this is a pretty comprehensive doc on SoftwareConfig/SoftwareDeployment resources https://wiki.openstack.org/wiki/Heat/Blueprints/hot-software-config-spec00:14
stevebakeruberj: hmm, I wouldn't rely on that too much. Its not a living document00:15
oakstreamthanks steve, great advice.  i'll ck that out00:16
oakstreamthanks uberj00:16
uberjstevebaker: I really like the walk through and the explanation of how SC and SDs were supposed to be used00:17
uberjthough, you are right the syntax probably wouldn't work verbatim in some of the templates00:17
stevebakertchaypo: to know what code paths your heat is using, can you paste your heat.conf?00:18
*** alexheneveld has quit IRC00:19
*** alexheneveld has joined #heat00:20
tchaypostevebaker: http://paste.openstack.org/show/114344/00:20
*** adrian_otto has quit IRC00:21
*** Qiming has quit IRC00:21
*** alexheneveld_ has joined #heat00:22
stevebakertchaypo: ok, nothing special there.00:22
*** alexheneveld has quit IRC00:25
*** alexheneveld has joined #heat00:26
stevebakertchaypo: heat should be doing straight passthrough of the token, no trusts, no stack domain users00:27
*** alexheneveld_ has quit IRC00:27
tchaypoWhere does heat get the token from?00:27
tchaypoit just requests one from keystone and then passes that through?00:27
tchaypoI was about to say "I never provide my auth details" but then I remembered that that's because of the OS_* env vars which contain the username/password00:28
*** gokrokve has joined #heat00:29
*** alexheneveld has quit IRC00:30
*** alexheneveld has joined #heat00:31
*** alexheneveld_ has joined #heat00:35
*** alexheneveld has quit IRC00:36
*** alexheneveld_ is now known as alexheneveld00:36
tchayposo I'm assuming heat uses the OS_* variables to request a token up-front and then doesn't renew that when it expires00:36
*** sjmc7 has quit IRC00:38
*** andersonvom has quit IRC00:38
*** alexheneveld_ has joined #heat00:39
*** alexheneveld has quit IRC00:40
*** alexheneveld_ is now known as alexheneveld00:40
stevebakertchaypo: the first thing heatclient does is use keystoneclient to fetch a token. That token is passed to heat and used for all API calls. The credentials are *also* passed to heat in case any deferred operations are required later which need a new token00:41
asalkeldunless you have trusts enabled00:41
stevebakeryes, which is not currently the default00:42
asalkeldyip00:42
*** alexheneveld_ has joined #heat00:44
*** EricGonczer_ has quit IRC00:44
*** alexheneveld has quit IRC00:46
*** alexheneveld_ is now known as alexheneveld00:46
tchayposo heat has the credentials, but chooses not to use them to create a new token, for reasons described in the bug00:46
tchaypobut in any case the token should not be expiring so soon in this case anyway00:46
tchaypoand aiui tripleo isn't currently able to use trusts, and even if it was, that is probably not the reccomended way to get around this particular issue00:47
*** david-lyle has quit IRC00:50
tchaypo"this particular issue" being the broader "tokens expire" issue, not the specific "tokens expire too soon" issue I think I'm seeing00:50
*** alexheneveld has quit IRC00:51
stevebakertchaypo: yes, that is all a fair summary. Although I think the only thing stopping tripleo moving to trusts is making it the default in heat00:57
*** LiJiansheng has joined #heat01:01
*** saurabhs has left #heat01:02
*** derekh has joined #heat01:03
*** spzala has quit IRC01:04
*** EricGonczer_ has joined #heat01:05
uberjwhat is the best way to profile a resource that takes a long time to complete?01:07
uberjcomplete=create01:07
*** EricGonczer_ has quit IRC01:08
*** achampion has joined #heat01:08
*** achampion has quit IRC01:13
*** achampion has joined #heat01:13
*** hdd has quit IRC01:14
stevebakeruberj: eventually osprofiler intgration will give you a full view of stack create timings, but heat just makes API calls to other services, so you likely need to be looking at the service which is creating things slowly01:17
*** rdo has quit IRC01:17
asalkelduberj, http://ahsalkeld.wordpress.com/2014/09/04/how-to-profile-heat-using-osprofile/01:17
asalkeldosprofiler is not yet supported everywhere tho'01:17
asalkeldso depends what is taking a long time01:18
*** tiantian has joined #heat01:18
*** rdo has joined #heat01:19
uberjokay. is there a timeline for osprofiler?01:19
asalkelduberj, when people approve patches?01:19
uberjheh01:20
*** zns has joined #heat01:21
*** oakstream has quit IRC01:22
*** gokrokve_ has joined #heat01:22
uberjI think my problem may be in the one of my softwaredeploys, but I can't tell01:25
*** gokrokve has quit IRC01:25
uberjmy templates are getting complicated :\01:25
asalkelduberj, yes we need to get better with feeding back progress to users01:26
openstackgerrithuangtianhua proposed a change to openstack/heat-specs: Add a file floder 'juno' for juno bp-specs  https://review.openstack.org/12309301:26
*** gokrokve_ has quit IRC01:27
uberjasalkeld: one thing I noticed is that when I put SDs behind a ResourceGroup that I only see the RG01:27
asalkeldtiantian, "s/floder/folder" ^01:27
uberjand not all the SDs that are being created01:27
tiantian<asalkeld> :) modify01:28
asalkelduberj, the rg is just a stack isn't it?01:29
asalkeldcan't you view the event listing for the rg's nested stack?01:29
openstackgerrithuangtianhua proposed a change to openstack/heat-specs: Add a file folder 'juno' for juno bp-specs  https://review.openstack.org/12309301:29
*** killer_prince is now known as lazy_prince01:30
*** derekh has quit IRC01:38
openstackgerrithuangtianhua proposed a change to openstack/python-heatclient: Client supports check action  https://review.openstack.org/12293401:38
uberjasalkeld: oh interesting, I didn't know it was considered a nested stack. in the UI at least I couldn't click into it more. I can try on the command line01:38
asalkelduberj, do a resource-list01:38
asalkeldand get the physical id01:38
asalkeldthen use that as a stack id01:38
larsksasalkeld: are you familiar with the operation of cfn-push-stats?  Running into some authentication problems (https://bugs.launchpad.net/heat/+bug/1372710); wondering if you have any thoughts.01:38
uvirtbotLaunchpad bug 1372710 in heat "cfn-push-stats fails to authenticate" [Undecided,New]01:38
asalkeldlooking01:39
asalkeldlarsks, anything out of the heat-cw-api logs?01:41
larsksasalkeld: "Checking AWS credentials..", "AWS credentials found, checking against keystone.", "Authenticating with http://127.0.0.1:5000/v2.0/ec2tokens"01:41
larsksthen, "AWS authentication failure.01:41
asalkeld*seems* to be doing the right things01:42
larsksYeah :).  And the credentials demonstrably work elsewhere.01:42
asalkeldhttps://github.com/openstack/heat/blob/master/heat/api/aws/ec2token.py#L13501:43
*** Qiming has joined #heat01:44
*** Qiming_ has joined #heat01:44
larsksasalkeld: Are you pointing at something specific, or suggesting that as a place to start looking? I got that far earlier, and it seemed to point at keystone, and I haven't started looking at keystone yet.01:45
asalkeldok, that's just a starting point01:46
larskskeystone is logging, "Authorization failed. The request you have made requires authentication. from 127.0.0.1"01:46
larsks(and returning a 401 error to Heat)01:46
asalkeldthat's helpful :-O01:47
Qiming_stevebaker, I just added you to the reviewers of https://review.openstack.org/#/c/119619/6, please help when you find a minute or two01:47
larsksYup.  I didn't find any HOT template examples making use of the AWS::IAM stuff or setting up cfn-push-stats.  Is anybody using this stuff these days?01:47
asalkeldi believe so01:48
asalkeldlarsks, it should work01:48
asalkeldmost likely the creation of the signature is wrong01:48
asalkeld(or not as expected)01:48
larsksasalkeld: That's what I'm hoping for :).  I guess that means I need to add some logging into keystone.01:49
larsksI've added a dump of the JSON getting passed to keystone for validation to the bug.01:50
asalkeldlarsks, shardy is the expert at this stuff01:51
larsksHe's on UTC, is that right?01:51
larsksOr thereabout?01:51
asalkeldwhat i know is  dangerous (yes london)01:51
*** erkules_ has joined #heat01:52
larsksasalkeld: Thanks for your help.  I will see what I can figure out in keystone and maybe try pinging shardy tomorrow.  Cheers!01:53
asalkeldsorry I couldn't be of more help01:53
asalkeldgood luck01:53
*** erkules has quit IRC01:55
*** shakamunyi has quit IRC01:57
*** Qiming__ has joined #heat01:58
*** lazy_prince is now known as killer_prince01:59
*** Qiming has quit IRC02:01
*** Qiming_ has quit IRC02:01
*** Yanyanhu has joined #heat02:04
*** Qiming has joined #heat02:08
*** julienvey has joined #heat02:12
*** dims_ has quit IRC02:15
*** dims has joined #heat02:16
*** julienvey has quit IRC02:17
*** radez_g0n3 is now known as radez02:19
*** dims has quit IRC02:20
radezI'm having trouble launch ny templates, it looks like heat is trying to connect to nova to verify the key that's being passed to the server resources02:23
radezI get a 502 bad gateway on the key_name property for a server resource02:23
*** andreaf has quit IRC02:23
radezanyone able to point me in the right direction for what I have misconfigured?02:24
*** andreaf has joined #heat02:24
asalkeldradez, what your template look like02:29
radezafair I'm using this template https://github.com/openstack/heat-templates/blob/master/openshift-origin/centos65/OpenShift-1B1N.yaml02:30
radezI don't htink I've made any modifications02:30
radezbut I also get it with a hello_world template02:30
* radez double checks hellow world02:30
radezoh I tried this one02:31
radezhttps://github.com/openstack/heat-templates/blob/master/hot/F20/WordPress_Native.yaml02:31
radezasalkeld: this is the error I get02:32
radezERROR: Property error : OpenShiftBroker: key_name Authorization failed: Bad Gateway (HTTP 502)02:32
asalkeldradez https://github.com/openstack/heat/blob/master/heat/engine/clients/os/nova.py#L15702:32
asalkeldthat't the keypair lookup02:32
asalkeldhttps://github.com/openstack/heat/blob/master/heat/engine/resources/nova_keypair.py#L13702:33
asalkeldnova keypair-list should show the key that you are passing in02:34
radezhm, I wonder if it's my heat config...02:35
radezendpoint_type=privateURL02:35
radezshould that be internalURL instead of private?02:35
asalkeldmmm, not sure - checking mine02:36
*** julienvey has joined #heat02:36
asalkeldradez, the default is publicURL02:37
radezright, I don't remember why I put in private, lemme switch it back02:37
radezhm, ok deleted the internal/private references same error02:40
*** julienvey has quit IRC02:41
asalkeldradez, to be clear: with the same user, you can see the keypair in nova keypair-list , but when you specify that with a heat create it fails?02:41
radezhttp://fpaste.org/135647/44025114/02:44
radezyea that's right02:44
*** sgordon_ has quit IRC02:45
radezand here's the engine log http://fpaste.org/135648/41144032/02:46
asalkeldradez, can you get to heat-engine logs?02:46
asalkeldwell done;)02:46
radezI'm trying to be helpful :)02:46
radezI suppose debug logs from heat engine would be more helpful?02:47
asalkeldthat seems ok02:48
asalkeldhave you double checked your heat.conf02:48
radezhere's debug logs02:49
radezhttp://fpaste.org/135650/44056214/02:49
radezasalkeld: double checked for what in particular?02:49
radezI've been in and out of the config file02:49
asalkeldthe clients section02:49
asalkeldhttps://github.com/openstack/heat/blob/master/etc/heat/heat.conf.sample#L75702:50
radezasalkeld: hm, I wonder if it is firewall... I opened up 8004, but I'm not sure if I did 8003 and 800002:51
radezare those the only ones?02:51
asalkeldfrom heat engine to the services?02:51
asalkeldwhat ever ports the services need02:52
asalkeldhave a look at keystone services/endpoints02:52
radezhm, yea I think I'm good there lemme get the clients section02:56
radezthat's all default, those valuse should be fine02:57
asalkeldok, what you run that nova keypair command from the machine that has heat engine running02:58
*** KanagarajM has joined #heat02:58
asalkeld(to see if it has access to what it needs)02:58
radezasalkeld: ie from python right?02:59
asalkeldjust on the cli02:59
asalkeld"nova keypair-list"02:59
asalkeld(with your own creds)03:00
asalkeldthat's all heat is really doing03:00
radezasalkeld: oh, that's what I did before03:04
asalkeldand it worked?03:04
radezyep, that pastebin where I did the keypair-list was on the control node that has everything but network and compute services on it03:04
*** ramishra has joined #heat03:06
asalkeldwell you need to figure out what's different to the creds you gave it (openrc) and what heat engine is using03:06
*** KanagarajM has quit IRC03:06
*** blomquisg has quit IRC03:07
radezasalkeld: hm, ok I'llkeep hunting03:09
*** killer_prince is now known as lazy_prince03:09
larsksasalkeld: re: that auth issue, boto and keystone are generating different data to be signed.   I updated the bz; do you happen to know which is correct?  Keystone includes the 'Action' header in the data to be signed, boto does not.03:11
asalkeldlarsks, yeah that is fun03:12
asalkeldless about correct and more about what works in most circumstances03:12
asalkeldboto follows aws03:12
asalkeldwe suffer03:13
larsksIs there a heat-native alternative to generating these sorts of credentials?03:14
asalkeldlarsks, we had that a long time ago, but gave it up for boto03:14
asalkeldwe felt at the time it would at least be more aws accurate03:15
asalkelddidn't know at the time it would just change03:15
*** Qiming_ has joined #heat03:15
larsksSo, who owns this bug? Is it boto or keystone or heat or...03:16
radezasalkeld: it's the keystone endpoint.03:16
radezlook in this paste at line 1503:16
radezhttp://fpaste.org/135650/44056214/03:16
asalkeldlarsks, i think it's fine in Heat for the moment03:16
larsksasalkeld: Okay. Leaving it there, aye.03:16
radezPOST /v3/auth/tokens HTTP/1.1" 50203:16
radezbut my enpoint-list says 5000:/v2.0/03:17
asalkeldok, so it's using keystone v3 when you don't have it?03:17
asalkelddo you have trusts turned on?03:18
asalkeldor is just the endpoint set incorrectly03:18
radezI'm not sure if trusts is turned on. that's in keystone?03:18
radezendpoint looks good in keystone03:18
radezeverything else is functionoing well03:18
asalkeldit's an option in heat.conf03:18
radezI don't see a place in heat.conf where that would be overridden?03:18
radezgreped for v3 in heat.conf03:19
radeznot there03:19
*** Qiming has quit IRC03:19
*** Qiming__ has quit IRC03:19
asalkeldhttps://github.com/openstack/heat/blob/master/etc/heat/heat.conf.sample#L3603:19
asalkeldfor you that should be "password" not trusts03:20
* radez checks03:20
radezyup it's commented out03:21
radezso password is default correct?03:21
radez#deferred_auth_method=password03:21
*** ckmvishnu has joined #heat03:21
*** LiJiansheng has quit IRC03:21
asalkeldradez, check your "keystone_authtoken" section03:21
*** LiJiansheng has joined #heat03:21
radezthat appears to look good, url is right, port is the admin port03:24
radezusername heat and a password to go with it.03:24
radezno reference to v303:24
ckmvishnugetting "import error" while trying to run tox. Am i missing something?03:25
radezactualy auth version isn't defined let me monkey with that a sec03:25
*** Qiming has joined #heat03:26
radezasalkeld: that was it. auth version in keystone auth section wasn't set, it must default to v303:26
radezasalkeld: thx much for your help debugging03:26
asalkeldnp03:27
openstackgerrithuangtianhua proposed a change to openstack/heat: Help message of configurations support i18n  https://review.openstack.org/11900203:36
*** zns has quit IRC03:46
*** zns has joined #heat03:47
larsksasalkeld: Okay, patched keystone locally to work around the auth issue.  Now I have a circular dependency in my template: I wanted to add the output "get_resource: my_alarm"  into my user_data script.  But this adds a dep. on the alarm...which has a dep on an HARestarter resource...which has a dep on the server instance.03:51
larsksThe CFN templates look like they should have the same issue, but apparently they work.03:52
asalkeldlarsks, are you using ceilometer alarm?03:52
asalkeldor cloud watch lite?03:52
larsksYes.  I thought that a AWS::CloudWatch::Alarm just got translated into a ceilometer alarm anyway...no?03:52
asalkeldcheck /etc/heat/environment.d/03:53
asalkeldto see what the mapping is03:53
asalkeldif you are running ceilometer please use it03:53
asalkeldcw lite is getting deprecated03:53
larsksAh, looks like the ceilometer mapping is commented out: http://chunk.io/f/c41b5025dfc745cf8a4bb7c579c65e4203:54
larsks...but even if I swap the comment, I'm still going to have the dependency cycle problem.03:54
asalkeldbasically you don't need to ref the alarm if you are using ceilometer03:54
larsksSo, what does cfn-push-stats get as the argument to --watch?03:54
asalkeldnothing, remove the --watch option03:54
asalkeldheat adds tags to the server (actually metadata)03:55
asalkeldand those tags get picked up by ceilometer03:55
asalkeldoooo, you are doing the service restart?03:55
asalkeldlet me check03:55
larsksI am trying :)03:56
larsksWithout --watch, I getting back a python traceback that concludes with "WatchRuleNotFound: The Watch Rule (Unknown) could not be found.".03:57
larsksasalkeld: this is the template I'm working with right now: http://chunk.io/f/1a960504dca3495b8c6cd6c2089fc90e03:57
asalkeldhttps://github.com/openstack/heat-cfntools/blob/master/bin/cfn-push-stats#L25603:57
asalkeldlarsks, so you switched to ceilometer alarms?03:57
asalkeldand re created the stack?03:58
*** vdreamarkitex has quit IRC03:58
larsksI'm in the process of doing that right now.03:58
asalkeldso where is the call to cfn-push-stats? in the image?03:59
larsksasalkeld: Well, I *want* it to be there, yes.04:02
larsksI'm running it by hand right now.04:03
larsks(From inside the running instnace)04:03
larsksI'm trying to create an AWS::CloudWatch::Alarm resource, but it wants a "Dimensions" property, which isn't used in the example at cfn/F17/AutoScalingMultiAZSample.yaml04:03
larsksUhh, wrong one.04:04
larskshttps://github.com/openstack/heat-templates/blob/master/cfn/F17/WordPress_Single_Instance_With_IHA.template#L10504:04
larsksThis is so incredibly painful.  I'm going to call it a night and try again tomorrow.04:04
larsksThanks for your help!04:04
openstackgerrithuangtianhua proposed a change to openstack/heat: Add two attributes for cinder volume outputs  https://review.openstack.org/12332404:07
ckmvishnuUTs failure looks similar to bug:136588004:08
ckmvishnuhttps://bugs.launchpad.net/heat/+bug/136588004:09
uvirtbotLaunchpad bug 1365880 in heat "Failing tests heat/tests/test_api_openstack_v1.py" [Undecided,Incomplete]04:09
openstackgerrithuangtianhua proposed a change to openstack/heat: Add two attributes for cinder volume outputs  https://review.openstack.org/12332404:11
*** julienvey has joined #heat04:12
*** hdd has joined #heat04:13
asalkeldbbl04:14
*** asalkeld is now known as asalkeld_afk04:14
stevebakerckmvishnu: I'm getting that locally too04:17
*** julienvey has quit IRC04:17
*** gokrokve has joined #heat04:20
*** rakesh_hs has joined #heat04:22
*** nikunj2512 has joined #heat04:23
*** ramishra has quit IRC04:26
*** enterprisedc has joined #heat04:28
*** vdreamarkitex has joined #heat04:29
*** ckmvishnu has quit IRC04:30
*** lazy_prince is now known as killer_prince04:31
*** ramishra has joined #heat04:33
*** ckmvishnu has joined #heat04:38
*** cmyster_away is now known as cmyster04:38
*** radez is now known as radez_g0n304:39
cmystermorning04:39
*** sanjayu has joined #heat04:41
*** Qiming has quit IRC04:44
*** Qiming_ has quit IRC04:45
openstackgerritSteve Baker proposed a change to openstack/heat: Include credentials for heat calling self  https://review.openstack.org/12329204:46
openstackgerritSteve Baker proposed a change to openstack/heat: Add keystone v2 keypair methods  https://review.openstack.org/12329104:46
*** vdreamarkitex has quit IRC04:49
*** gokrokve_ has joined #heat04:50
*** gokrokve has quit IRC04:53
*** nkhare has joined #heat04:57
*** kebray has joined #heat05:03
*** gokrokve_ has quit IRC05:13
*** gokrokve has joined #heat05:14
*** gokrokve has quit IRC05:18
*** gokrokve has joined #heat05:24
*** asalkeld_afk has quit IRC05:25
*** asalkeld has joined #heat05:29
*** hdd has quit IRC05:30
*** harlowja is now known as harlowja_away05:31
*** tspatzier has joined #heat05:31
cmysterstevebaker: still there ?05:46
cmysteris there a way to create a neutron::net as an external network ?05:52
*** tnurlygayanov has quit IRC05:52
*** tnurlygayanov has joined #heat05:52
*** rushiagr_away is now known as rushiagr05:52
*** tnurlygayanov has quit IRC05:56
*** tnurlygayanov has joined #heat05:56
*** sanjayu has quit IRC05:56
*** Yanyanhu has quit IRC05:59
openstackgerritOpenStack Proposal Bot proposed a change to openstack/heat: Imported Translations from Transifex  https://review.openstack.org/12000406:00
*** ishant has joined #heat06:03
*** Yanyanhu has joined #heat06:08
*** tnurlygayanov has quit IRC06:08
*** MohitS has joined #heat06:09
*** jcoufal has joined #heat06:10
*** tnurlygayanov has joined #heat06:12
*** wpf has quit IRC06:13
*** k4n0 has joined #heat06:23
*** kebray has quit IRC06:29
*** zns has quit IRC06:29
*** unmeshg has joined #heat06:31
*** andreaf has quit IRC06:32
*** andreaf has joined #heat06:32
*** tspatzier has quit IRC06:36
*** jprovazn has joined #heat06:38
*** erkules_ is now known as erkules06:39
*** sanjayu has joined #heat06:44
cmystergot it: value_specs: {"router:external":"true"}06:46
cmystersimpler then I thought06:46
*** ifarkas has joined #heat06:48
*** gokrokve_ has joined #heat06:49
openstackgerritHuruifeng proposed a change to openstack/heat-templates: Enable support for software component  https://review.openstack.org/11721006:49
*** killer_prince is now known as lazy_prince06:49
*** gokrokve has quit IRC06:51
*** sanjayu has quit IRC06:52
*** gokrokve_ has quit IRC06:54
*** sanjayu has joined #heat06:57
*** sanjayu has quit IRC06:58
*** sanjayu has joined #heat06:58
openstackgerrithuangtianhua proposed a change to openstack/heat: Make sure update properties_data when res UPDATE_COMPLETE  https://review.openstack.org/12291306:58
*** ramishra has quit IRC06:59
*** ramishra has joined #heat06:59
*** tango has quit IRC07:03
*** alexheneveld has joined #heat07:06
*** sdake has quit IRC07:06
*** ramishra has quit IRC07:07
*** ramishra has joined #heat07:08
*** julienvey has joined #heat07:08
*** andreaf has quit IRC07:11
*** AJaeger has joined #heat07:14
*** tspatzier has joined #heat07:14
*** rdo has quit IRC07:14
AJaegerHeat cores, could you import the translations again, please? https://review.openstack.org/#/c/120004/07:15
*** rdo has joined #heat07:16
*** jcoufal has quit IRC07:18
*** jstrachan has joined #heat07:19
*** jcoufal has joined #heat07:20
*** gokrokve has joined #heat07:25
openstackgerritHuruifeng proposed a change to openstack/heat-templates: Enable support for software component  https://review.openstack.org/11721007:26
*** gokrokve has quit IRC07:27
*** gokrokve has joined #heat07:27
*** reed has quit IRC07:29
openstackgerritHuruifeng proposed a change to openstack/heat-templates: Enable support for software component  https://review.openstack.org/11721007:29
*** jstrachan has quit IRC07:32
*** gokrokve has quit IRC07:32
*** jstrachan has joined #heat07:33
*** jstrachan has quit IRC07:41
*** stannie has joined #heat07:42
*** jstrachan has joined #heat07:45
*** derekh has joined #heat07:47
*** che-arne has quit IRC07:49
*** jstrachan has quit IRC07:51
*** jstrachan has joined #heat07:52
*** jstrachan_ has joined #heat07:56
*** jamiehannaford has joined #heat07:58
*** jstrachan has quit IRC07:59
*** sdake has joined #heat08:00
*** Qiming has joined #heat08:00
*** jistr has joined #heat08:04
*** f13o has joined #heat08:11
*** liusheng has joined #heat08:13
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.engine (part1)  https://review.openstack.org/10951208:14
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.engine (part2)  https://review.openstack.org/12338708:14
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.engine (part3)  https://review.openstack.org/12338808:14
*** f13o has quit IRC08:15
*** f13o has joined #heat08:15
*** jstrachan has joined #heat08:17
*** jstrachan_ has quit IRC08:19
*** tspatzier has quit IRC08:20
*** tspatzier has joined #heat08:22
*** jstrachan_ has joined #heat08:22
*** jstrachan has quit IRC08:24
*** daneyon has quit IRC08:26
*** gokrokve has joined #heat08:26
*** gokrokve has quit IRC08:31
openstackgerritVisnusaran Murugan proposed a change to openstack/heat: Validation to avoid duplicate stack names per tenant  https://review.openstack.org/12339708:35
*** kbyrne has joined #heat08:38
*** mkerrin has quit IRC08:41
*** metral is now known as metral_zzz08:44
*** metral_zzz is now known as metral08:45
*** adrienverge has joined #heat08:56
*** jcoufal has quit IRC08:58
*** jstrachan_ has quit IRC09:07
*** jstrachan has joined #heat09:08
*** mkerrin has joined #heat09:11
*** jstrachan has quit IRC09:14
*** jstrachan has joined #heat09:15
*** jcoufal has joined #heat09:15
*** tspatzier has quit IRC09:16
*** daneyon has joined #heat09:18
openstackgerritKanagaraj Manickam proposed a change to openstack/heat-specs: heat-manage service list  https://review.openstack.org/12259709:21
*** ramishra has quit IRC09:24
*** KanagarajM has joined #heat09:26
*** gokrokve has joined #heat09:26
*** sorantis has joined #heat09:26
*** Yanyanhu has quit IRC09:27
*** gokrokve has quit IRC09:30
*** ramishra has joined #heat09:35
*** andreaf_ is now known as andreaf09:36
*** ckmvishnu has quit IRC09:39
*** kopparam has joined #heat09:43
*** jstrachan has quit IRC09:49
*** tspatzier has joined #heat09:50
openstackgerritAdrien Vergé proposed a change to openstack/heat-specs: Support Cinder API version 2  https://review.openstack.org/12215309:51
*** jstrachan has joined #heat09:53
*** sarob has quit IRC09:53
*** AJaeger has left #heat09:54
*** che-arne has joined #heat09:55
*** kragniz has quit IRC09:56
*** kragniz has joined #heat09:56
*** pas-ha has joined #heat09:56
openstackgerritQiming Teng proposed a change to openstack/heat: Remove _environment method from ASG.  https://review.openstack.org/12040909:56
pas-hamorning all09:56
openstackgerritQiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call.  https://review.openstack.org/12067609:57
*** ckmvishnu has joined #heat09:57
*** kragniz has quit IRC09:58
*** kragniz has joined #heat09:58
*** jstrachan has quit IRC10:01
*** jstrachan has joined #heat10:05
*** sorantis has quit IRC10:14
*** ckmvishnu has quit IRC10:23
*** jstrachan has quit IRC10:23
*** jstrachan has joined #heat10:25
*** gokrokve has joined #heat10:26
*** gokrokve has quit IRC10:30
*** ramishra has quit IRC10:32
*** ramishra has joined #heat10:33
*** ramishra has quit IRC10:33
*** ramishra has joined #heat10:34
*** tspatzier has quit IRC10:36
*** ramishra has quit IRC10:38
*** mkollaro has joined #heat10:38
*** ckmvishnu has joined #heat10:43
*** kopparam_ has joined #heat10:43
ckmvishnuregarding https://bugs.launchpad.net/heat/+bug/1365880 I get error at 'line 1, column 1' instead on 'line 4, column 3'10:45
uvirtbotLaunchpad bug 1365880 in heat "Failing tests heat/tests/test_api_openstack_v1.py" [High,Triaged]10:45
*** kopparam has quit IRC10:46
*** nikunj2512 has quit IRC10:51
*** sanjayu has quit IRC10:56
*** sanjayu has joined #heat10:58
*** lazy_prince is now known as killer_prince11:03
*** sorantis has joined #heat11:09
*** sorantis has quit IRC11:10
openstackgerritVisnusaran Murugan proposed a change to openstack/heat: Invalid template parse message loopkup changed  https://review.openstack.org/12341711:10
*** nkhare has quit IRC11:11
*** achampion has quit IRC11:12
*** miarmak has joined #heat11:12
*** sorantis has joined #heat11:13
*** vdreamarkitex has joined #heat11:17
*** dmakogon_ has joined #heat11:18
*** amarouni has joined #heat11:18
*** amarouni has left #heat11:18
*** dmakogon_ is now known as denis_makogon11:19
*** EricGonczer_ has joined #heat11:20
*** EricGonczer_ has quit IRC11:22
*** dims has joined #heat11:25
*** gokrokve has joined #heat11:26
*** tspatzier has joined #heat11:26
*** nkhare has joined #heat11:28
*** sarob has joined #heat11:29
*** gokrokve has quit IRC11:31
*** killer_prince is now known as lazy_prince11:32
openstackgerritQiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call.  https://review.openstack.org/12067611:36
*** jstrachan_ has joined #heat11:37
*** ckmvishnu has quit IRC11:38
*** Drago1 has joined #heat11:39
*** jstrachan has quit IRC11:40
*** Drago1 has quit IRC11:44
*** asalkeld has quit IRC11:45
openstackgerritQiming Teng proposed a change to openstack/heat: Remove _environment method from ASG.  https://review.openstack.org/12040911:47
*** rakesh_hs has quit IRC11:48
*** nkhare has quit IRC11:56
*** ckmvishnu has joined #heat11:56
*** asalkeld has joined #heat12:01
*** aweiteka has joined #heat12:01
*** jamiehannaford has quit IRC12:03
*** achampion has joined #heat12:04
*** jamiehannaford has joined #heat12:05
*** tspatzier has quit IRC12:08
*** k4n0 has quit IRC12:09
*** dims has quit IRC12:13
*** dims has joined #heat12:14
*** unmeshg has quit IRC12:15
*** zns has joined #heat12:17
*** MohitS has quit IRC12:18
*** zns has quit IRC12:19
*** jdob has joined #heat12:22
*** tspatzier has joined #heat12:23
openstackgerritQiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call.  https://review.openstack.org/12067612:23
*** sgordon_ has joined #heat12:24
*** gokrokve has joined #heat12:26
*** lazy_prince is now known as killer_prince12:28
openstackgerritVisnusaran Murugan proposed a change to openstack/heat: Validation to avoid duplicate stack names per tenant  https://review.openstack.org/12339712:29
*** KanagarajM has quit IRC12:29
*** gokrokve has quit IRC12:31
openstackgerritVisnusaran Murugan proposed a change to openstack/heat: Validation to avoid duplicate stack names per tenant  https://review.openstack.org/12339712:31
*** jstrachan has joined #heat12:33
*** jstrachan_ has quit IRC12:35
*** kopparam has joined #heat12:35
*** kopparam has quit IRC12:36
openstackgerritQiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call.  https://review.openstack.org/12067612:37
*** kopparam has joined #heat12:37
*** kopparam has quit IRC12:37
*** kopparam has joined #heat12:38
*** kopparam_ has quit IRC12:38
openstackgerritQiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call.  https://review.openstack.org/12067612:38
*** funzo_ is now known as funzo12:39
*** blomquisg has joined #heat12:42
*** tonisbones has joined #heat12:46
*** LiJiansheng has quit IRC12:50
*** sabeen1 has quit IRC12:50
*** rpothier has joined #heat12:51
*** jcoufal has quit IRC12:52
*** killer_prince has quit IRC12:54
*** jcoufal has joined #heat12:55
asalkeldg'night12:55
*** asalkeld has quit IRC12:55
*** LiJiansheng has joined #heat12:56
*** mkulke has joined #heat13:04
openstackgerritA change was merged to openstack/heat-templates: Add a server with volumes ResourceGroup example  https://review.openstack.org/11901513:10
*** jpeeler has joined #heat13:16
*** jpeeler has joined #heat13:16
*** zns has joined #heat13:17
*** zns has quit IRC13:19
*** zns has joined #heat13:23
*** gokrokve has joined #heat13:26
*** funzo has quit IRC13:30
*** gokrokve has quit IRC13:31
*** radez_g0n3 is now known as radez13:32
*** julienvey has quit IRC13:32
*** julienvey has joined #heat13:33
jdandreastevebaker: I will file a bug and see if it can be verified, thanks. Regarding my getting a preview, I'm doing some experiments and wanted to see a preview of all the resources, including nested ones. (I don't think the CLI allows for this, does it?)13:35
*** andreaf is now known as andreaf_13:38
*** sabeen1 has joined #heat13:39
*** sanjayu has quit IRC13:40
*** jmckind has joined #heat13:47
*** LiJiansheng has quit IRC13:49
*** spzala has joined #heat13:52
*** jprovazn has quit IRC13:53
*** jprovazn has joined #heat13:57
*** gokrokve_ has joined #heat14:05
*** lipinski has joined #heat14:05
lipinskiEncountered an interesting problem.14:05
*** yassine has joined #heat14:06
lipinskiWe use a random string in the Heat template as a security key of sorts.  We place that key on the VMs and all VMs ensure they have the same key before they talk to each other.14:06
lipinskiWhen we build a stack and reference the random string resource, all is well.14:07
lipinskiHowever, on a stack update when we grow a new VM into the stack, it is only getting half the random string14:07
*** zz_gondoi is now known as gondoi14:07
lipinskie.g., on VMs 1-5, the key is 513 bytes long.  When we grow VM6, it gets a key that is 256 bytes.14:07
*** achampion has quit IRC14:08
*** pas-ha has quit IRC14:10
*** achampion has joined #heat14:12
lipinskiHow do you get out of a UPDATE_FAILED tate with a stack?14:20
lipinskiCan't seem to update again...14:20
*** david-lyle has joined #heat14:21
openstackgerritQiming Teng proposed a change to openstack/heat: Remove unncecessary child_params parameter.  https://review.openstack.org/12075614:28
*** jcoufal has quit IRC14:30
*** pas-ha has joined #heat14:31
*** adrienverge has quit IRC14:32
denis_makogonzigo, ping14:32
zigodenis_makogon: I'm here !14:33
denis_makogonzigo, can you please join trove channel ?14:33
zigodenis_makogon: #trove ?14:33
denis_makogonzigo, #openstack-trove14:33
*** ishant has quit IRC14:43
*** andersonvom has joined #heat14:43
*** Drago has joined #heat14:43
*** ckmvishnu has quit IRC14:46
*** andreaf has joined #heat14:51
*** reed has joined #heat14:55
*** che-arne has quit IRC14:56
*** mspreitz has joined #heat14:57
*** KanagarajM has joined #heat14:57
*** andreaf has quit IRC14:58
*** andreaf has joined #heat14:58
*** jistr has quit IRC14:58
*** sjmc7 has joined #heat15:00
*** jprovazn has quit IRC15:01
*** tango has joined #heat15:02
*** zns has quit IRC15:03
*** che-arne|2 has joined #heat15:08
*** zns has joined #heat15:09
*** che-arne|2 is now known as che-arne15:09
*** jergerber has joined #heat15:12
*** sorantis has quit IRC15:12
*** sdake has quit IRC15:14
*** sdake has joined #heat15:14
openstackgerritVisnusaran Murugan proposed a change to openstack/heat: Validation to avoid duplicate stack names per tenant  https://review.openstack.org/12339715:16
*** EricGonczer_ has joined #heat15:19
*** ckmvishnu has joined #heat15:22
*** daneyon has quit IRC15:26
*** gokrokve_ has quit IRC15:28
openstackgerritQiming Teng proposed a change to openstack/heat: Further split autoscaling code  https://review.openstack.org/12348115:30
openstackgerritQiming Teng proposed a change to openstack/heat: Further split autoscaling code  https://review.openstack.org/12348115:31
jpeelerok is there something failing badly in the gate? fatal: unable to connect to git.openstack.org15:32
jpeeleri did a recheck and it still failed15:32
*** david-ly_ has joined #heat15:34
*** jistr has joined #heat15:35
*** david-lyle has quit IRC15:36
*** gokrokve has joined #heat15:37
*** funzo has joined #heat15:37
*** dmueller has joined #heat15:38
*** adrian_otto has joined #heat15:40
Qiminggit.openstack.org seems back to life15:42
*** andersonvom has quit IRC15:42
*** andersonvom has joined #heat15:43
*** dmueller has quit IRC15:45
QimingI'm wondering if it is appropriate to always do a 'find . -name "*.pyc" -delete' before running tests?15:46
mspreitzQiming: good question.  I wonder when deleting a .pyc file is needed, too.15:47
Qimingmspreitz, the problem is when switching between branches, there could be stalling pyc files that get in the way of testing15:48
pas-haQiming, sometimes, I was usually having such problems when were moving to client plugins15:48
mspreitzSo, back to Qiming's question.  Is it always safe to delete all the .pyc files?15:48
pas-hamspreitz, absolutely15:48
*** Drago has quit IRC15:49
Qimingpas-ha, maybe we can be more aggressive when doing this: http://git.openstack.org/cgit/openstack/heat/tree/run_tests.sh#n5015:49
mspreitzpas-ha: thanks15:49
QimingI mean we delete all *.pyc files not just the db migration ones15:49
andersonvomQiming: ++++15:50
pas-haI even made a script that removes all pyc, and all empty folders and all *.orig leftovers of merge resolutions15:50
Qimingpas-ha, brave man!15:50
*** sergmelikyan has quit IRC15:50
pas-hayep, but there is a tendency to move away from using run_tests.sh15:50
pas-haand use tox only15:50
Qimingright15:51
pas-haso to be closer to gate. the only downside is using debugger15:51
*** jasondotstar has joined #heat15:51
*** gokrokve has quit IRC15:51
pas-habut this is easily sidestepped with a simple script like https://github.com/pshchelo/dotfiles/blob/master/scripts/dtestr15:52
*** sergmelikyan has joined #heat15:52
*** mspreitz has quit IRC15:53
*** achampion has quit IRC15:54
pas-hathe only downside in deleting pyc is that tests will take somewhat longer to run15:54
Qimingjust "somewhat longer" would be okay, IMO15:55
*** Drago has joined #heat15:59
Qiminganother question, if a patch is rebased on gerrit web page, do I need to do a 'local sync'?16:00
*** jstrachan has quit IRC16:00
zanebguys, there was a whole thread on this subject on openstack-dev about a week ago16:01
pas-haQiming, better to do it, so that you have the same local version based on the same parent16:01
Qimingpas-ha, can you show me how?16:01
zaneb"battling stale .pyc files" was the thread16:02
pas-hagit review -d XXXX (XXXX is that last numeric part of URL of your change)16:02
Qimingzaneb, I must have missed that16:02
Qiminggot it, thx, pas-ha16:02
zaneband a related thread "PYTHONDONTWRITEBYTECODE=true in tox.ini"16:02
*** achampion has joined #heat16:03
*** Drago has quit IRC16:05
pas-hazaneb, thanks for the links16:05
*** Drago has joined #heat16:05
zanebnp, pretty much all I do is read and reply to email these days. nice if it's useful sometimes ;)16:06
ckmvishnugating fails with "ProgrammingError: column "id" cannot be cast automatically to type integer"16:07
ckmvishnuthough not related to my change.16:07
ckmvishnuhttps://review.openstack.org/#/c/123417/16:08
*** liusheng has quit IRC16:09
*** liusheng has joined #heat16:10
pas-haprobably as id returned is not an int but uuid?16:11
*** adrian_otto has left #heat16:13
*** ckmvishnu has quit IRC16:14
pas-hait seems there is an error in the template this single test is using, something suspicious in the yaml indentation16:15
pas-hackmvishnu, ^16:15
jdandreastevebaker: Regarding my calling of StackResource.preview(), I did a bit of digging before filing a bug. Based on these findings, perhaps it is not a bug? http://paste.openstack.org/show/114618/16:19
Qimingoh my, 'PTL non-candidacy'16:20
pas-haoh, I see, the test is exactly for wrongly formatted template16:20
*** ifarkas has quit IRC16:21
pas-hackmvishnu, why do you even change this test? it passes perfectly without your change16:23
pas-haas indeed the error in the "wrong" template is on line 4, column 3 - wrongly indented yaml line16:24
*** kebray has joined #heat16:26
*** yassine has quit IRC16:28
*** saurabhs has joined #heat16:29
*** hdd has joined #heat16:29
*** mkollaro has quit IRC16:30
*** Qiming has quit IRC16:30
*** rushiagr is now known as rushiagr_away16:31
*** rushiagr_away is now known as rushiagr16:32
*** Drago1 has joined #heat16:32
*** jrist has quit IRC16:35
*** rushiagr is now known as rushiagr_away16:36
radezsdake: ping, have you seen a 502 bad gateway error when heat tries to validate a key to launch a server resource?16:36
*** ckmvishnu has joined #heat16:37
ckmvishnuThe bug #1365880 happens local devstack setup and not in gating env.16:38
uvirtbotLaunchpad bug 1365880 in heat "Failing tests heat/tests/test_api_openstack_v1.py" [High,In progress] https://launchpad.net/bugs/136588016:38
*** rbowen is now known as rcb_lunch16:41
*** dsneddon has joined #heat16:41
*** ckmvishnu has quit IRC16:42
*** jrist has joined #heat16:42
pas-hackmvishnu, I commented on both review and bug - I can not reproduce it on current master, and your patch fails on gate exactly due to change it introduces16:43
pas-hahttp://logs.openstack.org/17/123417/1/check/gate-heat-python27/0c1378a/console.html#_2014-09-23_12_23_42_86316:44
*** tango has quit IRC16:47
*** gokrokve has joined #heat16:48
*** alexheneveld has quit IRC16:50
openstackgerritunmesh-gurjar proposed a change to openstack/heat: Avoided code duplication creating sec group rules  https://review.openstack.org/12351116:51
*** dteselkin_ is now known as dteselkin16:57
*** daneyon has joined #heat17:00
radezstevebaker: ping, have you ever seen a "502 bad gateway" error when heat trys to validate a keypair for a server resource?17:01
*** pasquier-s has joined #heat17:02
*** derekh has quit IRC17:03
*** david-ly_ is now known as david-lyle17:04
*** alexheneveld has joined #heat17:05
*** zns has quit IRC17:06
*** tspatzier has quit IRC17:07
*** rushiagr_away is now known as rushiagr17:08
*** alexheneveld_ has joined #heat17:09
*** alexheneveld has quit IRC17:10
*** alexheneveld_ is now known as alexheneveld17:10
*** rwsu has quit IRC17:17
*** harlowja_away is now known as harlowja17:19
*** alexheneveld_ has joined #heat17:20
*** alexheneveld has quit IRC17:23
*** alexheneveld has joined #heat17:23
*** alexheneveld_ has quit IRC17:25
*** che-arne has quit IRC17:25
*** alexheneveld_ has joined #heat17:27
*** alexheneveld has quit IRC17:28
*** alexheneveld has joined #heat17:30
*** Drago1 has quit IRC17:30
*** pas-ha has quit IRC17:30
*** Drago has quit IRC17:31
*** Drago has joined #heat17:31
*** alexheneveld_ has quit IRC17:31
*** rcb_lunch is now known as rbowen17:33
*** alexheneveld has quit IRC17:34
*** tspatzier has joined #heat17:35
*** Drago has quit IRC17:36
*** rwsu has joined #heat17:36
*** JayJ has joined #heat17:40
*** alexheneveld has joined #heat17:46
*** rushiagr is now known as rushiagr_away17:46
*** Drago has joined #heat17:49
*** tango has joined #heat17:49
*** alexheneveld has quit IRC17:51
*** Drago has quit IRC17:51
*** alexheneveld has joined #heat17:53
*** jistr has quit IRC17:57
*** rushiagr_away is now known as rushiagr17:57
*** alexheneveld_ has joined #heat17:57
*** alexheneveld has quit IRC17:58
*** alexheneveld_ is now known as alexheneveld17:58
*** MohitS has joined #heat18:00
*** sorantis has joined #heat18:01
*** alexheneveld has quit IRC18:02
*** alexheneveld has joined #heat18:03
*** sorantis has quit IRC18:04
*** sorantis has joined #heat18:05
*** alexheneveld has quit IRC18:08
*** sorantis has quit IRC18:08
*** alexheneveld has joined #heat18:09
*** alexheneveld_ has joined #heat18:14
*** alexheneveld has quit IRC18:14
*** alexheneveld_ is now known as alexheneveld18:14
*** alexheneveld has quit IRC18:18
*** sarob is now known as sarob_away18:20
*** julienvey has quit IRC18:27
*** Drago has joined #heat18:29
*** rushiagr is now known as rushiagr_away18:30
*** EricGonczer_ has quit IRC18:34
*** EricGonczer_ has joined #heat18:34
*** jamiehannaford has quit IRC18:35
*** EricGonczer_ has quit IRC18:36
*** EricGonczer_ has joined #heat18:36
*** kragniz has left #heat18:37
jdandreaWhen defining a resource plugin, is there a way to ensure handle_update is invoked regardless of whether any template changes were made for that resource, or *must* some aspect change for it to happen?18:40
*** zns has joined #heat18:50
zanebjdandrea: override _needs_update() to return True18:55
zanebhttps://github.com/openstack/heat/blob/master/heat/engine/resource.py#L63018:55
jdandreazaneb: Thank you!18:55
zanebif you're on master that is18:56
jdandreaGot it.18:57
*** derekh has joined #heat19:00
*** pasquier-s_ has joined #heat19:00
*** MohitS has quit IRC19:03
*** WinnieTsang has joined #heat19:03
*** sabeen1 has quit IRC19:04
*** pasquier-s has quit IRC19:04
*** pas-ha has joined #heat19:04
*** gondoi is now known as zz_gondoi19:05
*** jistr has joined #heat19:06
*** che-arne has joined #heat19:10
*** kbyrne has quit IRC19:10
*** pasquier-s_ has quit IRC19:16
*** Annamarie_Nitzsc has joined #heat19:17
*** kebray has quit IRC19:20
*** kebray has joined #heat19:20
*** Annamarie_Nitzsc has quit IRC19:25
*** jrist has quit IRC19:26
*** sabeen has joined #heat19:27
*** zz_gondoi is now known as gondoi19:44
*** tspatzier has quit IRC19:52
stevebakermorning19:54
zanebstevebaker: question about https://review.openstack.org/#/c/122520/19:56
zanebare we bumping the requirements to fix a bug?19:57
stevebakerzaneb, I've just set up the agenda for the meeting19:57
zanebor we just do that every time we release?19:57
stevebakerzaneb, no known bug. I just wanted to make sure it had the latest.19:57
*** pasquier-s_ has joined #heat19:57
zanebstevebaker: ok, apparently we're not supposed to use pinning for that19:58
stevebakerzaneb, I'll trawl through the bugs in the last 2 releases. There may be something that affects horizon19:58
zanebk19:59
*** rpothier has quit IRC20:01
stevebakerugh, I thought it was heat team meeting20:02
* stevebaker goes to bed for 24 hours20:02
*** tchaypo has left #heat20:06
stevebakerradez, I'm guessing that any nova call from heat-engine will give that gateway error. There must be something different about the networking where your heat-engine is running20:06
*** derekh has quit IRC20:09
*** sabeen has quit IRC20:11
*** gondoi is now known as zz_gondoi20:11
*** jistr has quit IRC20:13
*** jasond has joined #heat20:13
*** sabeen has joined #heat20:13
*** tonisbones has quit IRC20:14
*** JayJ has quit IRC20:18
*** radez is now known as radez_g0n320:18
*** JayJ has joined #heat20:18
larsksCan anyone point me at an AWS::CloudWatch::Alarm example that is known to work correctly with the ceilometer mapping in templates/AWS_CloudWatch_Alarm.yaml?  I am running into various errors that may just be stupid mistakes on my part...20:19
*** Drago1 has joined #heat20:25
*** gokrokve has quit IRC20:26
*** gokrokve has joined #heat20:26
*** julienvey has joined #heat20:28
*** Drago1 has quit IRC20:30
*** Drago1 has joined #heat20:32
larsksAh, I am probably hitting https://bugs.launchpad.net/heat/+bug/131684220:32
uvirtbotLaunchpad bug 1316842 in heat "Ceilometer alarm based AWS::CloudWatch::Alarm implementation does not work" [High,Fix released]20:32
*** gokrokve has quit IRC20:32
*** gokrokve has joined #heat20:33
*** julienvey has quit IRC20:33
pas-hastevebaker, re requirements update, what about that bug that broke client's stack.update API? it is in 0.2.11 (latest release)20:34
*** Drago1 has quit IRC20:34
*** Drago1 has joined #heat20:35
pas-hathat was bug #137116720:35
uvirtbotLaunchpad bug 1371167 in python-heatclient "update command is broken when used via client api" [High,Fix committed] https://launchpad.net/bugs/137116720:35
*** julienvey has joined #heat20:36
*** uberj has quit IRC20:37
*** kopparam has quit IRC20:39
*** uberj has joined #heat20:39
*** kopparam has joined #heat20:39
openstackgerritLars Kellogg-Stedman proposed a change to openstack/heat: correct type/default mismatches in AWS_CloudWatch_Alarm.yaml  https://review.openstack.org/12358120:40
openstackgerritLars Kellogg-Stedman proposed a change to openstack/heat: correct type/default mismatches in AWS_CloudWatch_Alarm.yaml  https://review.openstack.org/12358120:41
*** Drago1 has quit IRC20:42
larsksthis ^^^^ fixes some of the problems I was having trying to create alarms20:42
*** Drago1 has joined #heat20:43
*** kopparam has quit IRC20:44
*** denis_makogon has quit IRC20:46
*** Drago1 has quit IRC20:46
*** julienvey has quit IRC20:46
*** dmakogon_ has joined #heat20:46
*** Drago1 has joined #heat20:46
*** Drago1 has quit IRC20:48
*** zz_gondoi is now known as gondoi20:48
*** jrist has joined #heat20:52
pas-hag'night all :)20:54
*** pas-ha has quit IRC20:54
*** Drago1 has joined #heat20:57
sjmc7oo, it is taxiing now20:57
sjmc7oops20:57
*** Drago1 has quit IRC20:59
*** zns has quit IRC21:00
*** gokrokve has quit IRC21:01
openstackgerritSteve Baker proposed a change to openstack/heat: Add volume backup/restore integration test  https://review.openstack.org/11315821:02
openstackgerritSteve Baker proposed a change to openstack/heat: Move test_autoscaling from tempest to heat  https://review.openstack.org/11218921:02
openstackgerritSteve Baker proposed a change to openstack/heat: Support classes for heat integration tests  https://review.openstack.org/11049621:02
openstackgerritSteve Baker proposed a change to openstack/heat: Integration test for software-config tools  https://review.openstack.org/11371121:02
openstackgerritSteve Baker proposed a change to openstack/heat: Move test_server_cfn_init from tempest to heat  https://review.openstack.org/11049721:02
*** pasquier-s has joined #heat21:03
openstackgerritLars Kellogg-Stedman proposed a change to openstack/heat: correct type/default mismatches in AWS_CloudWatch_Alarm.yaml  https://review.openstack.org/12358121:04
*** pasquier-s_ has quit IRC21:05
*** tchaypo has joined #heat21:07
*** tchaypo has left #heat21:09
*** kopparam has joined #heat21:10
*** Drago has quit IRC21:10
*** Drago has joined #heat21:11
*** kopparam has quit IRC21:16
*** justin-8 has joined #heat21:31
larskswhen using cloudwatch alarms implemented through ceilometer, where does one get the value to pass to the --watch argument of cfn-push-stats?21:33
larskscalling get_resource on the alarm resource yields an arn:... uri (arn:openstack:heat::....).21:34
*** sjmc7 has quit IRC21:37
*** jasond has quit IRC21:39
*** andreaf has quit IRC21:41
*** andreaf has joined #heat21:42
*** stannie has quit IRC21:42
*** sarob_away is now known as sarob21:43
*** rbowen is now known as rcb_afk21:46
larskszaneb: stevebaker: if either of you are around and can take a look at https://bugs.launchpad.net/heat/+bug/1373140 and let me know if that seems correct, that would be awesome.  Thanks...21:47
uvirtbotLaunchpad bug 1373140 in heat "_to_ceilometer does not properly handle empty dimensions property" [Undecided,New]21:47
zaneblarsks: looks like a bug. if a Dimension is required that should be enforced by the properties schema, and if not then it should work21:50
*** Drago1 has joined #heat21:51
*** jdob has quit IRC21:53
*** Drago1 has quit IRC21:54
*** jmckind has quit IRC21:57
*** sgordon_ has quit IRC21:57
*** jasondotstar has quit IRC21:57
*** harlowja is now known as harlowja_away22:01
*** gondoi is now known as zz_gondoi22:03
*** harlowja_away is now known as harlowja22:03
*** achampion has quit IRC22:04
stevebakerlarsks: did you solve your cfn-push-stats auth issue?22:04
*** tango has quit IRC22:04
*** gokrokve has joined #heat22:06
*** JayJ has quit IRC22:08
*** EricGonczer_ has quit IRC22:09
*** pasquier-s_ has joined #heat22:10
*** pasquier-s has quit IRC22:11
*** killer_prince has joined #heat22:15
*** killer_prince is now known as lazy_prince22:15
*** asalkeld has joined #heat22:20
*** zns has joined #heat22:28
*** andersonvom has quit IRC22:30
*** openstackgerrit has quit IRC22:31
*** openstackgerrit has joined #heat22:33
openstackgerritA change was merged to openstack/heat: Fix outdated comment in KeystoneClientV3.  https://review.openstack.org/12159822:39
*** julienvey has joined #heat22:40
*** reed has quit IRC22:41
*** alexheneveld has joined #heat22:42
openstackgerritSteve Baker proposed a change to openstack/heat: Convert parse error to text type  https://review.openstack.org/12360022:45
sdakeradez never seen such an error22:46
*** alexheneveld_ has joined #heat22:47
*** alexheneveld has quit IRC22:47
*** alexheneveld_ is now known as alexheneveld22:47
*** asalkeld has quit IRC22:50
*** alexheneveld_ has joined #heat22:50
*** alexheneveld has quit IRC22:51
*** dims has quit IRC22:53
*** dims has joined #heat22:54
*** alexheneveld_ has quit IRC22:55
*** alexheneveld_ has joined #heat22:55
*** dims has quit IRC22:59
*** alexheneveld_ has quit IRC23:01
stevebakerThat change I posted ^ should fix the local unit test fails people are seeing23:01
*** alexheneveld has joined #heat23:01
*** sarob is now known as sarob_away23:02
*** asalkeld has joined #heat23:03
*** alexheneveld_ has joined #heat23:06
*** alexheneveld has quit IRC23:06
*** alexheneveld_ is now known as alexheneveld23:06
*** zns has quit IRC23:06
*** achampion has joined #heat23:07
*** sdake has quit IRC23:07
*** alexheneveld has quit IRC23:11
*** alexheneveld_ has joined #heat23:11
*** achampio1 has joined #heat23:12
*** beekneemech has joined #heat23:13
*** alexheneveld has joined #heat23:13
*** bnemec has quit IRC23:13
*** andreaf has quit IRC23:13
*** kopparam has joined #heat23:13
*** andreaf has joined #heat23:14
*** andreaf has quit IRC23:15
*** achampion has quit IRC23:15
*** alexheneveld_ has quit IRC23:16
*** kopparam has quit IRC23:18
*** alexheneveld has quit IRC23:19
*** gokrokve_ has joined #heat23:19
*** dims has joined #heat23:19
*** sdake has joined #heat23:20
*** david-lyle has quit IRC23:20
*** gokrokve has quit IRC23:21
*** david-lyle has joined #heat23:21
*** dsneddon has quit IRC23:26
*** alexheneveld has joined #heat23:26
*** david-lyle has quit IRC23:26
*** lipinski has quit IRC23:29
*** Madie_Batz has joined #heat23:36
*** hdd has quit IRC23:43
*** Madie_Batz has quit IRC23:45
*** Abner_Zulauf83 has joined #heat23:46
*** Drago1 has joined #heat23:51
*** oakstream has joined #heat23:52
*** Qiming has joined #heat23:53
*** Drago1 has quit IRC23:56

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