*** tomek_adamczewsk has quit IRC | 00:11 | |
*** arbylee has quit IRC | 00:12 | |
*** IlyaE has joined #heat | 00:14 | |
*** andersonvom has quit IRC | 00:15 | |
*** scollier has quit IRC | 00:19 | |
*** gokrokve has quit IRC | 00:20 | |
*** kgriffs is now known as kgriffs_afk | 00:23 | |
*** john-n-seattle1 has left #heat | 00:26 | |
*** matsuhashi has joined #heat | 00:27 | |
*** duncanjw has quit IRC | 00:29 | |
sdake | brint apparently the rugrats want bukkit - so I installed that | 00:35 |
---|---|---|
sdake | I guess maybe I'll make a fedora template for one | 00:35 |
sdake | watching my kids admin a minecraft server is fascinating | 00:36 |
*** duncanjw has joined #heat | 00:36 | |
*** IlyaE has quit IRC | 00:37 | |
*** stannie has left #heat | 00:44 | |
*** gokrokve has joined #heat | 00:47 | |
*** pablosan has quit IRC | 00:48 | |
*** jdag has quit IRC | 00:54 | |
*** tteggel has quit IRC | 00:54 | |
*** alexpilotti has quit IRC | 00:55 | |
*** tteggel has joined #heat | 00:56 | |
*** jdag___ has joined #heat | 00:56 | |
*** arbylee has joined #heat | 00:57 | |
*** mkollaro has quit IRC | 00:58 | |
*** blamar has joined #heat | 01:00 | |
*** andersonvom has joined #heat | 01:05 | |
openstackgerrit | Lee Li proposed a change to openstack/python-heatclient: Remove dependent module py3kcompat https://review.openstack.org/73558 | 01:10 |
*** jdag___ has quit IRC | 01:12 | |
*** tteggel has quit IRC | 01:13 | |
*** jdag___ has joined #heat | 01:15 | |
*** zns has joined #heat | 01:15 | |
*** tteggel has joined #heat | 01:16 | |
openstackgerrit | A change was merged to openstack/heat: KeyError generated when using a provider template https://review.openstack.org/78514 | 01:19 |
*** Linz_ has joined #heat | 01:25 | |
*** lindsayk has quit IRC | 01:28 | |
*** zns has quit IRC | 01:28 | |
*** Linz has quit IRC | 01:28 | |
*** nosnos has joined #heat | 01:31 | |
*** jergerber has joined #heat | 01:37 | |
*** nosnos has quit IRC | 01:38 | |
*** nosnos has joined #heat | 01:38 | |
*** scollier has joined #heat | 01:40 | |
*** che-arne has quit IRC | 01:42 | |
*** david-lyle has joined #heat | 01:42 | |
*** achampio1 has joined #heat | 01:45 | |
*** samstav has joined #heat | 01:46 | |
*** achampion has quit IRC | 01:46 | |
*** achampion has joined #heat | 01:50 | |
*** achampio1 has quit IRC | 01:50 | |
*** alexheneveld has quit IRC | 01:53 | |
*** alexheneveld has joined #heat | 01:55 | |
openstackgerrit | Jun Jie Nan proposed a change to openstack/python-heatclient: get_file: encode non utf-8 encoding files via base64 https://review.openstack.org/76443 | 01:55 |
*** nanjj has joined #heat | 01:55 | |
*** IlyaE has joined #heat | 01:58 | |
stevebaker | SpamapS: latest binary get_file, what thinkith ye? https://review.openstack.org/#/c/76443/7 | 02:07 |
*** killer_prince has quit IRC | 02:10 | |
*** blamar has quit IRC | 02:13 | |
*** IlyaE has quit IRC | 02:13 | |
*** ChenXiao has joined #heat | 02:15 | |
*** harlowja is now known as harlowja_away | 02:21 | |
openstackgerrit | Lee Li proposed a change to openstack/python-heatclient: Remove dependent module py3kcompat https://review.openstack.org/73558 | 02:28 |
openstackgerrit | A change was merged to openstack/heat: Reimplement L3Agent as router's property https://review.openstack.org/69303 | 02:32 |
*** che-arne has joined #heat | 02:35 | |
*** erkules_ has joined #heat | 02:37 | |
*** duncanjw has quit IRC | 02:38 | |
*** erkules has quit IRC | 02:40 | |
*** liang has joined #heat | 02:45 | |
*** samstav has quit IRC | 02:49 | |
*** samstav has joined #heat | 02:51 | |
*** varora- has left #heat | 02:53 | |
*** samstav has quit IRC | 02:59 | |
*** harlowja_away is now known as harlowja | 03:06 | |
SpamapS | stevebaker: I really dislike the !!binary thing, as it is just some weird convention that cloud-init came up with. Also we have very reliable methods of detecting "might be binary" versus "definitely isn't" .. so I'm not sure why there is such hesitance to use those methods. But I think I should probably just step away from the whole thing. :-P | 03:08 |
stevebaker | SpamapS: !!binary is gone | 03:08 |
SpamapS | stevebaker: but trusting that something that decodes as utf-8 is intended to be UTF-8 is a fail. | 03:09 |
SpamapS | stevebaker: IMO get_file needs an optional content-type override parameter, and we should be using the server's content-type if it is set.. otherwise application/octet-stream | 03:11 |
stevebaker | SpamapS: can you point nanjj at how he should be detecting binary? Or should we implement a variant of get_file which lets you explicitly specify the content type? | 03:11 |
stevebaker | snap | 03:11 |
SpamapS | stevebaker: I suggested using magic (HORRIBLE library name) to detect it if we are going to do detection. It is actually almost as unreliable as content.decode('utf-8') but at least it is an external library that is maintained and has a chance. | 03:12 |
SpamapS | stevebaker: but really.. trust server content-type if set.. override param for times when it isn't reliable, and default to binary.. that should produce the best overall user experience and no surprises. | 03:14 |
stevebaker | SpamapS: server content type? this is on the client | 03:14 |
*** matsuhashi has quit IRC | 03:14 | |
stevebaker | SpamapS: and it has to be transferred via json, so we need to know whether to base64 it | 03:15 |
SpamapS | stevebaker: urlutils.urlopen() is fetching if it isn't file:/// | 03:15 |
stevebaker | SpamapS: ah, it will be file:// in many cases | 03:15 |
SpamapS | stevebaker: this wouldn't even have probably been detected if urlopen() used a sane default.. but it defaults to text/plain .. which is.. _ridiculous_ | 03:17 |
SpamapS | as text/plain implies a very limited set of data. | 03:17 |
stevebaker | SpamapS: and however we get the content-type, we probably need to get that url->content-type mapping all the way to heat engine, which would need API changes | 03:18 |
*** killer_prince has joined #heat | 03:19 | |
SpamapS | stevebaker: nah, this is just whether or not to base64 right? | 03:19 |
stevebaker | SpamapS: yeah, might need the content-type later | 03:20 |
SpamapS | you know.. thinking about it.. hm | 03:20 |
* SpamapS putting it more in context now | 03:20 | |
*** matsuhashi has joined #heat | 03:20 | |
SpamapS | Why not try to json.encode it and if that fails, base64? | 03:20 |
stevebaker | SpamapS: for example, the chef hook will need to know whether its a tar.gz or a zip. It doesn't even have the filename at that point | 03:20 |
*** jergerber has quit IRC | 03:21 | |
SpamapS | well wait.. isn't that sort of on the template author / hook author ? | 03:21 |
stevebaker | yeah | 03:21 |
SpamapS | ok so I may have been dead wrong here.. | 03:25 |
SpamapS | just playing with json.dumps .. | 03:25 |
SpamapS | I think nanjj may have just done a poor job of communicating here... if this is really just "whether or not to base64" .. and we don't actually need to transmit the content-type ... | 03:26 |
SpamapS | then the current approach _is_ valid> | 03:26 |
*** sdake_ has joined #heat | 03:26 | |
SpamapS | stevebaker: ok so this is interesting.. | 03:28 |
SpamapS | >>> json.dumps(base64.encodestring(b"\0\x99")) | 03:28 |
SpamapS | '"AJk=\\n"' | 03:28 |
SpamapS | >>> json.loads(json.dumps(base64.encodestring(b"\0\x99"))) | 03:28 |
SpamapS | u'AJk=\n' | 03:28 |
SpamapS | b"\0\x99" is entirely _invalid_ utf-8 | 03:28 |
stevebaker | hmm | 03:30 |
SpamapS | my point being, u'AJk=\n' probably isn't what you want... | 03:30 |
*** matsuhashi has quit IRC | 03:30 | |
stevebaker | yes | 03:30 |
SpamapS | oh wait it is :) | 03:31 |
sdake_ | ugh had to reinstall laptop | 03:31 |
SpamapS | >>> base64.decodestring(json.loads(json.dumps(base64.encodestring(b"\0\x99")))) | 03:31 |
SpamapS | '\x00\x99' | 03:31 |
SpamapS | stevebaker: forgot to decode the base64 duh :) | 03:31 |
SpamapS | stevebaker: so I think this means that the hook script has to somehow magically know that it is base64 data that needs to be decoded? | 03:32 |
*** matsuhashi has joined #heat | 03:33 | |
stevebaker | lets solve that later, there will be ways | 03:33 |
SpamapS | stevebaker: o-k, time to apologize to nanjj ;) | 03:34 |
*** duncanjw has joined #heat | 03:35 | |
stevebaker | heh | 03:35 |
*** jasond has joined #heat | 03:36 | |
*** daneyon has quit IRC | 03:37 | |
*** daneyon has joined #heat | 03:38 | |
*** daneyon has quit IRC | 03:38 | |
SpamapS | stevebaker: Ok. I do think that we have now deferred the pain of detection to the server-side hooks, but I agree that is a separate issue and this is still better than just failing client side. | 03:38 |
stevebaker | yes, sounds like progress | 03:39 |
*** Linz_ has quit IRC | 03:40 | |
*** Linz has joined #heat | 03:41 | |
*** matsuhashi has quit IRC | 03:42 | |
nanjj | :-) | 03:44 |
SpamapS | stevebaker: I'd really like to see an immediate follow-up patch that adds a flag to let the other side know we had to base64 encode automatically. | 03:44 |
SpamapS | stevebaker: since there will be corner cases where people want to send files that might actually cleanly base64 decode, but that they want to leave untouched | 03:45 |
nanjj | I think no need to handle in hook | 03:45 |
*** duncanjw has quit IRC | 03:46 | |
stevebaker | SpamapS: that could be done as a software config resource input | 03:46 |
nanjj | cloud init has a encoding tage which end users can specify | 03:46 |
stevebaker | nanjj: cloud-init is for boot only. Most uses will be specifying a zip archive containing config scripts for config/deployment resources | 03:47 |
SpamapS | Well frankly, cloud-init does it right with multi-part mime instead of json. | 03:47 |
*** blamar has joined #heat | 03:47 | |
SpamapS | Makes sure all blocks have an explicit content-type | 03:48 |
stevebaker | true that | 03:48 |
nanjj | yes, it's true | 03:54 |
*** sgordon has quit IRC | 03:57 | |
stevebaker | SpamapS: something for the v2 api ;) | 03:58 |
*** nosnos has quit IRC | 03:58 | |
SpamapS | Or just use that now in the current API.. because mime-multipart is _entirely_ reliably detectable. | 03:59 |
*** Akshik has joined #heat | 04:04 | |
*** ramishra has joined #heat | 04:07 | |
*** ramishra_ has joined #heat | 04:08 | |
*** ramishra has quit IRC | 04:12 | |
*** akuznetsov has joined #heat | 04:16 | |
*** asalkeld has quit IRC | 04:17 | |
*** andersonvom has quit IRC | 04:18 | |
*** fandi has joined #heat | 04:21 | |
*** killer_prince has quit IRC | 04:23 | |
*** chandan_kumar has joined #heat | 04:31 | |
*** asalkeld has joined #heat | 04:31 | |
*** cmyster has joined #heat | 04:32 | |
*** cmyster has joined #heat | 04:32 | |
cmyster | Morning | 04:39 |
*** nanjj has quit IRC | 04:40 | |
openstackgerrit | A change was merged to openstack/heat: Removing unnecessary required=True options https://review.openstack.org/79592 | 04:46 |
*** Akshik has quit IRC | 04:50 | |
openstackgerrit | A change was merged to openstack/heat: Fix InternalException raised on stack-show https://review.openstack.org/76429 | 04:50 |
openstackgerrit | A change was merged to openstack/heat: Default properties to the empty dict in ResourceGroup https://review.openstack.org/79959 | 04:50 |
*** Akshik has joined #heat | 04:55 | |
*** matsuhashi has joined #heat | 04:55 | |
*** nosnos has joined #heat | 04:59 | |
*** yogesh has joined #heat | 05:05 | |
*** achampion has quit IRC | 05:07 | |
*** nanjj has joined #heat | 05:20 | |
*** IlyaE has joined #heat | 05:22 | |
*** nkhare has joined #heat | 05:25 | |
*** gokrokve has quit IRC | 05:26 | |
*** Akshik has quit IRC | 05:29 | |
openstackgerrit | Steve Baker proposed a change to openstack/python-heatclient: Workaround failing pypy gate job https://review.openstack.org/81175 | 05:34 |
stevebaker | Could ^ get some urgent reviewing attention if the pypy check passes? All of the python-heatclient reviews are failing currently | 05:37 |
*** Akshik has joined #heat | 05:37 | |
*** arbylee has quit IRC | 05:37 | |
cmyster | evening stevebaker, got a few minutes for me ? | 05:38 |
*** akuznetsov has quit IRC | 05:39 | |
*** asalkeld has quit IRC | 05:39 | |
stevebaker | cmyster: a few, I may have drunk too much Yellow Snow to be useful though | 05:39 |
cmyster | to each his own... | 05:40 |
stevebaker | :) | 05:40 |
*** harlowja is now known as harlowja_away | 05:40 | |
*** ramishra_ has quit IRC | 05:46 | |
openstackgerrit | A change was merged to openstack/heat: Include environment resource in documentation https://review.openstack.org/79374 | 05:46 |
*** duncanjw has joined #heat | 05:47 | |
*** duncanjw has quit IRC | 05:51 | |
*** asalkeld has joined #heat | 05:52 | |
*** Michalik- has quit IRC | 05:53 | |
*** ramishra has joined #heat | 05:53 | |
*** gokrokve has joined #heat | 05:57 | |
*** gokrokve_ has joined #heat | 06:03 | |
*** gokrokve has quit IRC | 06:06 | |
*** akuznetsov has joined #heat | 06:06 | |
*** gokrokve_ has quit IRC | 06:08 | |
*** akuznetsov has quit IRC | 06:13 | |
openstackgerrit | Jenkins proposed a change to openstack/heat: Imported Translations from Transifex https://review.openstack.org/72566 | 06:13 |
lifeless | stevebaker: how do you make yellow snow :P | 06:14 |
cmyster | don't go there dude | 06:16 |
*** yogesh has quit IRC | 06:25 | |
*** gokrokve has joined #heat | 06:29 | |
*** Akshik_ has joined #heat | 06:29 | |
*** matsuhashi has quit IRC | 06:30 | |
*** cfriesen_ has quit IRC | 06:31 | |
*** Akshik has quit IRC | 06:33 | |
*** gokrokve has quit IRC | 06:33 | |
*** arbylee has joined #heat | 06:37 | |
*** liang has quit IRC | 06:38 | |
*** Michalik has joined #heat | 06:40 | |
*** saju_m has joined #heat | 06:44 | |
*** saju_m has quit IRC | 06:45 | |
*** saju_m has joined #heat | 06:46 | |
*** arbylee has quit IRC | 06:47 | |
*** matsuhashi has joined #heat | 06:49 | |
openstackgerrit | Jun Jie Nan proposed a change to openstack/python-heatclient: get_file: encode non utf-8 encoding files via base64 https://review.openstack.org/76443 | 06:50 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/python-heatclient: get_file: do not read same url once again https://review.openstack.org/80882 | 06:50 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/python-heatclient: Workaround failing pypy gate job https://review.openstack.org/81175 | 06:50 |
*** skraynev_afk is now known as skraynev | 06:51 | |
skraynev | Morning | 06:53 |
skraynev | stevebaker, are you still here? | 06:53 |
*** ChenXiao has quit IRC | 06:53 | |
cmyster | mornin skraynev | 06:58 |
skraynev | hi, cmyster | 06:58 |
*** tspatzier has joined #heat | 06:59 | |
*** ChenXiao has joined #heat | 07:14 | |
*** Akshik_ has quit IRC | 07:18 | |
*** ChenXiao has quit IRC | 07:29 | |
*** gokrokve has joined #heat | 07:29 | |
*** ChenXiao has joined #heat | 07:29 | |
*** lazy_prince has joined #heat | 07:33 | |
*** gokrokve has quit IRC | 07:34 | |
openstackgerrit | A change was merged to openstack/heat: Set statuscode=404 in NotFoundException in tests https://review.openstack.org/77565 | 07:37 |
*** pas-ha has joined #heat | 07:44 | |
*** duncanjw has joined #heat | 07:47 | |
*** jprovazn has joined #heat | 07:48 | |
*** duncanjw has quit IRC | 07:52 | |
*** e0ne has joined #heat | 07:53 | |
*** ramishra has quit IRC | 08:00 | |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Insertion port id in address attribute of server https://review.openstack.org/79969 | 08:01 |
*** ppetit has quit IRC | 08:04 | |
*** ppetit has joined #heat | 08:06 | |
*** alexheneveld has quit IRC | 08:09 | |
*** lindsayk has joined #heat | 08:10 | |
*** nati_ueno has joined #heat | 08:11 | |
*** lindsayk has quit IRC | 08:13 | |
*** ramishra has joined #heat | 08:13 | |
*** lindsayk has joined #heat | 08:15 | |
*** e0ne_ has joined #heat | 08:16 | |
*** lindsayk has quit IRC | 08:17 | |
*** jrist has joined #heat | 08:19 | |
*** e0ne has quit IRC | 08:19 | |
*** jprovazn has quit IRC | 08:21 | |
*** akuznetsov has joined #heat | 08:22 | |
*** ramishra has quit IRC | 08:23 | |
*** jistr has joined #heat | 08:26 | |
*** jistr is now known as jistr|mtg | 08:27 | |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Using resolving properties for update https://review.openstack.org/80569 | 08:28 |
*** alexheneveld has joined #heat | 08:30 | |
*** gokrokve has joined #heat | 08:30 | |
*** ramishra has joined #heat | 08:31 | |
*** gokrokve has quit IRC | 08:35 | |
*** TonyBurn has joined #heat | 08:35 | |
*** alexheneveld has quit IRC | 08:37 | |
*** arbylee has joined #heat | 08:42 | |
*** mkerrin1 has quit IRC | 08:43 | |
openstackgerrit | Jenkins proposed a change to openstack/heat: Updated from global requirements https://review.openstack.org/76689 | 08:45 |
*** ramishra has quit IRC | 08:47 | |
*** arbylee has quit IRC | 08:47 | |
*** stannie has joined #heat | 08:47 | |
*** derekh has joined #heat | 08:47 | |
*** mkerrin has joined #heat | 08:49 | |
*** saju_m has quit IRC | 08:50 | |
openstackgerrit | Jenkins proposed a change to openstack/python-heatclient: Updated from global requirements https://review.openstack.org/76698 | 08:51 |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Make OS::Nova::Server networks property updatable https://review.openstack.org/74299 | 08:52 |
*** saju_m has joined #heat | 08:56 | |
*** Akshik has joined #heat | 08:56 | |
*** ramishra has joined #heat | 09:03 | |
*** Akshik has quit IRC | 09:04 | |
*** Akshik has joined #heat | 09:11 | |
*** Akshik has quit IRC | 09:12 | |
*** Akshik has joined #heat | 09:12 | |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Using resolving properties for update https://review.openstack.org/80569 | 09:13 |
*** nati_ueno has quit IRC | 09:13 | |
*** Akshik_ has joined #heat | 09:14 | |
*** Akshik has quit IRC | 09:18 | |
*** alexheneveld has joined #heat | 09:24 | |
*** renlt has joined #heat | 09:29 | |
*** gokrokve has joined #heat | 09:31 | |
*** DaveJ__ has joined #heat | 09:31 | |
*** renlt has quit IRC | 09:35 | |
*** gokrokve has quit IRC | 09:35 | |
*** tomek_adamczewsk has joined #heat | 09:36 | |
*** Akshik_ is now known as Akshik | 09:37 | |
*** akuznetsov has quit IRC | 09:39 | |
*** tspatzier has quit IRC | 09:41 | |
*** Michalik has quit IRC | 09:43 | |
*** akuznetsov has joined #heat | 09:43 | |
*** bada has joined #heat | 09:44 | |
*** Michalik has joined #heat | 09:46 | |
*** ChenXiao has quit IRC | 09:47 | |
*** akuznetsov has quit IRC | 09:47 | |
*** jamieh has joined #heat | 09:48 | |
*** jamieh is now known as Guest83456 | 09:48 | |
*** duncanjw has joined #heat | 09:48 | |
*** erkules_ has quit IRC | 09:51 | |
*** duncanjw has quit IRC | 09:52 | |
*** lindsayk has joined #heat | 09:54 | |
*** tspatzier has joined #heat | 09:57 | |
*** nosnos_ has joined #heat | 10:02 | |
*** akuznetsov has joined #heat | 10:05 | |
*** nosnos has quit IRC | 10:05 | |
*** tomek_adamczewsk has quit IRC | 10:06 | |
*** nanjj has quit IRC | 10:09 | |
*** lindsayk1 has joined #heat | 10:20 | |
*** nati_ueno has joined #heat | 10:20 | |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Propagate files in nested stacks https://review.openstack.org/79899 | 10:21 |
*** lindsayk has quit IRC | 10:23 | |
*** matsuhashi has quit IRC | 10:25 | |
*** duncanjw has joined #heat | 10:28 | |
*** tspatzier has quit IRC | 10:29 | |
*** bvandenh has joined #heat | 10:31 | |
*** gokrokve has joined #heat | 10:32 | |
*** nati_ueno has quit IRC | 10:33 | |
*** gokrokve has quit IRC | 10:36 | |
*** arbylee has joined #heat | 10:43 | |
*** mkollaro has joined #heat | 10:44 | |
*** arbylee has quit IRC | 10:47 | |
*** tomek_adamczewsk has joined #heat | 10:51 | |
*** mkollaro has quit IRC | 10:57 | |
*** nkhare has quit IRC | 10:58 | |
*** lipinski has joined #heat | 11:00 | |
*** nkhare has joined #heat | 11:00 | |
lipinski | Got a question about Heat/HOT templates - How can I "parameterize" the networks for a server? | 11:00 |
*** jistr|mtg has quit IRC | 11:05 | |
lipinski | or, maybe a different question - is there a function (intrinsic) that returns a list such that I can pass teh result of that to the networks property of a Nova::Server resource? | 11:07 |
*** jrist has quit IRC | 11:10 | |
*** sgordon has joined #heat | 11:10 | |
*** rwsu has quit IRC | 11:13 | |
*** rwsu has joined #heat | 11:14 | |
*** tspatzier has joined #heat | 11:17 | |
pas-ha | get_attr? | 11:17 |
pas-ha | if you need to get an attribute of a resource created by heat | 11:17 |
pas-ha | if the resource has said attribute defined | 11:18 |
*** jprovazn has joined #heat | 11:20 | |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Insertion port id in address attribute of server https://review.openstack.org/79969 | 11:20 |
*** jrist has joined #heat | 11:24 | |
*** e0ne_ has quit IRC | 11:26 | |
lipinski | is there a way to build a list dynamically? Essentially what I'm trying to do is have a way where a template parameter can drive the population of the networks property | 11:28 |
lipinski | e.g., user passes in a JSON of say 3 networks - that defines that VM_A will have 3 networks listed under networks: | 11:28 |
*** nosnos_ has quit IRC | 11:30 | |
*** nosnos has joined #heat | 11:31 | |
*** gokrokve has joined #heat | 11:32 | |
*** rpothier_ has joined #heat | 11:33 | |
*** rpothier has quit IRC | 11:34 | |
*** fandi has quit IRC | 11:35 | |
*** gokrokve has quit IRC | 11:37 | |
*** tomek_adamczewsk has quit IRC | 11:39 | |
*** david-lyle has quit IRC | 11:46 | |
*** tspatzier has quit IRC | 11:46 | |
openstackgerrit | A change was merged to openstack/heat: Fix start_with_acquired_lock - pass kwargs to func https://review.openstack.org/76251 | 11:51 |
pas-ha | lipinski: get_file? | 11:51 |
*** e0ne has joined #heat | 11:51 | |
*** rpothier_ has quit IRC | 11:52 | |
*** arbylee has joined #heat | 11:54 | |
*** radez_g0n3 is now known as radez | 11:56 | |
*** tomek_adamczewsk has joined #heat | 11:58 | |
*** ramishra has quit IRC | 12:01 | |
*** lindsayk1 has quit IRC | 12:01 | |
*** ramishra has joined #heat | 12:03 | |
*** jcru has joined #heat | 12:06 | |
*** Linz has quit IRC | 12:06 | |
*** Linz has joined #heat | 12:07 | |
*** jcru has quit IRC | 12:07 | |
*** jcru has joined #heat | 12:07 | |
*** arbylee has quit IRC | 12:08 | |
*** arbylee has joined #heat | 12:08 | |
*** sgordon has quit IRC | 12:08 | |
*** bada has quit IRC | 12:10 | |
*** jprovazn has quit IRC | 12:11 | |
*** bada has joined #heat | 12:11 | |
*** jcru has quit IRC | 12:12 | |
*** e0ne has quit IRC | 12:13 | |
*** aweiteka has joined #heat | 12:14 | |
*** mkollaro has joined #heat | 12:17 | |
*** tspatzier has joined #heat | 12:18 | |
*** achampion has joined #heat | 12:20 | |
*** faramir1 has joined #heat | 12:23 | |
*** rpothier has joined #heat | 12:30 | |
*** dims has quit IRC | 12:31 | |
*** lindsayk has joined #heat | 12:32 | |
*** gokrokve has joined #heat | 12:33 | |
*** dims has joined #heat | 12:34 | |
*** Akshik has quit IRC | 12:35 | |
*** bada_ has joined #heat | 12:35 | |
*** nkhare has quit IRC | 12:38 | |
*** gokrokve has quit IRC | 12:38 | |
*** bada has quit IRC | 12:39 | |
*** arbylee has quit IRC | 12:40 | |
*** lindsayk has quit IRC | 12:40 | |
*** e0ne has joined #heat | 12:43 | |
*** e0ne has quit IRC | 12:48 | |
*** lazy_prince is now known as killer_prince | 12:51 | |
*** achampion has quit IRC | 12:53 | |
*** mwheckmann has joined #heat | 12:53 | |
*** arbylee has joined #heat | 12:55 | |
*** Linz has quit IRC | 12:55 | |
*** cmyster has quit IRC | 12:57 | |
*** Linz has joined #heat | 12:57 | |
*** mkollaro has quit IRC | 13:01 | |
*** mkollaro1 has joined #heat | 13:01 | |
*** faramir1 has quit IRC | 13:11 | |
*** alexheneveld has quit IRC | 13:11 | |
*** e0ne has joined #heat | 13:13 | |
*** e0ne has quit IRC | 13:13 | |
*** e0ne has joined #heat | 13:13 | |
*** ramishra has quit IRC | 13:14 | |
*** sgordon has joined #heat | 13:17 | |
*** ppetit has quit IRC | 13:23 | |
*** ChenXiao has joined #heat | 13:27 | |
*** arbylee has quit IRC | 13:32 | |
*** jprovazn has joined #heat | 13:32 | |
*** gokrokve has joined #heat | 13:34 | |
*** ChenXiao has quit IRC | 13:35 | |
*** ChenXiao has joined #heat | 13:35 | |
*** gokrokve has quit IRC | 13:38 | |
*** kgriffs_afk is now known as kgriffs | 13:39 | |
*** achampion has joined #heat | 13:39 | |
*** ChenXiao has quit IRC | 13:40 | |
*** ChenXiao has joined #heat | 13:40 | |
*** ChenXiao has left #heat | 13:41 | |
*** sbadia has quit IRC | 13:42 | |
*** blomquisg has joined #heat | 13:43 | |
*** e0ne has quit IRC | 13:44 | |
*** e0ne has joined #heat | 13:45 | |
*** tspatzier has quit IRC | 13:48 | |
*** jprovazn has quit IRC | 13:49 | |
*** sbadia has joined #heat | 13:49 | |
*** arbylee has joined #heat | 13:51 | |
*** sabeen has joined #heat | 13:51 | |
*** arbylee has quit IRC | 13:52 | |
*** arbylee has joined #heat | 13:52 | |
*** gokrokve has joined #heat | 13:52 | |
*** samstav has joined #heat | 13:52 | |
*** varora- has joined #heat | 13:54 | |
*** vijendar has joined #heat | 13:54 | |
*** vijendar has quit IRC | 13:55 | |
*** vijendar has joined #heat | 13:55 | |
sdake | morning | 13:56 |
*** sbadia has quit IRC | 13:56 | |
*** nosnos has quit IRC | 13:56 | |
*** mkollaro has joined #heat | 13:56 | |
*** sbadia has joined #heat | 13:59 | |
*** mkollaro1 has quit IRC | 13:59 | |
*** jrist has quit IRC | 14:01 | |
*** tomek_adamczewsk has quit IRC | 14:02 | |
*** pafuent has joined #heat | 14:05 | |
*** andersonvom has joined #heat | 14:06 | |
lipinski | do heat environment files support intrinsic functions, e.g., str_replace? | 14:07 |
sdake | lipinski my initial guess would be yes | 14:07 |
lipinski | ok - never seen any examples like that - they all seem like simple key:value type of things... | 14:07 |
lipinski | was hoping to use a str_replace template to use a parameter as a path for resource_resigtry | 14:08 |
sdake | i am not certain however | 14:08 |
lipinski | would that be in the heatclient code? | 14:08 |
sdake | try it out and see what happens :) | 14:08 |
sdake | heatclient jsut sends the environment to heat api which sends to heat engine, the intrinsic execution occurs inside heat engine | 14:09 |
lipinski | ok. | 14:09 |
*** che-arne has quit IRC | 14:09 | |
*** varora- has left #heat | 14:09 | |
lipinski | I can't because of my Openstack system is currently "under the weather" thanks to Mysql filling up a filesystem. Waiting for it to be repaired. | 14:09 |
*** jrist has joined #heat | 14:15 | |
*** swygue has joined #heat | 14:18 | |
*** tspatzier has joined #heat | 14:19 | |
*** alexheneveld has joined #heat | 14:21 | |
sdake | ya running the db out of disk will result in bad things happening | 14:21 |
*** wchrisj has joined #heat | 14:21 | |
*** alexpilotti has joined #heat | 14:22 | |
sdake | intrinsics may not work in environments, I am just not sure | 14:22 |
sdake | shardy would know, but he is traveling | 14:22 |
openstackgerrit | Anderson Mesquita proposed a change to openstack/python-heatclient: Add stack-preview support https://review.openstack.org/74498 | 14:25 |
*** jcru has joined #heat | 14:25 | |
*** jergerber has joined #heat | 14:27 | |
*** cfriesen_ has joined #heat | 14:31 | |
*** sabeen has quit IRC | 14:31 | |
*** sabeen has joined #heat | 14:31 | |
*** alexheneveld has quit IRC | 14:34 | |
*** david-lyle has joined #heat | 14:36 | |
*** alexheneveld has joined #heat | 14:37 | |
*** che-arne has joined #heat | 14:46 | |
*** ryansb is now known as fakeryansb | 14:49 | |
*** fakeryansb is now known as ryansb | 14:49 | |
*** andrew_plunk has joined #heat | 14:52 | |
*** akuznetsov has quit IRC | 14:56 | |
*** rcleere has joined #heat | 14:59 | |
Qiming | hi, everyone | 15:00 |
Qiming | just posted to the openstack-dev mailinglist a question about VM failure detection | 15:01 |
*** skraynev is now known as skraynev_afk | 15:01 | |
*** akuznetsov has joined #heat | 15:02 | |
Qiming | please comment. +100, -100, flowers, eggs, shoes are all welcomed, :) | 15:02 |
Qiming | http://lists.openstack.org/pipermail/openstack-dev/2014-March/030305.html | 15:02 |
*** chandan_kumar has quit IRC | 15:02 | |
*** blamar has quit IRC | 15:03 | |
*** duncanjw has quit IRC | 15:03 | |
*** chandan_kumar has joined #heat | 15:04 | |
*** jprovazn has joined #heat | 15:06 | |
*** duncanjw has joined #heat | 15:08 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Add handle_update to VolumeAttachment https://review.openstack.org/72681 | 15:09 |
*** duncanjw has quit IRC | 15:13 | |
*** jprovazn has quit IRC | 15:13 | |
*** blamar has joined #heat | 15:17 | |
*** pablosan has joined #heat | 15:17 | |
*** pablosan has quit IRC | 15:17 | |
*** pablosan has joined #heat | 15:18 | |
*** Guest83456 has quit IRC | 15:20 | |
*** jamieh has joined #heat | 15:20 | |
*** jamieh is now known as Guest62308 | 15:21 | |
*** saju_m has quit IRC | 15:23 | |
*** akuznetsov has quit IRC | 15:31 | |
*** akuznetsov has joined #heat | 15:32 | |
*** gokrokve_ has joined #heat | 15:34 | |
*** jrist has quit IRC | 15:37 | |
*** gokrokve has quit IRC | 15:37 | |
*** saju_m has joined #heat | 15:40 | |
*** duncanjw has joined #heat | 15:42 | |
*** lindsayk has joined #heat | 15:42 | |
*** Qiming has left #heat | 15:48 | |
*** che-arne has quit IRC | 15:50 | |
*** jrist has joined #heat | 15:53 | |
*** daneyon has joined #heat | 15:55 | |
*** rupsky has joined #heat | 15:56 | |
*** saju_m has quit IRC | 15:57 | |
*** rupsky has quit IRC | 15:58 | |
*** yidclare has joined #heat | 16:01 | |
*** daneyon has quit IRC | 16:01 | |
*** daneyon has joined #heat | 16:02 | |
*** sbadia has quit IRC | 16:05 | |
*** lindsayk has quit IRC | 16:06 | |
*** alexheneveld has quit IRC | 16:06 | |
openstackgerrit | Richard Lee proposed a change to openstack/heat: Add save_admin_pass property to CloudServer https://review.openstack.org/79481 | 16:09 |
openstackgerrit | Richard Lee proposed a change to openstack/heat: Add admin_pass as attribute to CloudServer https://review.openstack.org/72745 | 16:09 |
*** wchrisj has quit IRC | 16:11 | |
*** alexheneveld has joined #heat | 16:12 | |
*** pablosan is now known as ZZpablosan | 16:12 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Order imports in alphabetical order (7/9) https://review.openstack.org/71517 | 16:12 |
*** wchrisj_ has joined #heat | 16:13 | |
*** ppetit has joined #heat | 16:18 | |
*** metral has left #heat | 16:19 | |
*** mkollaro has quit IRC | 16:22 | |
*** tomek_adamczewsk has joined #heat | 16:22 | |
*** radez is now known as radez_g0n3 | 16:24 | |
*** radez_g0n3 is now known as radez | 16:24 | |
*** duncanjw has quit IRC | 16:25 | |
*** tspatzier has quit IRC | 16:27 | |
*** duncanjw has joined #heat | 16:30 | |
*** chandankumar_ has joined #heat | 16:34 | |
*** blomquisg has quit IRC | 16:34 | |
*** chandan_kumar has quit IRC | 16:37 | |
*** jrist has quit IRC | 16:38 | |
*** tspatzier has joined #heat | 16:40 | |
*** arbylee has quit IRC | 16:44 | |
*** e0ne_ has joined #heat | 16:45 | |
*** bada__ has joined #heat | 16:45 | |
*** arbylee has joined #heat | 16:48 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Order imports in alphabetical order (8/9) https://review.openstack.org/71518 | 16:48 |
*** bada_ has quit IRC | 16:48 | |
*** e0ne has quit IRC | 16:49 | |
*** Linz_ has joined #heat | 16:52 | |
*** harlowja_away is now known as harlowja | 16:53 | |
*** tomek_adamczewsk has quit IRC | 16:54 | |
*** pvaneck has joined #heat | 16:55 | |
*** Linz has quit IRC | 16:55 | |
*** sergmelikyan has quit IRC | 16:57 | |
*** sergmelikyan has joined #heat | 16:57 | |
*** tspatzier has quit IRC | 17:00 | |
SpamapS | greghaynes: https://review.openstack.org/#/c/80116/ <-- you going to pick that one back up? | 17:02 |
*** pas-ha has quit IRC | 17:04 | |
*** arbylee has quit IRC | 17:10 | |
jasond` | SpamapS: what do you think the priority of this is? https://bugs.launchpad.net/heat/+bug/1289560 | 17:12 |
shardy | jasond`: medium IMO | 17:16 |
*** TonyBurn has quit IRC | 17:17 | |
jasond` | shardy: thanks | 17:17 |
*** killer_prince is now known as lazy_prince | 17:26 | |
SpamapS | jasond`: agree with shardy. :) | 17:26 |
stevebaker | morning | 17:27 |
jasond` | SpamapS: cool, thanks | 17:28 |
jasond` | stevebaker: morning | 17:28 |
*** lindsayk has joined #heat | 17:29 | |
*** rpothier has quit IRC | 17:30 | |
*** rpothier has joined #heat | 17:31 | |
*** bada has joined #heat | 17:33 | |
*** Guest62308 has quit IRC | 17:34 | |
*** alexheneveld has quit IRC | 17:35 | |
*** bada__ has quit IRC | 17:35 | |
*** che-arne has joined #heat | 17:36 | |
greghaynes | SpamapS: Yes, hoping to | 17:37 |
*** jamieh has joined #heat | 17:37 | |
*** jamieh is now known as Guest99315 | 17:38 | |
greghaynes | Might need to ask for a little help with writing that test today, getting started with all that is a bit of a rabbit hole of code readin | 17:40 |
*** arbylee has joined #heat | 17:41 | |
*** ppetit has quit IRC | 17:41 | |
*** arbylee1 has joined #heat | 17:41 | |
*** alexheneveld has joined #heat | 17:42 | |
*** blomquisg has joined #heat | 17:43 | |
*** arbylee has quit IRC | 17:45 | |
stevebaker | shardy: can you confirm that this looks correct? https://review.openstack.org/#/c/80867/ | 17:46 |
*** yogesh has joined #heat | 17:46 | |
*** varora- has joined #heat | 17:47 | |
*** duncanjw has quit IRC | 17:49 | |
*** jcru has quit IRC | 17:50 | |
*** gokrokve_ has quit IRC | 17:52 | |
*** sbadia has joined #heat | 17:55 | |
shardy | stevebaker: yup, lgtm! | 17:57 |
stevebaker | shardy: ok, thanks. There is this as well https://review.openstack.org/#/c/80868/1 | 17:58 |
*** ZZpablosan is now known as pablosan | 17:58 | |
*** arbylee has joined #heat | 17:59 | |
*** arbylee1 has quit IRC | 17:59 | |
*** arbylee has quit IRC | 17:59 | |
*** arbylee has joined #heat | 18:00 | |
*** derekh has quit IRC | 18:00 | |
*** pablosan is now known as ZZpablosan | 18:00 | |
*** harlowja is now known as harlowja_away | 18:01 | |
*** harlowja_away is now known as harlowja | 18:02 | |
*** shakamunyi has joined #heat | 18:04 | |
*** alexheneveld has quit IRC | 18:07 | |
lipinski | Is there any Heat Template validators that provide information on what is wrong in the file? | 18:18 |
lipinski | e.g., when the client is simply stating "Template not in valid format" | 18:18 |
*** shakamunyi has quit IRC | 18:18 | |
*** ZZpablosan is now known as pablosan | 18:20 | |
*** pablosan is now known as ZZpablosan | 18:21 | |
*** ZZpablosan is now known as pablosan | 18:23 | |
*** shakamunyi has joined #heat | 18:27 | |
*** Guest99315 is now known as jamie_h | 18:29 | |
lipinski | When is PRovider templates supported (resource_registry)? Heat does not seem to recognize my new resource types in Havana. Was this added to Havana or Icehouse? | 18:30 |
jasond` | lipinski: you might want to run your template through a yaml validator | 18:34 |
lipinski | jasond`: yep, did that. narrowed my error down to one of my provider templates. that passed yaml validation as well. | 18:38 |
lipinski | now getting 'ERROR: Type' from heat template-validate | 18:39 |
lipinski | --debug shows "KeyError" | 18:39 |
*** e0ne_ has quit IRC | 18:39 | |
*** shakamunyi has quit IRC | 18:49 | |
*** e0ne has joined #heat | 18:52 | |
*** e0ne has quit IRC | 18:53 | |
*** gokrokve has joined #heat | 18:56 | |
SpamapS | oy | 18:56 |
*** jpeeler has quit IRC | 18:56 | |
SpamapS | lipinski: can you file a bug on this please? https://launchpad.net/heat/+filebug | 18:56 |
SpamapS | lipinski: if you can share a template that exhibits such a poor error message that would be helpful. | 18:57 |
SpamapS | We need to do a LOT better job with validation. | 18:57 |
*** jpeeler has joined #heat | 18:58 | |
*** jpeeler has quit IRC | 18:58 | |
*** jpeeler has joined #heat | 18:58 | |
openstackgerrit | A change was merged to openstack/heat-templates: Changes Neutron Security Group Ports to Integers https://review.openstack.org/78705 | 19:00 |
openstackgerrit | A change was merged to openstack/heat-templates: Fixes Neutron Security Rules for Mcollective Communication https://review.openstack.org/78712 | 19:00 |
lipinski | SpamapS: Found my problem. I had a parameter without a type: defined. | 19:01 |
lipinski | I'm still having problems with resource_Registry/provider resources. The validator is opening my provider template files, but still complaining about uinknown resource types. | 19:01 |
*** mkollaro has joined #heat | 19:02 | |
lipinski | SpamapS: I can still open a bug as far as better validation and more helpful output, if you'd like. | 19:02 |
SpamapS | lipinski: yes please! | 19:02 |
SpamapS | lipinski: will give you a gold star and everything. | 19:02 |
openstackgerrit | A change was merged to openstack/heat-templates: Adds Hostnames for OSO Instances https://review.openstack.org/78438 | 19:02 |
lipinski | SpamapS: Any idea on "ERROR: Unknown resource Type :"? Yet, my resource type is defined in resource_registry... | 19:12 |
lipinski | Running 2013.2, that should work, I would think. | 19:12 |
lipinski | 2013.2.2-1.0.el6.noarch, to be specific | 19:13 |
*** saju_m has joined #heat | 19:18 | |
*** alexheneveld has joined #heat | 19:26 | |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Never specify project_name in keystone v3 auth https://review.openstack.org/80867 | 19:31 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Provide the necessary inputs to enable HEAT_SIGNAL https://review.openstack.org/80169 | 19:31 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Implement an identifier stack_path() https://review.openstack.org/80869 | 19:31 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Allow stack domain credentials to be used for deployments https://review.openstack.org/80868 | 19:31 |
*** daneyon has quit IRC | 19:32 | |
*** duncanjw has joined #heat | 19:33 | |
*** nati_ueno has joined #heat | 19:43 | |
openstackgerrit | A change was merged to openstack/heat-cfntools: Remove tox locale overrides https://review.openstack.org/72212 | 19:45 |
*** david-lyle has quit IRC | 19:46 | |
*** Tross has quit IRC | 19:48 | |
*** jamie_h has quit IRC | 19:51 | |
*** Tross has joined #heat | 19:53 | |
andersonvom | shardy: you around? | 19:55 |
*** pablosan is now known as ZZpablosan | 20:09 | |
*** david-lyle has joined #heat | 20:18 | |
lipinski | Is there a way to join lists in a HOT template | 20:19 |
lipinski | equivalent to fn::join, I guess | 20:20 |
*** pas-ha has joined #heat | 20:21 | |
*** duncanjw has quit IRC | 20:22 | |
*** duncanjw has joined #heat | 20:22 | |
pas-ha | stevebaker: around? | 20:23 |
stevebaker | pas-ha: \o | 20:23 |
pas-ha | could you restore your change to fix the pypy gate? it still fails constantly on heatclient | 20:24 |
stevebaker | pas-ha: oh, I saw some passes and assumed it was fixed | 20:25 |
therve | stevebaker, Put a comment on https://review.openstack.org/#/c/80528/ wondering if it makes sense | 20:26 |
pas-ha | bug/1290562 still does not mention any fix / solution, only a workaround as you provided | 20:26 |
stevebaker | pas-ha: I've approved it | 20:27 |
pas-ha | cool. thnx :) | 20:27 |
*** yogesh has quit IRC | 20:28 | |
pas-ha | SpamapS: around? | 20:29 |
SpamapS | pas-ha: About to go get some lunch. Whats up? | 20:29 |
pas-ha | puzzled by our comment on race in one of my order imports patch.. looks like you gave a wrong link | 20:30 |
SpamapS | pas-ha: probably :) | 20:30 |
pas-ha | but now I'm intrigued.. | 20:30 |
SpamapS | pas-ha: I was meaning to say that the py3kcompat patch is going to conflict with the import ordering patches | 20:31 |
pas-ha | but it in heatclient | 20:31 |
SpamapS | yeah so silly me :) | 20:31 |
pas-ha | or there is another one in heat? o_O | 20:31 |
SpamapS | I just had that one on my mind as I had reviewed it 30 seconds earlier | 20:31 |
SpamapS | details details | 20:31 |
SpamapS | pas-ha: I don't know.. might be attached to the same bug | 20:31 |
pas-ha | ok, nevermind | 20:31 |
*** Michalik has quit IRC | 20:33 | |
pas-ha | SpamapS: there is one, but auto-abandoned, so I hope I'll be the first :) | 20:35 |
*** daneyon has joined #heat | 20:36 | |
SpamapS | pas-ha: ok, good luck | 20:37 |
* SpamapS goes to find food | 20:37 | |
stevebaker | therve: I've replied | 20:37 |
therve | stevebaker, Great thanks | 20:38 |
openstackgerrit | Thomas Herve proposed a change to openstack/python-heatclient: Resolve files in resource types https://review.openstack.org/80528 | 20:44 |
*** ZZpablosan is now known as pablosan | 20:49 | |
*** yogesh has joined #heat | 20:50 | |
*** pas-ha has quit IRC | 20:52 | |
radix | man | 20:53 |
radix | we need some fake time up in here | 20:53 |
radix | therve: have you figured out a way to not dump log to stdout with trial? | 20:56 |
therve | radix, Humm... I don't know? | 20:56 |
therve | It hasn't bothered me | 20:57 |
radix | it's kind of annoying when you have multiple failures | 20:57 |
*** pafuent has left #heat | 20:58 | |
therve | Oh you have failures. Yeah don't have those :p | 20:59 |
therve | radix, More seriously trial -x | 20:59 |
radix | hehe | 20:59 |
radix | yeah ok | 20:59 |
zaneb | stevebaker: I'd be interested in your input on the MuranoPL thread | 20:59 |
stevebaker | zaneb: yeah, I'll weigh in | 21:00 |
*** jamieh has joined #heat | 21:02 | |
*** jamieh is now known as Guest2749 | 21:03 | |
*** kfox1111 has joined #heat | 21:06 | |
kfox1111 | Odd issue... I'm nesting this stack: https://raw.github.com/EMSL-MSC/heat-templates/master/hot/ElasticSearch/ElasticSearch_DataNode.yaml | 21:07 |
*** radez is now known as radez_g0n3 | 21:07 | |
kfox1111 | Its failing because: UnknownUserParameter: The Parameter (AvailabilityZone) was not defined in template. | 21:07 |
*** Guest2749 has quit IRC | 21:07 | |
*** Michalik has joined #heat | 21:08 | |
kfox1111 | But I am defining it... | 21:08 |
kfox1111 | which side is it complaining about, the edge template, or the one doing the nesting? | 21:09 |
*** IlyaE has quit IRC | 21:09 | |
zaneb | kfox1111: is this on create or update? | 21:10 |
kfox1111 | create. | 21:10 |
*** kgriffs is now known as kgriffs_afk | 21:11 | |
zaneb | that is very strange then | 21:11 |
kfox1111 | Here's something that looks like the template doing the nesting: https://raw.github.com/EMSL-MSC/heat-templates/master/hot/ElasticSearch/ElasticSearch_ScalableDataNode.yaml.in | 21:11 |
kfox1111 | It takes in an "InstanceZone", and passes it through as "AvailabilityZone"... | 21:12 |
kfox1111 | when that .in file is realized, the default is just "nova" | 21:12 |
kfox1111 | Its worked everywhere else. I'm kind of puzzled. | 21:12 |
*** dims has quit IRC | 21:12 | |
openstackgerrit | Gregory Haynes proposed a change to openstack/heat: Catch NotFound exception on user delete_key https://review.openstack.org/80116 | 21:12 |
* zaneb is also puzzled | 21:12 | |
kfox1111 | hmm... does heat engine cache templates at all? | 21:13 |
openstackgerrit | Gregory Haynes proposed a change to openstack/heat: Catch NotFound exception on user delete_key https://review.openstack.org/80116 | 21:13 |
kfox1111 | maybe its using an older version of the template before I fixed it? | 21:13 |
zaneb | we don't do any caching | 21:14 |
kfox1111 | what about horizon -> heat? | 21:14 |
zaneb | but it could be picking it up from a weird location maybe | 21:14 |
zaneb | not at all sure about Horizon | 21:14 |
zaneb | could TemplateBaseUrl be pointing to an old version? | 21:15 |
kfox1111 | ah... yeah. doing a template dump on it looks like it doesn't have AvailabilityZone defined.... | 21:16 |
*** tango has joined #heat | 21:16 | |
kfox1111 | I think horizon is caching things. :/ | 21:16 |
kfox1111 | yup. it wouldn't work until I restarted apache. then its working. :/ | 21:18 |
kfox1111 | no, I take that back. | 21:19 |
kfox1111 | it was just taking a bit longer to fail.... | 21:19 |
kfox1111 | oh... no, its just me being dumb. :/ | 21:22 |
kfox1111 | Its including the wrong nested template. | 21:22 |
* kfox1111 slaps his forehead | 21:22 | |
kfox1111 | Sorry for the noise. :/ | 21:22 |
*** dims has joined #heat | 21:26 | |
mattoliverau | kfox1111: No need to apologise, sometimes it takes talking it out to find the problem :) | 21:30 |
kfox1111 | yeah. thanks. :) | 21:31 |
*** IlyaE has joined #heat | 21:31 | |
*** rpothier has quit IRC | 21:33 | |
*** lipinski has quit IRC | 21:34 | |
*** daneyon has quit IRC | 21:36 | |
*** aweiteka has quit IRC | 21:41 | |
*** saju_m has quit IRC | 21:42 | |
*** achampion has quit IRC | 21:42 | |
*** duncanjw has quit IRC | 21:42 | |
greghaynes | SpamapS: (or others) trying to write a test that fails without https://review.openstack.org/#/c/80116/ in similar style to https://launchpad.net/bugs/1291060 and having a hard time figuring out what is going on well enough to replicate it in a test | 21:45 |
*** e0ne has joined #heat | 21:45 | |
greghaynes | I was hoping that deleting the accesskey in a test would cause the error but doesnt seem to... | 21:46 |
greghaynes | well, double deleting | 21:46 |
* greghaynes pushies WIP test for something more tangible to help with | 21:47 | |
openstackgerrit | Gregory Haynes proposed a change to openstack/heat: Catch NotFound exception on user delete_key https://review.openstack.org/80116 | 21:48 |
openstackgerrit | A change was merged to openstack/heat: Replacing NetworkGateway when devices updated https://review.openstack.org/80243 | 21:51 |
*** sgordon has quit IRC | 21:55 | |
*** kgriffs_afk is now known as kgriffs | 21:55 | |
*** stannie has quit IRC | 22:00 | |
*** jasond has quit IRC | 22:01 | |
*** pablosan is now known as ZZpablosan | 22:10 | |
*** wchrisj_ has quit IRC | 22:14 | |
*** wchrisj has joined #heat | 22:14 | |
stevebaker | greghaynes: I think you just need to delete the credentials_id resource data | 22:18 |
*** blomquisg has quit IRC | 22:19 | |
stevebaker | kfox1111: horizon shouldn't be caching anything btw | 22:19 |
*** ZZpablosan is now known as pablosan | 22:19 | |
SpamapS | greghaynes: mock the keystoneclient call to return NotFound | 22:20 |
SpamapS | s/return/raise/ | 22:20 |
*** e0ne_ has joined #heat | 22:21 | |
greghaynes | Is that necessarially preferred over deleting the credential_id in test? | 22:21 |
SpamapS | greghaynes: yes, that is what you're trying to test | 22:21 |
SpamapS | "how do I respond to NotFound at this point" | 22:21 |
*** lindsayk has quit IRC | 22:23 | |
greghaynes | sounds good | 22:23 |
stevebaker | SpamapS: I believe this is raising the NotFound, not keystone: http://git.openstack.org/cgit/openstack/heat/tree/heat/engine/stack_user.py#n138 | 22:24 |
stevebaker | greghaynes: ^ | 22:24 |
*** e0ne has quit IRC | 22:24 | |
*** lindsayk has joined #heat | 22:24 | |
stevebaker | greghaynes: and I posted a comment in the review that this should be fixed in StackUser._delete_keypair() | 22:25 |
openstackgerrit | Ziad Sawalha proposed a change to openstack/heat: Update contrib docstrings to match guidelines https://review.openstack.org/73070 | 22:26 |
*** pablosan is now known as ZZpablosan | 22:27 | |
*** ZZpablosan is now known as pablosan | 22:28 | |
*** vijendar has quit IRC | 22:29 | |
greghaynes | ah, so for dbapi things do we not mock? | 22:30 |
SpamapS | stevebaker: oh hey whAT? | 22:30 |
SpamapS | stevebaker: I totally did not understand the bug _at all_ | 22:30 |
stevebaker | SpamapS: I'm just reading the stack trace https://bugs.launchpad.net/tripleo/+bug/1291060 | 22:31 |
stevebaker | greghaynes: you could mock, or just delete the resource data. whichever works | 22:31 |
*** lindsayk has quit IRC | 22:32 | |
*** lindsayk has joined #heat | 22:32 | |
SpamapS | stevebaker: yeah I never read _THOSE_ .. those are for wusses.. ;) | 22:32 |
*** yogesh has quit IRC | 22:32 | |
stevebaker | lol | 22:32 |
openstackgerrit | Ziad Sawalha proposed a change to openstack/heat: Update common docstrings to match guidelines https://review.openstack.org/73519 | 22:34 |
*** pablosan is now known as ZZpablosan | 22:34 | |
radix | anyone know if it's possible to get mock to call a function after the original function is invoked? | 22:34 |
*** ZZpablosan is now known as pablosan | 22:35 | |
*** duncanjw has joined #heat | 22:37 | |
zaneb | radix: sure is | 22:37 |
radix | I'm struggling with wraps= and side_effect=. it seems side_effect is being called before the wrapped function | 22:38 |
openstackgerrit | Ziad Sawalha proposed a change to openstack/heat: Update api docstrings to match guidelines https://review.openstack.org/73515 | 22:38 |
*** rcleere has quit IRC | 22:40 | |
zaneb | radix: are we talking mox or mock here? | 22:41 |
radix | mock | 22:41 |
radix | I'm trying to do it "manually" now, just storing the orig and explicitly calling it | 22:43 |
openstackgerrit | Anderson Mesquita proposed a change to openstack/heat: Stack identity reads tenant from stack not context https://review.openstack.org/81390 | 22:43 |
*** jcru has joined #heat | 22:44 | |
andersonvom | pablosan: ^^ | 22:44 |
pablosan | Thanks andersonvom ! | 22:44 |
*** jcru has quit IRC | 22:45 | |
andersonvom | radix: do you want to explicitly call it in your test? or at runtime when the test gets run? | 22:46 |
*** samstav has quit IRC | 22:47 | |
*** duncanjw has quit IRC | 22:47 | |
radix | yeah, I got it working with an explicit call to the original | 22:48 |
andersonvom | radix: I guess, regardless, you can use "with mock.patch.object()" instead of decorating the test. then before the context manager, you can call the original | 22:48 |
radix | yeah, that's what I was doing anyway | 22:49 |
radix | originally because wraps= needs the instance method (not a class method) if you're mocking a method | 22:49 |
openstackgerrit | A change was merged to openstack/heat: Allow update of disable_rollback https://review.openstack.org/79721 | 22:58 |
*** achampion has joined #heat | 22:59 | |
*** gokrokve has quit IRC | 23:01 | |
*** IlyaE has quit IRC | 23:03 | |
*** IlyaE has joined #heat | 23:04 | |
*** IlyaE has quit IRC | 23:06 | |
*** nati_ueno has quit IRC | 23:07 | |
*** che-arne has quit IRC | 23:07 | |
openstackgerrit | Christopher Armstrong proposed a change to openstack/heat: Rolling updates for OS::Heat::AutoScalingGroup https://review.openstack.org/81394 | 23:10 |
*** e0ne_ has quit IRC | 23:17 | |
*** e0ne has joined #heat | 23:19 | |
*** mwheckmann has quit IRC | 23:19 | |
openstackgerrit | Christopher Armstrong proposed a change to openstack/heat: Rolling updates for OS::Heat::AutoScalingGroup https://review.openstack.org/81394 | 23:23 |
*** vijendar has joined #heat | 23:28 | |
*** vijendar has quit IRC | 23:28 | |
*** vijendar has joined #heat | 23:28 | |
radix | hm | 23:35 |
radix | annoying that I have to mark as WIP after every patch I upload | 23:36 |
*** cfriesen_ has quit IRC | 23:39 | |
*** e0ne has quit IRC | 23:40 | |
mattoliverau | radix: if you don't people will assume your updated patch is ready for reviewing/merging | 23:41 |
radix | mattoliverau: right, of course | 23:41 |
radix | I just didn't know that it would lose the status | 23:41 |
stevebaker | radix: thats OK, I've whacked it with the ban-hammer | 23:43 |
*** rpothier has joined #heat | 23:43 | |
radix | yep, I saw that ;-) | 23:43 |
stevebaker | THOR | 23:43 |
radix | haha | 23:43 |
mattoliverau | Well, WIP is a patch which has been added for our benefit, it's not or at least was not in upstream gerrit. But yeah I see your point. I guess what should be the expected behavour. Inherit from previous patch set and leave the dev to mark it and not WIP when ready.. that kind of makes sense. Maybe a new patch is in order ;) | 23:45 |
openstackgerrit | Gregory Haynes proposed a change to openstack/heat: Catch NotFound exception on user delete_key https://review.openstack.org/80116 | 23:45 |
greghaynes | stevebaker: SpamapS after a bit of tinkering the test ended up being pretty simple ^ | 23:49 |
*** alexpilotti has quit IRC | 23:52 | |
stevebaker | greghaynes: looks good | 23:54 |
openstackgerrit | Anderson Mesquita proposed a change to openstack/heat: Add OS:Barbican:Secret resource https://review.openstack.org/79355 | 23:56 |
*** pvaneck has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!