oakstream | stevebaker, 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 |
---|---|---|
oakstream | Do 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 approach | 00:01 |
sdake | http://www.cnet.com/news/silicon-valley-talent-wars-engineers-come-get-your-250k-salary/ | 00:02 |
stevebaker | oakstream: that is certainly a valid option. a heat template is just a data structure, and can definitly be built programatically | 00:03 |
oakstream | thanks 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 |
oakstream | Also, 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 IRC | 00:08 | |
*** Qiming has joined #heat | 00:08 | |
oakstream | I 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/script | 00:09 |
*** alexheneveld_ has joined #heat | 00:09 | |
*** alexheneveld has quit IRC | 00:09 | |
*** alexheneveld_ is now known as alexheneveld | 00:09 | |
stevebaker | oakstream: 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-config | 00:10 |
*** julienvey has quit IRC | 00:11 | |
oakstream | sounds 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 #heat | 00:13 | |
stevebaker | oakstream: 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 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Add keystone v2 keypair methods https://review.openstack.org/123291 | 00:14 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Include credentials for heat calling self https://review.openstack.org/123292 | 00:14 |
*** alexheneveld has quit IRC | 00:14 | |
*** alexheneveld_ is now known as alexheneveld | 00:14 | |
uberj | oakstream: this is a pretty comprehensive doc on SoftwareConfig/SoftwareDeployment resources https://wiki.openstack.org/wiki/Heat/Blueprints/hot-software-config-spec | 00:14 |
stevebaker | uberj: hmm, I wouldn't rely on that too much. Its not a living document | 00:15 |
oakstream | thanks steve, great advice. i'll ck that out | 00:16 |
oakstream | thanks uberj | 00:16 |
uberj | stevebaker: I really like the walk through and the explanation of how SC and SDs were supposed to be used | 00:17 |
uberj | though, you are right the syntax probably wouldn't work verbatim in some of the templates | 00:17 |
stevebaker | tchaypo: to know what code paths your heat is using, can you paste your heat.conf? | 00:18 |
*** alexheneveld has quit IRC | 00:19 | |
*** alexheneveld has joined #heat | 00:20 | |
tchaypo | stevebaker: http://paste.openstack.org/show/114344/ | 00:20 |
*** adrian_otto has quit IRC | 00:21 | |
*** Qiming has quit IRC | 00:21 | |
*** alexheneveld_ has joined #heat | 00:22 | |
stevebaker | tchaypo: ok, nothing special there. | 00:22 |
*** alexheneveld has quit IRC | 00:25 | |
*** alexheneveld has joined #heat | 00:26 | |
stevebaker | tchaypo: heat should be doing straight passthrough of the token, no trusts, no stack domain users | 00:27 |
*** alexheneveld_ has quit IRC | 00:27 | |
tchaypo | Where does heat get the token from? | 00:27 |
tchaypo | it just requests one from keystone and then passes that through? | 00:27 |
tchaypo | I 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/password | 00:28 |
*** gokrokve has joined #heat | 00:29 | |
*** alexheneveld has quit IRC | 00:30 | |
*** alexheneveld has joined #heat | 00:31 | |
*** alexheneveld_ has joined #heat | 00:35 | |
*** alexheneveld has quit IRC | 00:36 | |
*** alexheneveld_ is now known as alexheneveld | 00:36 | |
tchaypo | so I'm assuming heat uses the OS_* variables to request a token up-front and then doesn't renew that when it expires | 00:36 |
*** sjmc7 has quit IRC | 00:38 | |
*** andersonvom has quit IRC | 00:38 | |
*** alexheneveld_ has joined #heat | 00:39 | |
*** alexheneveld has quit IRC | 00:40 | |
*** alexheneveld_ is now known as alexheneveld | 00:40 | |
stevebaker | tchaypo: 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 token | 00:41 |
asalkeld | unless you have trusts enabled | 00:41 |
stevebaker | yes, which is not currently the default | 00:42 |
asalkeld | yip | 00:42 |
*** alexheneveld_ has joined #heat | 00:44 | |
*** EricGonczer_ has quit IRC | 00:44 | |
*** alexheneveld has quit IRC | 00:46 | |
*** alexheneveld_ is now known as alexheneveld | 00:46 | |
tchaypo | so heat has the credentials, but chooses not to use them to create a new token, for reasons described in the bug | 00:46 |
tchaypo | but in any case the token should not be expiring so soon in this case anyway | 00:46 |
tchaypo | and 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 issue | 00:47 |
*** david-lyle has quit IRC | 00:50 | |
tchaypo | "this particular issue" being the broader "tokens expire" issue, not the specific "tokens expire too soon" issue I think I'm seeing | 00:50 |
*** alexheneveld has quit IRC | 00:51 | |
stevebaker | tchaypo: yes, that is all a fair summary. Although I think the only thing stopping tripleo moving to trusts is making it the default in heat | 00:57 |
*** LiJiansheng has joined #heat | 01:01 | |
*** saurabhs has left #heat | 01:02 | |
*** derekh has joined #heat | 01:03 | |
*** spzala has quit IRC | 01:04 | |
*** EricGonczer_ has joined #heat | 01:05 | |
uberj | what is the best way to profile a resource that takes a long time to complete? | 01:07 |
uberj | complete=create | 01:07 |
*** EricGonczer_ has quit IRC | 01:08 | |
*** achampion has joined #heat | 01:08 | |
*** achampion has quit IRC | 01:13 | |
*** achampion has joined #heat | 01:13 | |
*** hdd has quit IRC | 01:14 | |
stevebaker | uberj: 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 slowly | 01:17 |
*** rdo has quit IRC | 01:17 | |
asalkeld | uberj, http://ahsalkeld.wordpress.com/2014/09/04/how-to-profile-heat-using-osprofile/ | 01:17 |
asalkeld | osprofiler is not yet supported everywhere tho' | 01:17 |
asalkeld | so depends what is taking a long time | 01:18 |
*** tiantian has joined #heat | 01:18 | |
*** rdo has joined #heat | 01:19 | |
uberj | okay. is there a timeline for osprofiler? | 01:19 |
asalkeld | uberj, when people approve patches? | 01:19 |
uberj | heh | 01:20 |
*** zns has joined #heat | 01:21 | |
*** oakstream has quit IRC | 01:22 | |
*** gokrokve_ has joined #heat | 01:22 | |
uberj | I think my problem may be in the one of my softwaredeploys, but I can't tell | 01:25 |
*** gokrokve has quit IRC | 01:25 | |
uberj | my templates are getting complicated :\ | 01:25 |
asalkeld | uberj, yes we need to get better with feeding back progress to users | 01:26 |
openstackgerrit | huangtianhua proposed a change to openstack/heat-specs: Add a file floder 'juno' for juno bp-specs https://review.openstack.org/123093 | 01:26 |
*** gokrokve_ has quit IRC | 01:27 | |
uberj | asalkeld: one thing I noticed is that when I put SDs behind a ResourceGroup that I only see the RG | 01:27 |
asalkeld | tiantian, "s/floder/folder" ^ | 01:27 |
uberj | and not all the SDs that are being created | 01:27 |
tiantian | <asalkeld> :) modify | 01:28 |
asalkeld | uberj, the rg is just a stack isn't it? | 01:29 |
asalkeld | can't you view the event listing for the rg's nested stack? | 01:29 |
openstackgerrit | huangtianhua proposed a change to openstack/heat-specs: Add a file folder 'juno' for juno bp-specs https://review.openstack.org/123093 | 01:29 |
*** killer_prince is now known as lazy_prince | 01:30 | |
*** derekh has quit IRC | 01:38 | |
openstackgerrit | huangtianhua proposed a change to openstack/python-heatclient: Client supports check action https://review.openstack.org/122934 | 01:38 |
uberj | asalkeld: 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 line | 01:38 |
asalkeld | uberj, do a resource-list | 01:38 |
asalkeld | and get the physical id | 01:38 |
asalkeld | then use that as a stack id | 01:38 |
larsks | asalkeld: 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 |
uvirtbot | Launchpad bug 1372710 in heat "cfn-push-stats fails to authenticate" [Undecided,New] | 01:38 |
asalkeld | looking | 01:39 |
asalkeld | larsks, anything out of the heat-cw-api logs? | 01:41 |
larsks | asalkeld: "Checking AWS credentials..", "AWS credentials found, checking against keystone.", "Authenticating with http://127.0.0.1:5000/v2.0/ec2tokens" | 01:41 |
larsks | then, "AWS authentication failure. | 01:41 |
asalkeld | *seems* to be doing the right things | 01:42 |
larsks | Yeah :). And the credentials demonstrably work elsewhere. | 01:42 |
asalkeld | https://github.com/openstack/heat/blob/master/heat/api/aws/ec2token.py#L135 | 01:43 |
*** Qiming has joined #heat | 01:44 | |
*** Qiming_ has joined #heat | 01:44 | |
larsks | asalkeld: 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 |
asalkeld | ok, that's just a starting point | 01:46 |
larsks | keystone 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 |
asalkeld | that's helpful :-O | 01: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 two | 01:47 |
larsks | Yup. 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 |
asalkeld | i believe so | 01:48 |
asalkeld | larsks, it should work | 01:48 |
asalkeld | most likely the creation of the signature is wrong | 01:48 |
asalkeld | (or not as expected) | 01:48 |
larsks | asalkeld: That's what I'm hoping for :). I guess that means I need to add some logging into keystone. | 01:49 |
larsks | I've added a dump of the JSON getting passed to keystone for validation to the bug. | 01:50 |
asalkeld | larsks, shardy is the expert at this stuff | 01:51 |
larsks | He's on UTC, is that right? | 01:51 |
larsks | Or thereabout? | 01:51 |
asalkeld | what i know is dangerous (yes london) | 01:51 |
*** erkules_ has joined #heat | 01:52 | |
larsks | asalkeld: Thanks for your help. I will see what I can figure out in keystone and maybe try pinging shardy tomorrow. Cheers! | 01:53 |
asalkeld | sorry I couldn't be of more help | 01:53 |
asalkeld | good luck | 01:53 |
*** erkules has quit IRC | 01:55 | |
*** shakamunyi has quit IRC | 01:57 | |
*** Qiming__ has joined #heat | 01:58 | |
*** lazy_prince is now known as killer_prince | 01:59 | |
*** Qiming has quit IRC | 02:01 | |
*** Qiming_ has quit IRC | 02:01 | |
*** Yanyanhu has joined #heat | 02:04 | |
*** Qiming has joined #heat | 02:08 | |
*** julienvey has joined #heat | 02:12 | |
*** dims_ has quit IRC | 02:15 | |
*** dims has joined #heat | 02:16 | |
*** julienvey has quit IRC | 02:17 | |
*** radez_g0n3 is now known as radez | 02:19 | |
*** dims has quit IRC | 02:20 | |
radez | I'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 resources | 02:23 |
radez | I get a 502 bad gateway on the key_name property for a server resource | 02:23 |
*** andreaf has quit IRC | 02:23 | |
radez | anyone able to point me in the right direction for what I have misconfigured? | 02:24 |
*** andreaf has joined #heat | 02:24 | |
asalkeld | radez, what your template look like | 02:29 |
radez | afair I'm using this template https://github.com/openstack/heat-templates/blob/master/openshift-origin/centos65/OpenShift-1B1N.yaml | 02:30 |
radez | I don't htink I've made any modifications | 02:30 |
radez | but I also get it with a hello_world template | 02:30 |
* radez double checks hellow world | 02:30 | |
radez | oh I tried this one | 02:31 |
radez | https://github.com/openstack/heat-templates/blob/master/hot/F20/WordPress_Native.yaml | 02:31 |
radez | asalkeld: this is the error I get | 02:32 |
radez | ERROR: Property error : OpenShiftBroker: key_name Authorization failed: Bad Gateway (HTTP 502) | 02:32 |
asalkeld | radez https://github.com/openstack/heat/blob/master/heat/engine/clients/os/nova.py#L157 | 02:32 |
asalkeld | that't the keypair lookup | 02:32 |
asalkeld | https://github.com/openstack/heat/blob/master/heat/engine/resources/nova_keypair.py#L137 | 02:33 |
asalkeld | nova keypair-list should show the key that you are passing in | 02:34 |
radez | hm, I wonder if it's my heat config... | 02:35 |
radez | endpoint_type=privateURL | 02:35 |
radez | should that be internalURL instead of private? | 02:35 |
asalkeld | mmm, not sure - checking mine | 02:36 |
*** julienvey has joined #heat | 02:36 | |
asalkeld | radez, the default is publicURL | 02:37 |
radez | right, I don't remember why I put in private, lemme switch it back | 02:37 |
radez | hm, ok deleted the internal/private references same error | 02:40 |
*** julienvey has quit IRC | 02:41 | |
asalkeld | radez, 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 |
radez | http://fpaste.org/135647/44025114/ | 02:44 |
radez | yea that's right | 02:44 |
*** sgordon_ has quit IRC | 02:45 | |
radez | and here's the engine log http://fpaste.org/135648/41144032/ | 02:46 |
asalkeld | radez, can you get to heat-engine logs? | 02:46 |
asalkeld | well done;) | 02:46 |
radez | I'm trying to be helpful :) | 02:46 |
radez | I suppose debug logs from heat engine would be more helpful? | 02:47 |
asalkeld | that seems ok | 02:48 |
asalkeld | have you double checked your heat.conf | 02:48 |
radez | here's debug logs | 02:49 |
radez | http://fpaste.org/135650/44056214/ | 02:49 |
radez | asalkeld: double checked for what in particular? | 02:49 |
radez | I've been in and out of the config file | 02:49 |
asalkeld | the clients section | 02:49 |
asalkeld | https://github.com/openstack/heat/blob/master/etc/heat/heat.conf.sample#L757 | 02:50 |
radez | asalkeld: hm, I wonder if it is firewall... I opened up 8004, but I'm not sure if I did 8003 and 8000 | 02:51 |
radez | are those the only ones? | 02:51 |
asalkeld | from heat engine to the services? | 02:51 |
asalkeld | what ever ports the services need | 02:52 |
asalkeld | have a look at keystone services/endpoints | 02:52 |
radez | hm, yea I think I'm good there lemme get the clients section | 02:56 |
radez | that's all default, those valuse should be fine | 02:57 |
asalkeld | ok, what you run that nova keypair command from the machine that has heat engine running | 02:58 |
*** KanagarajM has joined #heat | 02:58 | |
asalkeld | (to see if it has access to what it needs) | 02:58 |
radez | asalkeld: ie from python right? | 02:59 |
asalkeld | just on the cli | 02:59 |
asalkeld | "nova keypair-list" | 02:59 |
asalkeld | (with your own creds) | 03:00 |
asalkeld | that's all heat is really doing | 03:00 |
radez | asalkeld: oh, that's what I did before | 03:04 |
asalkeld | and it worked? | 03:04 |
radez | yep, that pastebin where I did the keypair-list was on the control node that has everything but network and compute services on it | 03:04 |
*** ramishra has joined #heat | 03:06 | |
asalkeld | well you need to figure out what's different to the creds you gave it (openrc) and what heat engine is using | 03:06 |
*** KanagarajM has quit IRC | 03:06 | |
*** blomquisg has quit IRC | 03:07 | |
radez | asalkeld: hm, ok I'llkeep hunting | 03:09 |
*** killer_prince is now known as lazy_prince | 03:09 | |
larsks | asalkeld: 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 |
asalkeld | larsks, yeah that is fun | 03:12 |
asalkeld | less about correct and more about what works in most circumstances | 03:12 |
asalkeld | boto follows aws | 03:12 |
asalkeld | we suffer | 03:13 |
larsks | Is there a heat-native alternative to generating these sorts of credentials? | 03:14 |
asalkeld | larsks, we had that a long time ago, but gave it up for boto | 03:14 |
asalkeld | we felt at the time it would at least be more aws accurate | 03:15 |
asalkeld | didn't know at the time it would just change | 03:15 |
*** Qiming_ has joined #heat | 03:15 | |
larsks | So, who owns this bug? Is it boto or keystone or heat or... | 03:16 |
radez | asalkeld: it's the keystone endpoint. | 03:16 |
radez | look in this paste at line 15 | 03:16 |
radez | http://fpaste.org/135650/44056214/ | 03:16 |
asalkeld | larsks, i think it's fine in Heat for the moment | 03:16 |
larsks | asalkeld: Okay. Leaving it there, aye. | 03:16 |
radez | POST /v3/auth/tokens HTTP/1.1" 502 | 03:16 |
radez | but my enpoint-list says 5000:/v2.0/ | 03:17 |
asalkeld | ok, so it's using keystone v3 when you don't have it? | 03:17 |
asalkeld | do you have trusts turned on? | 03:18 |
asalkeld | or is just the endpoint set incorrectly | 03:18 |
radez | I'm not sure if trusts is turned on. that's in keystone? | 03:18 |
radez | endpoint looks good in keystone | 03:18 |
radez | everything else is functionoing well | 03:18 |
asalkeld | it's an option in heat.conf | 03:18 |
radez | I don't see a place in heat.conf where that would be overridden? | 03:18 |
radez | greped for v3 in heat.conf | 03:19 |
radez | not there | 03:19 |
*** Qiming has quit IRC | 03:19 | |
*** Qiming__ has quit IRC | 03:19 | |
asalkeld | https://github.com/openstack/heat/blob/master/etc/heat/heat.conf.sample#L36 | 03:19 |
asalkeld | for you that should be "password" not trusts | 03:20 |
* radez checks | 03:20 | |
radez | yup it's commented out | 03:21 |
radez | so password is default correct? | 03:21 |
radez | #deferred_auth_method=password | 03:21 |
*** ckmvishnu has joined #heat | 03:21 | |
*** LiJiansheng has quit IRC | 03:21 | |
asalkeld | radez, check your "keystone_authtoken" section | 03:21 |
*** LiJiansheng has joined #heat | 03:21 | |
radez | that appears to look good, url is right, port is the admin port | 03:24 |
radez | username heat and a password to go with it. | 03:24 |
radez | no reference to v3 | 03:24 |
ckmvishnu | getting "import error" while trying to run tox. Am i missing something? | 03:25 |
radez | actualy auth version isn't defined let me monkey with that a sec | 03:25 |
*** Qiming has joined #heat | 03:26 | |
radez | asalkeld: that was it. auth version in keystone auth section wasn't set, it must default to v3 | 03:26 |
radez | asalkeld: thx much for your help debugging | 03:26 |
asalkeld | np | 03:27 |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Help message of configurations support i18n https://review.openstack.org/119002 | 03:36 |
*** zns has quit IRC | 03:46 | |
*** zns has joined #heat | 03:47 | |
larsks | asalkeld: 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 |
larsks | The CFN templates look like they should have the same issue, but apparently they work. | 03:52 |
asalkeld | larsks, are you using ceilometer alarm? | 03:52 |
asalkeld | or cloud watch lite? | 03:52 |
larsks | Yes. I thought that a AWS::CloudWatch::Alarm just got translated into a ceilometer alarm anyway...no? | 03:52 |
asalkeld | check /etc/heat/environment.d/ | 03:53 |
asalkeld | to see what the mapping is | 03:53 |
asalkeld | if you are running ceilometer please use it | 03:53 |
asalkeld | cw lite is getting deprecated | 03:53 |
larsks | Ah, looks like the ceilometer mapping is commented out: http://chunk.io/f/c41b5025dfc745cf8a4bb7c579c65e42 | 03:54 |
larsks | ...but even if I swap the comment, I'm still going to have the dependency cycle problem. | 03:54 |
asalkeld | basically you don't need to ref the alarm if you are using ceilometer | 03:54 |
larsks | So, what does cfn-push-stats get as the argument to --watch? | 03:54 |
asalkeld | nothing, remove the --watch option | 03:54 |
asalkeld | heat adds tags to the server (actually metadata) | 03:55 |
asalkeld | and those tags get picked up by ceilometer | 03:55 |
asalkeld | oooo, you are doing the service restart? | 03:55 |
asalkeld | let me check | 03:55 |
larsks | I am trying :) | 03:56 |
larsks | Without --watch, I getting back a python traceback that concludes with "WatchRuleNotFound: The Watch Rule (Unknown) could not be found.". | 03:57 |
larsks | asalkeld: this is the template I'm working with right now: http://chunk.io/f/1a960504dca3495b8c6cd6c2089fc90e | 03:57 |
asalkeld | https://github.com/openstack/heat-cfntools/blob/master/bin/cfn-push-stats#L256 | 03:57 |
asalkeld | larsks, so you switched to ceilometer alarms? | 03:57 |
asalkeld | and re created the stack? | 03:58 |
*** vdreamarkitex has quit IRC | 03:58 | |
larsks | I'm in the process of doing that right now. | 03:58 |
asalkeld | so where is the call to cfn-push-stats? in the image? | 03:59 |
larsks | asalkeld: Well, I *want* it to be there, yes. | 04:02 |
larsks | I'm running it by hand right now. | 04:03 |
larsks | (From inside the running instnace) | 04:03 |
larsks | I'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.yaml | 04:03 |
larsks | Uhh, wrong one. | 04:04 |
larsks | https://github.com/openstack/heat-templates/blob/master/cfn/F17/WordPress_Single_Instance_With_IHA.template#L105 | 04:04 |
larsks | This is so incredibly painful. I'm going to call it a night and try again tomorrow. | 04:04 |
larsks | Thanks for your help! | 04:04 |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Add two attributes for cinder volume outputs https://review.openstack.org/123324 | 04:07 |
ckmvishnu | UTs failure looks similar to bug:1365880 | 04:08 |
ckmvishnu | https://bugs.launchpad.net/heat/+bug/1365880 | 04:09 |
uvirtbot | Launchpad bug 1365880 in heat "Failing tests heat/tests/test_api_openstack_v1.py" [Undecided,Incomplete] | 04:09 |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Add two attributes for cinder volume outputs https://review.openstack.org/123324 | 04:11 |
*** julienvey has joined #heat | 04:12 | |
*** hdd has joined #heat | 04:13 | |
asalkeld | bbl | 04:14 |
*** asalkeld is now known as asalkeld_afk | 04:14 | |
stevebaker | ckmvishnu: I'm getting that locally too | 04:17 |
*** julienvey has quit IRC | 04:17 | |
*** gokrokve has joined #heat | 04:20 | |
*** rakesh_hs has joined #heat | 04:22 | |
*** nikunj2512 has joined #heat | 04:23 | |
*** ramishra has quit IRC | 04:26 | |
*** enterprisedc has joined #heat | 04:28 | |
*** vdreamarkitex has joined #heat | 04:29 | |
*** ckmvishnu has quit IRC | 04:30 | |
*** lazy_prince is now known as killer_prince | 04:31 | |
*** ramishra has joined #heat | 04:33 | |
*** ckmvishnu has joined #heat | 04:38 | |
*** cmyster_away is now known as cmyster | 04:38 | |
*** radez is now known as radez_g0n3 | 04:39 | |
cmyster | morning | 04:39 |
*** sanjayu has joined #heat | 04:41 | |
*** Qiming has quit IRC | 04:44 | |
*** Qiming_ has quit IRC | 04:45 | |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Include credentials for heat calling self https://review.openstack.org/123292 | 04:46 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Add keystone v2 keypair methods https://review.openstack.org/123291 | 04:46 |
*** vdreamarkitex has quit IRC | 04:49 | |
*** gokrokve_ has joined #heat | 04:50 | |
*** gokrokve has quit IRC | 04:53 | |
*** nkhare has joined #heat | 04:57 | |
*** kebray has joined #heat | 05:03 | |
*** gokrokve_ has quit IRC | 05:13 | |
*** gokrokve has joined #heat | 05:14 | |
*** gokrokve has quit IRC | 05:18 | |
*** gokrokve has joined #heat | 05:24 | |
*** asalkeld_afk has quit IRC | 05:25 | |
*** asalkeld has joined #heat | 05:29 | |
*** hdd has quit IRC | 05:30 | |
*** harlowja is now known as harlowja_away | 05:31 | |
*** tspatzier has joined #heat | 05:31 | |
cmyster | stevebaker: still there ? | 05:46 |
cmyster | is there a way to create a neutron::net as an external network ? | 05:52 |
*** tnurlygayanov has quit IRC | 05:52 | |
*** tnurlygayanov has joined #heat | 05:52 | |
*** rushiagr_away is now known as rushiagr | 05:52 | |
*** tnurlygayanov has quit IRC | 05:56 | |
*** tnurlygayanov has joined #heat | 05:56 | |
*** sanjayu has quit IRC | 05:56 | |
*** Yanyanhu has quit IRC | 05:59 | |
openstackgerrit | OpenStack Proposal Bot proposed a change to openstack/heat: Imported Translations from Transifex https://review.openstack.org/120004 | 06:00 |
*** ishant has joined #heat | 06:03 | |
*** Yanyanhu has joined #heat | 06:08 | |
*** tnurlygayanov has quit IRC | 06:08 | |
*** MohitS has joined #heat | 06:09 | |
*** jcoufal has joined #heat | 06:10 | |
*** tnurlygayanov has joined #heat | 06:12 | |
*** wpf has quit IRC | 06:13 | |
*** k4n0 has joined #heat | 06:23 | |
*** kebray has quit IRC | 06:29 | |
*** zns has quit IRC | 06:29 | |
*** unmeshg has joined #heat | 06:31 | |
*** andreaf has quit IRC | 06:32 | |
*** andreaf has joined #heat | 06:32 | |
*** tspatzier has quit IRC | 06:36 | |
*** jprovazn has joined #heat | 06:38 | |
*** erkules_ is now known as erkules | 06:39 | |
*** sanjayu has joined #heat | 06:44 | |
cmyster | got it: value_specs: {"router:external":"true"} | 06:46 |
cmyster | simpler then I thought | 06:46 |
*** ifarkas has joined #heat | 06:48 | |
*** gokrokve_ has joined #heat | 06:49 | |
openstackgerrit | Huruifeng proposed a change to openstack/heat-templates: Enable support for software component https://review.openstack.org/117210 | 06:49 |
*** killer_prince is now known as lazy_prince | 06:49 | |
*** gokrokve has quit IRC | 06:51 | |
*** sanjayu has quit IRC | 06:52 | |
*** gokrokve_ has quit IRC | 06:54 | |
*** sanjayu has joined #heat | 06:57 | |
*** sanjayu has quit IRC | 06:58 | |
*** sanjayu has joined #heat | 06:58 | |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Make sure update properties_data when res UPDATE_COMPLETE https://review.openstack.org/122913 | 06:58 |
*** ramishra has quit IRC | 06:59 | |
*** ramishra has joined #heat | 06:59 | |
*** tango has quit IRC | 07:03 | |
*** alexheneveld has joined #heat | 07:06 | |
*** sdake has quit IRC | 07:06 | |
*** ramishra has quit IRC | 07:07 | |
*** ramishra has joined #heat | 07:08 | |
*** julienvey has joined #heat | 07:08 | |
*** andreaf has quit IRC | 07:11 | |
*** AJaeger has joined #heat | 07:14 | |
*** tspatzier has joined #heat | 07:14 | |
*** rdo has quit IRC | 07:14 | |
AJaeger | Heat cores, could you import the translations again, please? https://review.openstack.org/#/c/120004/ | 07:15 |
*** rdo has joined #heat | 07:16 | |
*** jcoufal has quit IRC | 07:18 | |
*** jstrachan has joined #heat | 07:19 | |
*** jcoufal has joined #heat | 07:20 | |
*** gokrokve has joined #heat | 07:25 | |
openstackgerrit | Huruifeng proposed a change to openstack/heat-templates: Enable support for software component https://review.openstack.org/117210 | 07:26 |
*** gokrokve has quit IRC | 07:27 | |
*** gokrokve has joined #heat | 07:27 | |
*** reed has quit IRC | 07:29 | |
openstackgerrit | Huruifeng proposed a change to openstack/heat-templates: Enable support for software component https://review.openstack.org/117210 | 07:29 |
*** jstrachan has quit IRC | 07:32 | |
*** gokrokve has quit IRC | 07:32 | |
*** jstrachan has joined #heat | 07:33 | |
*** jstrachan has quit IRC | 07:41 | |
*** stannie has joined #heat | 07:42 | |
*** jstrachan has joined #heat | 07:45 | |
*** derekh has joined #heat | 07:47 | |
*** che-arne has quit IRC | 07:49 | |
*** jstrachan has quit IRC | 07:51 | |
*** jstrachan has joined #heat | 07:52 | |
*** jstrachan_ has joined #heat | 07:56 | |
*** jamiehannaford has joined #heat | 07:58 | |
*** jstrachan has quit IRC | 07:59 | |
*** sdake has joined #heat | 08:00 | |
*** Qiming has joined #heat | 08:00 | |
*** jistr has joined #heat | 08:04 | |
*** f13o has joined #heat | 08:11 | |
*** liusheng has joined #heat | 08:13 | |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.engine (part1) https://review.openstack.org/109512 | 08:14 |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.engine (part2) https://review.openstack.org/123387 | 08:14 |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.engine (part3) https://review.openstack.org/123388 | 08:14 |
*** f13o has quit IRC | 08:15 | |
*** f13o has joined #heat | 08:15 | |
*** jstrachan has joined #heat | 08:17 | |
*** jstrachan_ has quit IRC | 08:19 | |
*** tspatzier has quit IRC | 08:20 | |
*** tspatzier has joined #heat | 08:22 | |
*** jstrachan_ has joined #heat | 08:22 | |
*** jstrachan has quit IRC | 08:24 | |
*** daneyon has quit IRC | 08:26 | |
*** gokrokve has joined #heat | 08:26 | |
*** gokrokve has quit IRC | 08:31 | |
openstackgerrit | Visnusaran Murugan proposed a change to openstack/heat: Validation to avoid duplicate stack names per tenant https://review.openstack.org/123397 | 08:35 |
*** kbyrne has joined #heat | 08:38 | |
*** mkerrin has quit IRC | 08:41 | |
*** metral is now known as metral_zzz | 08:44 | |
*** metral_zzz is now known as metral | 08:45 | |
*** adrienverge has joined #heat | 08:56 | |
*** jcoufal has quit IRC | 08:58 | |
*** jstrachan_ has quit IRC | 09:07 | |
*** jstrachan has joined #heat | 09:08 | |
*** mkerrin has joined #heat | 09:11 | |
*** jstrachan has quit IRC | 09:14 | |
*** jstrachan has joined #heat | 09:15 | |
*** jcoufal has joined #heat | 09:15 | |
*** tspatzier has quit IRC | 09:16 | |
*** daneyon has joined #heat | 09:18 | |
openstackgerrit | Kanagaraj Manickam proposed a change to openstack/heat-specs: heat-manage service list https://review.openstack.org/122597 | 09:21 |
*** ramishra has quit IRC | 09:24 | |
*** KanagarajM has joined #heat | 09:26 | |
*** gokrokve has joined #heat | 09:26 | |
*** sorantis has joined #heat | 09:26 | |
*** Yanyanhu has quit IRC | 09:27 | |
*** gokrokve has quit IRC | 09:30 | |
*** ramishra has joined #heat | 09:35 | |
*** andreaf_ is now known as andreaf | 09:36 | |
*** ckmvishnu has quit IRC | 09:39 | |
*** kopparam has joined #heat | 09:43 | |
*** jstrachan has quit IRC | 09:49 | |
*** tspatzier has joined #heat | 09:50 | |
openstackgerrit | Adrien Vergé proposed a change to openstack/heat-specs: Support Cinder API version 2 https://review.openstack.org/122153 | 09:51 |
*** jstrachan has joined #heat | 09:53 | |
*** sarob has quit IRC | 09:53 | |
*** AJaeger has left #heat | 09:54 | |
*** che-arne has joined #heat | 09:55 | |
*** kragniz has quit IRC | 09:56 | |
*** kragniz has joined #heat | 09:56 | |
*** pas-ha has joined #heat | 09:56 | |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Remove _environment method from ASG. https://review.openstack.org/120409 | 09:56 |
pas-ha | morning all | 09:56 |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call. https://review.openstack.org/120676 | 09:57 |
*** ckmvishnu has joined #heat | 09:57 | |
*** kragniz has quit IRC | 09:58 | |
*** kragniz has joined #heat | 09:58 | |
*** jstrachan has quit IRC | 10:01 | |
*** jstrachan has joined #heat | 10:05 | |
*** sorantis has quit IRC | 10:14 | |
*** ckmvishnu has quit IRC | 10:23 | |
*** jstrachan has quit IRC | 10:23 | |
*** jstrachan has joined #heat | 10:25 | |
*** gokrokve has joined #heat | 10:26 | |
*** gokrokve has quit IRC | 10:30 | |
*** ramishra has quit IRC | 10:32 | |
*** ramishra has joined #heat | 10:33 | |
*** ramishra has quit IRC | 10:33 | |
*** ramishra has joined #heat | 10:34 | |
*** tspatzier has quit IRC | 10:36 | |
*** ramishra has quit IRC | 10:38 | |
*** mkollaro has joined #heat | 10:38 | |
*** ckmvishnu has joined #heat | 10:43 | |
*** kopparam_ has joined #heat | 10:43 | |
ckmvishnu | regarding https://bugs.launchpad.net/heat/+bug/1365880 I get error at 'line 1, column 1' instead on 'line 4, column 3' | 10:45 |
uvirtbot | Launchpad bug 1365880 in heat "Failing tests heat/tests/test_api_openstack_v1.py" [High,Triaged] | 10:45 |
*** kopparam has quit IRC | 10:46 | |
*** nikunj2512 has quit IRC | 10:51 | |
*** sanjayu has quit IRC | 10:56 | |
*** sanjayu has joined #heat | 10:58 | |
*** lazy_prince is now known as killer_prince | 11:03 | |
*** sorantis has joined #heat | 11:09 | |
*** sorantis has quit IRC | 11:10 | |
openstackgerrit | Visnusaran Murugan proposed a change to openstack/heat: Invalid template parse message loopkup changed https://review.openstack.org/123417 | 11:10 |
*** nkhare has quit IRC | 11:11 | |
*** achampion has quit IRC | 11:12 | |
*** miarmak has joined #heat | 11:12 | |
*** sorantis has joined #heat | 11:13 | |
*** vdreamarkitex has joined #heat | 11:17 | |
*** dmakogon_ has joined #heat | 11:18 | |
*** amarouni has joined #heat | 11:18 | |
*** amarouni has left #heat | 11:18 | |
*** dmakogon_ is now known as denis_makogon | 11:19 | |
*** EricGonczer_ has joined #heat | 11:20 | |
*** EricGonczer_ has quit IRC | 11:22 | |
*** dims has joined #heat | 11:25 | |
*** gokrokve has joined #heat | 11:26 | |
*** tspatzier has joined #heat | 11:26 | |
*** nkhare has joined #heat | 11:28 | |
*** sarob has joined #heat | 11:29 | |
*** gokrokve has quit IRC | 11:31 | |
*** killer_prince is now known as lazy_prince | 11:32 | |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call. https://review.openstack.org/120676 | 11:36 |
*** jstrachan_ has joined #heat | 11:37 | |
*** ckmvishnu has quit IRC | 11:38 | |
*** Drago1 has joined #heat | 11:39 | |
*** jstrachan has quit IRC | 11:40 | |
*** Drago1 has quit IRC | 11:44 | |
*** asalkeld has quit IRC | 11:45 | |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Remove _environment method from ASG. https://review.openstack.org/120409 | 11:47 |
*** rakesh_hs has quit IRC | 11:48 | |
*** nkhare has quit IRC | 11:56 | |
*** ckmvishnu has joined #heat | 11:56 | |
*** asalkeld has joined #heat | 12:01 | |
*** aweiteka has joined #heat | 12:01 | |
*** jamiehannaford has quit IRC | 12:03 | |
*** achampion has joined #heat | 12:04 | |
*** jamiehannaford has joined #heat | 12:05 | |
*** tspatzier has quit IRC | 12:08 | |
*** k4n0 has quit IRC | 12:09 | |
*** dims has quit IRC | 12:13 | |
*** dims has joined #heat | 12:14 | |
*** unmeshg has quit IRC | 12:15 | |
*** zns has joined #heat | 12:17 | |
*** MohitS has quit IRC | 12:18 | |
*** zns has quit IRC | 12:19 | |
*** jdob has joined #heat | 12:22 | |
*** tspatzier has joined #heat | 12:23 | |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call. https://review.openstack.org/120676 | 12:23 |
*** sgordon_ has joined #heat | 12:24 | |
*** gokrokve has joined #heat | 12:26 | |
*** lazy_prince is now known as killer_prince | 12:28 | |
openstackgerrit | Visnusaran Murugan proposed a change to openstack/heat: Validation to avoid duplicate stack names per tenant https://review.openstack.org/123397 | 12:29 |
*** KanagarajM has quit IRC | 12:29 | |
*** gokrokve has quit IRC | 12:31 | |
openstackgerrit | Visnusaran Murugan proposed a change to openstack/heat: Validation to avoid duplicate stack names per tenant https://review.openstack.org/123397 | 12:31 |
*** jstrachan has joined #heat | 12:33 | |
*** jstrachan_ has quit IRC | 12:35 | |
*** kopparam has joined #heat | 12:35 | |
*** kopparam has quit IRC | 12:36 | |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call. https://review.openstack.org/120676 | 12:37 |
*** kopparam has joined #heat | 12:37 | |
*** kopparam has quit IRC | 12:37 | |
*** kopparam has joined #heat | 12:38 | |
*** kopparam_ has quit IRC | 12:38 | |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Remove timeout from ResourceGroup method call. https://review.openstack.org/120676 | 12:38 |
*** funzo_ is now known as funzo | 12:39 | |
*** blomquisg has joined #heat | 12:42 | |
*** tonisbones has joined #heat | 12:46 | |
*** LiJiansheng has quit IRC | 12:50 | |
*** sabeen1 has quit IRC | 12:50 | |
*** rpothier has joined #heat | 12:51 | |
*** jcoufal has quit IRC | 12:52 | |
*** killer_prince has quit IRC | 12:54 | |
*** jcoufal has joined #heat | 12:55 | |
asalkeld | g'night | 12:55 |
*** asalkeld has quit IRC | 12:55 | |
*** LiJiansheng has joined #heat | 12:56 | |
*** mkulke has joined #heat | 13:04 | |
openstackgerrit | A change was merged to openstack/heat-templates: Add a server with volumes ResourceGroup example https://review.openstack.org/119015 | 13:10 |
*** jpeeler has joined #heat | 13:16 | |
*** jpeeler has joined #heat | 13:16 | |
*** zns has joined #heat | 13:17 | |
*** zns has quit IRC | 13:19 | |
*** zns has joined #heat | 13:23 | |
*** gokrokve has joined #heat | 13:26 | |
*** funzo has quit IRC | 13:30 | |
*** gokrokve has quit IRC | 13:31 | |
*** radez_g0n3 is now known as radez | 13:32 | |
*** julienvey has quit IRC | 13:32 | |
*** julienvey has joined #heat | 13:33 | |
jdandrea | stevebaker: 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 #heat | 13:39 | |
*** sanjayu has quit IRC | 13:40 | |
*** jmckind has joined #heat | 13:47 | |
*** LiJiansheng has quit IRC | 13:49 | |
*** spzala has joined #heat | 13:52 | |
*** jprovazn has quit IRC | 13:53 | |
*** jprovazn has joined #heat | 13:57 | |
*** gokrokve_ has joined #heat | 14:05 | |
*** lipinski has joined #heat | 14:05 | |
lipinski | Encountered an interesting problem. | 14:05 |
*** yassine has joined #heat | 14:06 | |
lipinski | We 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 |
lipinski | When we build a stack and reference the random string resource, all is well. | 14:07 |
lipinski | However, on a stack update when we grow a new VM into the stack, it is only getting half the random string | 14:07 |
*** zz_gondoi is now known as gondoi | 14:07 | |
lipinski | e.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 IRC | 14:08 | |
*** pas-ha has quit IRC | 14:10 | |
*** achampion has joined #heat | 14:12 | |
lipinski | How do you get out of a UPDATE_FAILED tate with a stack? | 14:20 |
lipinski | Can't seem to update again... | 14:20 |
*** david-lyle has joined #heat | 14:21 | |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Remove unncecessary child_params parameter. https://review.openstack.org/120756 | 14:28 |
*** jcoufal has quit IRC | 14:30 | |
*** pas-ha has joined #heat | 14:31 | |
*** adrienverge has quit IRC | 14:32 | |
denis_makogon | zigo, ping | 14:32 |
zigo | denis_makogon: I'm here ! | 14:33 |
denis_makogon | zigo, can you please join trove channel ? | 14:33 |
zigo | denis_makogon: #trove ? | 14:33 |
denis_makogon | zigo, #openstack-trove | 14:33 |
*** ishant has quit IRC | 14:43 | |
*** andersonvom has joined #heat | 14:43 | |
*** Drago has joined #heat | 14:43 | |
*** ckmvishnu has quit IRC | 14:46 | |
*** andreaf has joined #heat | 14:51 | |
*** reed has joined #heat | 14:55 | |
*** che-arne has quit IRC | 14:56 | |
*** mspreitz has joined #heat | 14:57 | |
*** KanagarajM has joined #heat | 14:57 | |
*** andreaf has quit IRC | 14:58 | |
*** andreaf has joined #heat | 14:58 | |
*** jistr has quit IRC | 14:58 | |
*** sjmc7 has joined #heat | 15:00 | |
*** jprovazn has quit IRC | 15:01 | |
*** tango has joined #heat | 15:02 | |
*** zns has quit IRC | 15:03 | |
*** che-arne|2 has joined #heat | 15:08 | |
*** zns has joined #heat | 15:09 | |
*** che-arne|2 is now known as che-arne | 15:09 | |
*** jergerber has joined #heat | 15:12 | |
*** sorantis has quit IRC | 15:12 | |
*** sdake has quit IRC | 15:14 | |
*** sdake has joined #heat | 15:14 | |
openstackgerrit | Visnusaran Murugan proposed a change to openstack/heat: Validation to avoid duplicate stack names per tenant https://review.openstack.org/123397 | 15:16 |
*** EricGonczer_ has joined #heat | 15:19 | |
*** ckmvishnu has joined #heat | 15:22 | |
*** daneyon has quit IRC | 15:26 | |
*** gokrokve_ has quit IRC | 15:28 | |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Further split autoscaling code https://review.openstack.org/123481 | 15:30 |
openstackgerrit | Qiming Teng proposed a change to openstack/heat: Further split autoscaling code https://review.openstack.org/123481 | 15:31 |
jpeeler | ok is there something failing badly in the gate? fatal: unable to connect to git.openstack.org | 15:32 |
jpeeler | i did a recheck and it still failed | 15:32 |
*** david-ly_ has joined #heat | 15:34 | |
*** jistr has joined #heat | 15:35 | |
*** david-lyle has quit IRC | 15:36 | |
*** gokrokve has joined #heat | 15:37 | |
*** funzo has joined #heat | 15:37 | |
*** dmueller has joined #heat | 15:38 | |
*** adrian_otto has joined #heat | 15:40 | |
Qiming | git.openstack.org seems back to life | 15:42 |
*** andersonvom has quit IRC | 15:42 | |
*** andersonvom has joined #heat | 15:43 | |
*** dmueller has quit IRC | 15:45 | |
Qiming | I'm wondering if it is appropriate to always do a 'find . -name "*.pyc" -delete' before running tests? | 15:46 |
mspreitz | Qiming: good question. I wonder when deleting a .pyc file is needed, too. | 15:47 |
Qiming | mspreitz, the problem is when switching between branches, there could be stalling pyc files that get in the way of testing | 15:48 |
pas-ha | Qiming, sometimes, I was usually having such problems when were moving to client plugins | 15:48 |
mspreitz | So, back to Qiming's question. Is it always safe to delete all the .pyc files? | 15:48 |
pas-ha | mspreitz, absolutely | 15:48 |
*** Drago has quit IRC | 15:49 | |
Qiming | pas-ha, maybe we can be more aggressive when doing this: http://git.openstack.org/cgit/openstack/heat/tree/run_tests.sh#n50 | 15:49 |
mspreitz | pas-ha: thanks | 15:49 |
Qiming | I mean we delete all *.pyc files not just the db migration ones | 15:49 |
andersonvom | Qiming: ++++ | 15:50 |
pas-ha | I even made a script that removes all pyc, and all empty folders and all *.orig leftovers of merge resolutions | 15:50 |
Qiming | pas-ha, brave man! | 15:50 |
*** sergmelikyan has quit IRC | 15:50 | |
pas-ha | yep, but there is a tendency to move away from using run_tests.sh | 15:50 |
pas-ha | and use tox only | 15:50 |
Qiming | right | 15:51 |
pas-ha | so to be closer to gate. the only downside is using debugger | 15:51 |
*** jasondotstar has joined #heat | 15:51 | |
*** gokrokve has quit IRC | 15:51 | |
pas-ha | but this is easily sidestepped with a simple script like https://github.com/pshchelo/dotfiles/blob/master/scripts/dtestr | 15:52 |
*** sergmelikyan has joined #heat | 15:52 | |
*** mspreitz has quit IRC | 15:53 | |
*** achampion has quit IRC | 15:54 | |
pas-ha | the only downside in deleting pyc is that tests will take somewhat longer to run | 15:54 |
Qiming | just "somewhat longer" would be okay, IMO | 15:55 |
*** Drago has joined #heat | 15:59 | |
Qiming | another question, if a patch is rebased on gerrit web page, do I need to do a 'local sync'? | 16:00 |
*** jstrachan has quit IRC | 16:00 | |
zaneb | guys, there was a whole thread on this subject on openstack-dev about a week ago | 16:01 |
pas-ha | Qiming, better to do it, so that you have the same local version based on the same parent | 16:01 |
Qiming | pas-ha, can you show me how? | 16:01 |
zaneb | "battling stale .pyc files" was the thread | 16:02 |
pas-ha | git review -d XXXX (XXXX is that last numeric part of URL of your change) | 16:02 |
Qiming | zaneb, I must have missed that | 16:02 |
Qiming | got it, thx, pas-ha | 16:02 |
zaneb | and a related thread "PYTHONDONTWRITEBYTECODE=true in tox.ini" | 16:02 |
*** achampion has joined #heat | 16:03 | |
*** Drago has quit IRC | 16:05 | |
pas-ha | zaneb, thanks for the links | 16:05 |
*** Drago has joined #heat | 16:05 | |
zaneb | np, pretty much all I do is read and reply to email these days. nice if it's useful sometimes ;) | 16:06 |
ckmvishnu | gating fails with "ProgrammingError: column "id" cannot be cast automatically to type integer" | 16:07 |
ckmvishnu | though not related to my change. | 16:07 |
ckmvishnu | https://review.openstack.org/#/c/123417/ | 16:08 |
*** liusheng has quit IRC | 16:09 | |
*** liusheng has joined #heat | 16:10 | |
pas-ha | probably as id returned is not an int but uuid? | 16:11 |
*** adrian_otto has left #heat | 16:13 | |
*** ckmvishnu has quit IRC | 16:14 | |
pas-ha | it seems there is an error in the template this single test is using, something suspicious in the yaml indentation | 16:15 |
pas-ha | ckmvishnu, ^ | 16:15 |
jdandrea | stevebaker: 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 |
Qiming | oh my, 'PTL non-candidacy' | 16:20 |
pas-ha | oh, I see, the test is exactly for wrongly formatted template | 16:20 |
*** ifarkas has quit IRC | 16:21 | |
pas-ha | ckmvishnu, why do you even change this test? it passes perfectly without your change | 16:23 |
pas-ha | as indeed the error in the "wrong" template is on line 4, column 3 - wrongly indented yaml line | 16:24 |
*** kebray has joined #heat | 16:26 | |
*** yassine has quit IRC | 16:28 | |
*** saurabhs has joined #heat | 16:29 | |
*** hdd has joined #heat | 16:29 | |
*** mkollaro has quit IRC | 16:30 | |
*** Qiming has quit IRC | 16:30 | |
*** rushiagr is now known as rushiagr_away | 16:31 | |
*** rushiagr_away is now known as rushiagr | 16:32 | |
*** Drago1 has joined #heat | 16:32 | |
*** jrist has quit IRC | 16:35 | |
*** rushiagr is now known as rushiagr_away | 16:36 | |
radez | sdake: 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 #heat | 16:37 | |
ckmvishnu | The bug #1365880 happens local devstack setup and not in gating env. | 16:38 |
uvirtbot | Launchpad bug 1365880 in heat "Failing tests heat/tests/test_api_openstack_v1.py" [High,In progress] https://launchpad.net/bugs/1365880 | 16:38 |
*** rbowen is now known as rcb_lunch | 16:41 | |
*** dsneddon has joined #heat | 16:41 | |
*** ckmvishnu has quit IRC | 16:42 | |
*** jrist has joined #heat | 16:42 | |
pas-ha | ckmvishnu, 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 introduces | 16:43 |
pas-ha | http://logs.openstack.org/17/123417/1/check/gate-heat-python27/0c1378a/console.html#_2014-09-23_12_23_42_863 | 16:44 |
*** tango has quit IRC | 16:47 | |
*** gokrokve has joined #heat | 16:48 | |
*** alexheneveld has quit IRC | 16:50 | |
openstackgerrit | unmesh-gurjar proposed a change to openstack/heat: Avoided code duplication creating sec group rules https://review.openstack.org/123511 | 16:51 |
*** dteselkin_ is now known as dteselkin | 16:57 | |
*** daneyon has joined #heat | 17:00 | |
radez | stevebaker: 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 #heat | 17:02 | |
*** derekh has quit IRC | 17:03 | |
*** david-ly_ is now known as david-lyle | 17:04 | |
*** alexheneveld has joined #heat | 17:05 | |
*** zns has quit IRC | 17:06 | |
*** tspatzier has quit IRC | 17:07 | |
*** rushiagr_away is now known as rushiagr | 17:08 | |
*** alexheneveld_ has joined #heat | 17:09 | |
*** alexheneveld has quit IRC | 17:10 | |
*** alexheneveld_ is now known as alexheneveld | 17:10 | |
*** rwsu has quit IRC | 17:17 | |
*** harlowja_away is now known as harlowja | 17:19 | |
*** alexheneveld_ has joined #heat | 17:20 | |
*** alexheneveld has quit IRC | 17:23 | |
*** alexheneveld has joined #heat | 17:23 | |
*** alexheneveld_ has quit IRC | 17:25 | |
*** che-arne has quit IRC | 17:25 | |
*** alexheneveld_ has joined #heat | 17:27 | |
*** alexheneveld has quit IRC | 17:28 | |
*** alexheneveld has joined #heat | 17:30 | |
*** Drago1 has quit IRC | 17:30 | |
*** pas-ha has quit IRC | 17:30 | |
*** Drago has quit IRC | 17:31 | |
*** Drago has joined #heat | 17:31 | |
*** alexheneveld_ has quit IRC | 17:31 | |
*** rcb_lunch is now known as rbowen | 17:33 | |
*** alexheneveld has quit IRC | 17:34 | |
*** tspatzier has joined #heat | 17:35 | |
*** Drago has quit IRC | 17:36 | |
*** rwsu has joined #heat | 17:36 | |
*** JayJ has joined #heat | 17:40 | |
*** alexheneveld has joined #heat | 17:46 | |
*** rushiagr is now known as rushiagr_away | 17:46 | |
*** Drago has joined #heat | 17:49 | |
*** tango has joined #heat | 17:49 | |
*** alexheneveld has quit IRC | 17:51 | |
*** Drago has quit IRC | 17:51 | |
*** alexheneveld has joined #heat | 17:53 | |
*** jistr has quit IRC | 17:57 | |
*** rushiagr_away is now known as rushiagr | 17:57 | |
*** alexheneveld_ has joined #heat | 17:57 | |
*** alexheneveld has quit IRC | 17:58 | |
*** alexheneveld_ is now known as alexheneveld | 17:58 | |
*** MohitS has joined #heat | 18:00 | |
*** sorantis has joined #heat | 18:01 | |
*** alexheneveld has quit IRC | 18:02 | |
*** alexheneveld has joined #heat | 18:03 | |
*** sorantis has quit IRC | 18:04 | |
*** sorantis has joined #heat | 18:05 | |
*** alexheneveld has quit IRC | 18:08 | |
*** sorantis has quit IRC | 18:08 | |
*** alexheneveld has joined #heat | 18:09 | |
*** alexheneveld_ has joined #heat | 18:14 | |
*** alexheneveld has quit IRC | 18:14 | |
*** alexheneveld_ is now known as alexheneveld | 18:14 | |
*** alexheneveld has quit IRC | 18:18 | |
*** sarob is now known as sarob_away | 18:20 | |
*** julienvey has quit IRC | 18:27 | |
*** Drago has joined #heat | 18:29 | |
*** rushiagr is now known as rushiagr_away | 18:30 | |
*** EricGonczer_ has quit IRC | 18:34 | |
*** EricGonczer_ has joined #heat | 18:34 | |
*** jamiehannaford has quit IRC | 18:35 | |
*** EricGonczer_ has quit IRC | 18:36 | |
*** EricGonczer_ has joined #heat | 18:36 | |
*** kragniz has left #heat | 18:37 | |
jdandrea | When 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 #heat | 18:50 | |
zaneb | jdandrea: override _needs_update() to return True | 18:55 |
zaneb | https://github.com/openstack/heat/blob/master/heat/engine/resource.py#L630 | 18:55 |
jdandrea | zaneb: Thank you! | 18:55 |
zaneb | if you're on master that is | 18:56 |
jdandrea | Got it. | 18:57 |
*** derekh has joined #heat | 19:00 | |
*** pasquier-s_ has joined #heat | 19:00 | |
*** MohitS has quit IRC | 19:03 | |
*** WinnieTsang has joined #heat | 19:03 | |
*** sabeen1 has quit IRC | 19:04 | |
*** pasquier-s has quit IRC | 19:04 | |
*** pas-ha has joined #heat | 19:04 | |
*** gondoi is now known as zz_gondoi | 19:05 | |
*** jistr has joined #heat | 19:06 | |
*** che-arne has joined #heat | 19:10 | |
*** kbyrne has quit IRC | 19:10 | |
*** pasquier-s_ has quit IRC | 19:16 | |
*** Annamarie_Nitzsc has joined #heat | 19:17 | |
*** kebray has quit IRC | 19:20 | |
*** kebray has joined #heat | 19:20 | |
*** Annamarie_Nitzsc has quit IRC | 19:25 | |
*** jrist has quit IRC | 19:26 | |
*** sabeen has joined #heat | 19:27 | |
*** zz_gondoi is now known as gondoi | 19:44 | |
*** tspatzier has quit IRC | 19:52 | |
stevebaker | morning | 19:54 |
zaneb | stevebaker: question about https://review.openstack.org/#/c/122520/ | 19:56 |
zaneb | are we bumping the requirements to fix a bug? | 19:57 |
stevebaker | zaneb, I've just set up the agenda for the meeting | 19:57 |
zaneb | or we just do that every time we release? | 19:57 |
stevebaker | zaneb, no known bug. I just wanted to make sure it had the latest. | 19:57 |
*** pasquier-s_ has joined #heat | 19:57 | |
zaneb | stevebaker: ok, apparently we're not supposed to use pinning for that | 19:58 |
stevebaker | zaneb, I'll trawl through the bugs in the last 2 releases. There may be something that affects horizon | 19:58 |
zaneb | k | 19:59 |
*** rpothier has quit IRC | 20:01 | |
stevebaker | ugh, I thought it was heat team meeting | 20:02 |
* stevebaker goes to bed for 24 hours | 20:02 | |
*** tchaypo has left #heat | 20:06 | |
stevebaker | radez, 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 running | 20:06 |
*** derekh has quit IRC | 20:09 | |
*** sabeen has quit IRC | 20:11 | |
*** gondoi is now known as zz_gondoi | 20:11 | |
*** jistr has quit IRC | 20:13 | |
*** jasond has joined #heat | 20:13 | |
*** sabeen has joined #heat | 20:13 | |
*** tonisbones has quit IRC | 20:14 | |
*** JayJ has quit IRC | 20:18 | |
*** radez is now known as radez_g0n3 | 20:18 | |
*** JayJ has joined #heat | 20:18 | |
larsks | Can 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 #heat | 20:25 | |
*** gokrokve has quit IRC | 20:26 | |
*** gokrokve has joined #heat | 20:26 | |
*** julienvey has joined #heat | 20:28 | |
*** Drago1 has quit IRC | 20:30 | |
*** Drago1 has joined #heat | 20:32 | |
larsks | Ah, I am probably hitting https://bugs.launchpad.net/heat/+bug/1316842 | 20:32 |
uvirtbot | Launchpad bug 1316842 in heat "Ceilometer alarm based AWS::CloudWatch::Alarm implementation does not work" [High,Fix released] | 20:32 |
*** gokrokve has quit IRC | 20:32 | |
*** gokrokve has joined #heat | 20:33 | |
*** julienvey has quit IRC | 20:33 | |
pas-ha | stevebaker, 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 IRC | 20:34 | |
*** Drago1 has joined #heat | 20:35 | |
pas-ha | that was bug #1371167 | 20:35 |
uvirtbot | Launchpad bug 1371167 in python-heatclient "update command is broken when used via client api" [High,Fix committed] https://launchpad.net/bugs/1371167 | 20:35 |
*** julienvey has joined #heat | 20:36 | |
*** uberj has quit IRC | 20:37 | |
*** kopparam has quit IRC | 20:39 | |
*** uberj has joined #heat | 20:39 | |
*** kopparam has joined #heat | 20:39 | |
openstackgerrit | Lars Kellogg-Stedman proposed a change to openstack/heat: correct type/default mismatches in AWS_CloudWatch_Alarm.yaml https://review.openstack.org/123581 | 20:40 |
openstackgerrit | Lars Kellogg-Stedman proposed a change to openstack/heat: correct type/default mismatches in AWS_CloudWatch_Alarm.yaml https://review.openstack.org/123581 | 20:41 |
*** Drago1 has quit IRC | 20:42 | |
larsks | this ^^^^ fixes some of the problems I was having trying to create alarms | 20:42 |
*** Drago1 has joined #heat | 20:43 | |
*** kopparam has quit IRC | 20:44 | |
*** denis_makogon has quit IRC | 20:46 | |
*** Drago1 has quit IRC | 20:46 | |
*** julienvey has quit IRC | 20:46 | |
*** dmakogon_ has joined #heat | 20:46 | |
*** Drago1 has joined #heat | 20:46 | |
*** Drago1 has quit IRC | 20:48 | |
*** zz_gondoi is now known as gondoi | 20:48 | |
*** jrist has joined #heat | 20:52 | |
pas-ha | g'night all :) | 20:54 |
*** pas-ha has quit IRC | 20:54 | |
*** Drago1 has joined #heat | 20:57 | |
sjmc7 | oo, it is taxiing now | 20:57 |
sjmc7 | oops | 20:57 |
*** Drago1 has quit IRC | 20:59 | |
*** zns has quit IRC | 21:00 | |
*** gokrokve has quit IRC | 21:01 | |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Add volume backup/restore integration test https://review.openstack.org/113158 | 21:02 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Move test_autoscaling from tempest to heat https://review.openstack.org/112189 | 21:02 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Support classes for heat integration tests https://review.openstack.org/110496 | 21:02 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Integration test for software-config tools https://review.openstack.org/113711 | 21:02 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Move test_server_cfn_init from tempest to heat https://review.openstack.org/110497 | 21:02 |
*** pasquier-s has joined #heat | 21:03 | |
openstackgerrit | Lars Kellogg-Stedman proposed a change to openstack/heat: correct type/default mismatches in AWS_CloudWatch_Alarm.yaml https://review.openstack.org/123581 | 21:04 |
*** pasquier-s_ has quit IRC | 21:05 | |
*** tchaypo has joined #heat | 21:07 | |
*** tchaypo has left #heat | 21:09 | |
*** kopparam has joined #heat | 21:10 | |
*** Drago has quit IRC | 21:10 | |
*** Drago has joined #heat | 21:11 | |
*** kopparam has quit IRC | 21:16 | |
*** justin-8 has joined #heat | 21:31 | |
larsks | when using cloudwatch alarms implemented through ceilometer, where does one get the value to pass to the --watch argument of cfn-push-stats? | 21:33 |
larsks | calling get_resource on the alarm resource yields an arn:... uri (arn:openstack:heat::....). | 21:34 |
*** sjmc7 has quit IRC | 21:37 | |
*** jasond has quit IRC | 21:39 | |
*** andreaf has quit IRC | 21:41 | |
*** andreaf has joined #heat | 21:42 | |
*** stannie has quit IRC | 21:42 | |
*** sarob_away is now known as sarob | 21:43 | |
*** rbowen is now known as rcb_afk | 21:46 | |
larsks | zaneb: 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 |
uvirtbot | Launchpad bug 1373140 in heat "_to_ceilometer does not properly handle empty dimensions property" [Undecided,New] | 21:47 |
zaneb | larsks: looks like a bug. if a Dimension is required that should be enforced by the properties schema, and if not then it should work | 21:50 |
*** Drago1 has joined #heat | 21:51 | |
*** jdob has quit IRC | 21:53 | |
*** Drago1 has quit IRC | 21:54 | |
*** jmckind has quit IRC | 21:57 | |
*** sgordon_ has quit IRC | 21:57 | |
*** jasondotstar has quit IRC | 21:57 | |
*** harlowja is now known as harlowja_away | 22:01 | |
*** gondoi is now known as zz_gondoi | 22:03 | |
*** harlowja_away is now known as harlowja | 22:03 | |
*** achampion has quit IRC | 22:04 | |
stevebaker | larsks: did you solve your cfn-push-stats auth issue? | 22:04 |
*** tango has quit IRC | 22:04 | |
*** gokrokve has joined #heat | 22:06 | |
*** JayJ has quit IRC | 22:08 | |
*** EricGonczer_ has quit IRC | 22:09 | |
*** pasquier-s_ has joined #heat | 22:10 | |
*** pasquier-s has quit IRC | 22:11 | |
*** killer_prince has joined #heat | 22:15 | |
*** killer_prince is now known as lazy_prince | 22:15 | |
*** asalkeld has joined #heat | 22:20 | |
*** zns has joined #heat | 22:28 | |
*** andersonvom has quit IRC | 22:30 | |
*** openstackgerrit has quit IRC | 22:31 | |
*** openstackgerrit has joined #heat | 22:33 | |
openstackgerrit | A change was merged to openstack/heat: Fix outdated comment in KeystoneClientV3. https://review.openstack.org/121598 | 22:39 |
*** julienvey has joined #heat | 22:40 | |
*** reed has quit IRC | 22:41 | |
*** alexheneveld has joined #heat | 22:42 | |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Convert parse error to text type https://review.openstack.org/123600 | 22:45 |
sdake | radez never seen such an error | 22:46 |
*** alexheneveld_ has joined #heat | 22:47 | |
*** alexheneveld has quit IRC | 22:47 | |
*** alexheneveld_ is now known as alexheneveld | 22:47 | |
*** asalkeld has quit IRC | 22:50 | |
*** alexheneveld_ has joined #heat | 22:50 | |
*** alexheneveld has quit IRC | 22:51 | |
*** dims has quit IRC | 22:53 | |
*** dims has joined #heat | 22:54 | |
*** alexheneveld_ has quit IRC | 22:55 | |
*** alexheneveld_ has joined #heat | 22:55 | |
*** dims has quit IRC | 22:59 | |
*** alexheneveld_ has quit IRC | 23:01 | |
stevebaker | That change I posted ^ should fix the local unit test fails people are seeing | 23:01 |
*** alexheneveld has joined #heat | 23:01 | |
*** sarob is now known as sarob_away | 23:02 | |
*** asalkeld has joined #heat | 23:03 | |
*** alexheneveld_ has joined #heat | 23:06 | |
*** alexheneveld has quit IRC | 23:06 | |
*** alexheneveld_ is now known as alexheneveld | 23:06 | |
*** zns has quit IRC | 23:06 | |
*** achampion has joined #heat | 23:07 | |
*** sdake has quit IRC | 23:07 | |
*** alexheneveld has quit IRC | 23:11 | |
*** alexheneveld_ has joined #heat | 23:11 | |
*** achampio1 has joined #heat | 23:12 | |
*** beekneemech has joined #heat | 23:13 | |
*** alexheneveld has joined #heat | 23:13 | |
*** bnemec has quit IRC | 23:13 | |
*** andreaf has quit IRC | 23:13 | |
*** kopparam has joined #heat | 23:13 | |
*** andreaf has joined #heat | 23:14 | |
*** andreaf has quit IRC | 23:15 | |
*** achampion has quit IRC | 23:15 | |
*** alexheneveld_ has quit IRC | 23:16 | |
*** kopparam has quit IRC | 23:18 | |
*** alexheneveld has quit IRC | 23:19 | |
*** gokrokve_ has joined #heat | 23:19 | |
*** dims has joined #heat | 23:19 | |
*** sdake has joined #heat | 23:20 | |
*** david-lyle has quit IRC | 23:20 | |
*** gokrokve has quit IRC | 23:21 | |
*** david-lyle has joined #heat | 23:21 | |
*** dsneddon has quit IRC | 23:26 | |
*** alexheneveld has joined #heat | 23:26 | |
*** david-lyle has quit IRC | 23:26 | |
*** lipinski has quit IRC | 23:29 | |
*** Madie_Batz has joined #heat | 23:36 | |
*** hdd has quit IRC | 23:43 | |
*** Madie_Batz has quit IRC | 23:45 | |
*** Abner_Zulauf83 has joined #heat | 23:46 | |
*** Drago1 has joined #heat | 23:51 | |
*** oakstream has joined #heat | 23:52 | |
*** Qiming has joined #heat | 23:53 | |
*** Drago1 has quit IRC | 23:56 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!