asalkeld | ok, so what you need is implicit major/minor versioning | 00:00 |
---|---|---|
uberj | yeah | 00:00 |
asalkeld | I think this is do'able | 00:00 |
uberj | stevebaker mentioned doing that | 00:00 |
uberj | just encode the version into the SC name | 00:00 |
asalkeld | so what do want to happen | 00:00 |
uberj | so Software::Mysql2.1 | 00:01 |
uberj | or something | 00:01 |
asalkeld | uberj, let's get smarter | 00:01 |
uberj | asalkeld: I've been trying my entire life | 00:01 |
asalkeld | why not support multiple types of the same name | 00:01 |
asalkeld | then match based on the properties/attriblutes actually used | 00:01 |
uberj | overloading, essentially | 00:02 |
asalkeld | yip | 00:02 |
asalkeld | it will need some work tho' | 00:02 |
uberj | well, that would be cool, but you still kind of get file sprawl. plus, what if I just change a default? | 00:02 |
asalkeld | one issue is we will not be able to do this with python resource types | 00:02 |
asalkeld | uberj, we need a mechanism to do the schema versioning | 00:03 |
asalkeld | we can argue about the details later | 00:03 |
*** david-lyle has quit IRC | 00:03 | |
asalkeld | uberj, do you *really* need this? | 00:04 |
asalkeld | how much work are you willing to do? | 00:04 |
uberj | actually, no, not right now, but I have a feeling my api will change in the future | 00:04 |
uberj | I'm looking in the future | 00:04 |
uberj | for what I'm doing I can probably get away with pretty static resource definitions | 00:05 |
uberj | ...for a while | 00:05 |
asalkeld | sure, uberj I'd suggest you write up some ideas on an etherpad | 00:05 |
uberj | okay | 00:05 |
asalkeld | we can start a ml discussion | 00:05 |
*** julienvey has joined #heat | 00:05 | |
asalkeld | i know that code well | 00:05 |
uberj | I will probably do that... because if my project gets traction I will need to solve this | 00:05 |
asalkeld | (i wrote a lot of the env code) | 00:05 |
uberj | ah, cool | 00:06 |
asalkeld | it does sound like a good idea in general | 00:06 |
asalkeld | but it needs to be done right | 00:06 |
uberj | I wouldn't want it any other way :) | 00:06 |
asalkeld | https://etherpad.openstack.org/p/heat_resource_type_versioning | 00:07 |
uberj | uhg, is there a way to turn on spell check? | 00:10 |
*** julienvey has quit IRC | 00:10 | |
asalkeld | uberj, you are talking purely about resourcet templates | 00:12 |
asalkeld | what about python resources? | 00:12 |
asalkeld | they have the same issue | 00:13 |
uberj | I haven't used python resources | 00:13 |
asalkeld | I have | 00:13 |
uberj | I'm guessing that is a native implementation of a resource? | 00:13 |
asalkeld | yip | 00:13 |
*** tyson_ has quit IRC | 00:13 | |
uberj | like, the inputs in a resource map directly to some "def" | 00:13 |
uberj | okay | 00:13 |
*** gokrokve has quit IRC | 00:13 | |
uberj | yeah | 00:14 |
uberj | well, idk :P | 00:14 |
asalkeld | if we could manage this too, it would be good | 00:14 |
uberj | I just started thinking about this problem today | 00:14 |
asalkeld | ok | 00:14 |
uberj | so if you versioned the whole environment.d directory, that would work, but it doesn't solve the individual resource problem | 00:14 |
uberj | I kind of see this as two separate issues | 00:14 |
uberj | environment versioning/resource versioning | 00:15 |
uberj | unless you decide to not do environment versioning at all and implement everything with resource versioning | 00:15 |
*** Murali has joined #heat | 00:15 | |
*** Qiming has quit IRC | 00:15 | |
uberj | I see see environment versioning as a really nice way for a provider to cleanly release a set of resources that work well together | 00:16 |
*** tyson_ has joined #heat | 00:16 | |
uberj | so I, as an operator, know that if some dev upgrades to v1 he is using a determined set of versions of other resources | 00:16 |
uberj | and not mysql2.3 and apache4.2 | 00:16 |
uberj | makes it easier for me to test, too | 00:16 |
uberj | I *also* see the need for resource versioning as well | 00:17 |
uberj | but yeah, probably two separate problems | 00:17 |
*** alexheneveld has joined #heat | 00:25 | |
*** Murali has quit IRC | 00:25 | |
asalkeld | uberj, have a look now | 00:26 |
asalkeld | (at the etherpad) | 00:26 |
*** EricGonczer_ has joined #heat | 00:27 | |
*** alexheneveld has quit IRC | 00:29 | |
*** tyson_ has quit IRC | 00:29 | |
*** tyson_ has joined #heat | 00:29 | |
*** tyson_ has quit IRC | 00:32 | |
openstackgerrit | Steve Baker proposed a change to openstack/heat: LaunchConfiguration replace on changed Metadata https://review.openstack.org/111872 | 00:33 |
uberj | asalkeld: having heat decide which version "fits best" will cause non-obvious things to happen under the hood in heat. Look at this from my point of view: A dev comes to me and says "my app doesn't work", and I say "which version of resource X, Y, and Z are you using?". If heat is calculating that dynamically the versions will be tricky to pin down because it might be version 1, 2, and 3 for one dev and | 00:34 |
uberj | versions 3, 2, and 1 for another, just because they have their resources are defined differently. I think in this case we might be giving users too much flexibility. I would much rather have a user tell me "My app doesn't work. I'm using version 3 of the environment.d/ directory (which has hardcoded versions of things)". If we do allow for dynamic lookup based on signature, I think it would be sufficient to | 00:34 |
uberj | allow version pinning somehow. | 00:34 |
*** EricGonczer_ has quit IRC | 00:34 | |
*** tyson_ has joined #heat | 00:35 | |
asalkeld | uberj, environment.d/ is an operator thing | 00:35 |
asalkeld | not a developer thing | 00:35 |
uberj | but if I put my resource definitions in there devs will use them | 00:35 |
asalkeld | I dont' like the idea of forcing users to put version numbers in their templates | 00:36 |
uberj | you already do | 00:36 |
uberj | but | 00:36 |
asalkeld | uberj, we do at the toplevel | 00:36 |
asalkeld | but not at the resource level | 00:36 |
uberj | I would suggesting adding another version key there | 00:36 |
uberj | for the version of the operator environment you are using | 00:36 |
asalkeld | ok, but that is effectively the same as a resource name v1/mysql v2/mysql | 00:38 |
asalkeld | uberj, I think it's worth a broader discussion | 00:38 |
uberj | yes, you could implement environment versioning in a granular way | 00:38 |
uberj | yeah, I have to do other things right now. unfortunately, If I don't have a prototype that does cool stuff this all might be moot :) | 00:39 |
asalkeld | I know you are interested in environment.d , but I think this is applicable to general resource types too | 00:39 |
asalkeld | ok, it's a great point tho' | 00:39 |
uberj | right, like I was saying, this might be two separate discussions | 00:39 |
asalkeld | and we need to look at better ways of handling it | 00:40 |
*** shakamunyi has quit IRC | 00:43 | |
*** uberj has quit IRC | 00:44 | |
*** uberj has joined #heat | 00:44 | |
*** lekha has joined #heat | 00:45 | |
*** lekha has left #heat | 00:45 | |
asalkeld | zaneb, https://etherpad.openstack.org/p/heat_resource_type_versioning | 00:50 |
*** tyson_ has quit IRC | 00:53 | |
*** tyson_ has joined #heat | 00:53 | |
*** tyson_ has quit IRC | 00:58 | |
*** Murali has joined #heat | 01:04 | |
*** julienvey has joined #heat | 01:06 | |
*** tyson_ has joined #heat | 01:08 | |
*** Qiming has joined #heat | 01:09 | |
*** julienvey has quit IRC | 01:10 | |
*** tyson_ has quit IRC | 01:13 | |
*** tiantian has joined #heat | 01:13 | |
*** tyson_ has joined #heat | 01:13 | |
*** Murali has quit IRC | 01:15 | |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Set resource_id to None after deleting resource https://review.openstack.org/111879 | 01:16 |
*** tyson_ has quit IRC | 01:18 | |
*** jergerber has quit IRC | 01:19 | |
*** samstav has quit IRC | 01:19 | |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Implement BlockDeviceMappings for AWS::EC2::Instance https://review.openstack.org/103725 | 01:20 |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Implement BlockDeviceMappings for LaunchConfiguration https://review.openstack.org/105647 | 01:20 |
*** julienvey has joined #heat | 01:21 | |
*** gokrokve has joined #heat | 01:23 | |
*** julienvey has quit IRC | 01:25 | |
*** morganfainberg_Z is now known as morganfainberg | 01:35 | |
*** spzala has quit IRC | 01:39 | |
*** piyush has quit IRC | 01:39 | |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.api https://review.openstack.org/109487 | 01:42 |
*** Murali_ has joined #heat | 01:42 | |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.common https://review.openstack.org/109506 | 01:44 |
*** piyush has joined #heat | 01:44 | |
*** EricGonczer_ has joined #heat | 01:44 | |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Add constraints to check whether image/keypair exists https://review.openstack.org/90304 | 01:46 |
*** nosnos has joined #heat | 01:50 | |
*** Murali_ has quit IRC | 01:52 | |
*** shakamunyi has joined #heat | 01:54 | |
*** erkules_ has joined #heat | 01:59 | |
*** sjmc7_ has quit IRC | 01:59 | |
*** erkules has quit IRC | 02:01 | |
*** Yanyanhu has joined #heat | 02:01 | |
*** EricGonczer_ has quit IRC | 02:05 | |
*** shakamunyi has quit IRC | 02:07 | |
*** julienvey has joined #heat | 02:21 | |
*** killer_prince is now known as lazy_prince | 02:22 | |
*** shakamunyi has joined #heat | 02:22 | |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Use Constraint stubs in common.py https://review.openstack.org/110830 | 02:24 |
*** julienvey has quit IRC | 02:26 | |
*** gokrokve_ has joined #heat | 02:35 | |
*** gokrokve_ has quit IRC | 02:35 | |
*** gokrokve_ has joined #heat | 02:35 | |
*** gokrokve has quit IRC | 02:38 | |
*** tyson_ has joined #heat | 02:39 | |
*** tyson_ has quit IRC | 02:40 | |
*** gokrokve has joined #heat | 02:45 | |
*** Murali has joined #heat | 02:46 | |
*** gokrokve_ has quit IRC | 02:49 | |
*** Murali has quit IRC | 02:51 | |
*** edmund has joined #heat | 02:52 | |
tiantian | asalkeld: hi, are you around? would you please to review https://review.openstack.org/#/c/103725/ and https://review.openstack.org/#/c/105647/ tks | 02:54 |
asalkeld | hi tiantian | 02:54 |
*** funzo has quit IRC | 02:56 | |
*** Murali_ has joined #heat | 02:57 | |
tiantian | <asalkeld>: hi, hope you to review them :) | 02:57 |
asalkeld | tiantian, I'll see how it goes - busy coding myself | 02:57 |
*** mspreitz has joined #heat | 02:58 | |
*** rushiagr__ has joined #heat | 03:00 | |
*** gokrokve has quit IRC | 03:01 | |
*** edmund has quit IRC | 03:02 | |
*** edmund has joined #heat | 03:04 | |
*** asalkeld has quit IRC | 03:05 | |
*** funzo has joined #heat | 03:06 | |
*** ramishra has joined #heat | 03:08 | |
*** asalkeld has joined #heat | 03:09 | |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Add constraints to check whether image/keypair exists https://review.openstack.org/90304 | 03:18 |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Use Constraint stubs in common.py https://review.openstack.org/110830 | 03:20 |
*** julienvey has joined #heat | 03:22 | |
*** julienvey has quit IRC | 03:27 | |
*** Murali_ has quit IRC | 03:28 | |
*** Murali has joined #heat | 03:29 | |
*** gokrokve has joined #heat | 03:31 | |
*** gokrokve_ has joined #heat | 03:33 | |
*** gokrokve has quit IRC | 03:33 | |
*** edmund has quit IRC | 03:36 | |
*** gokrokve_ has quit IRC | 03:41 | |
*** gokrokve has joined #heat | 03:42 | |
*** gokrokve has quit IRC | 03:46 | |
*** Murali has quit IRC | 03:48 | |
*** swygue has quit IRC | 03:48 | |
*** Murali_ has joined #heat | 03:48 | |
*** rushiagr__ has quit IRC | 03:52 | |
*** gokrokve has joined #heat | 03:54 | |
*** cmyster has joined #heat | 03:58 | |
*** cmyster has quit IRC | 03:58 | |
*** cmyster has joined #heat | 03:58 | |
*** Murali__ has joined #heat | 04:00 | |
*** Murali_ has quit IRC | 04:00 | |
*** cmyster has quit IRC | 04:05 | |
*** bmahalakshmi has joined #heat | 04:05 | |
*** jyoti-ranjan has joined #heat | 04:08 | |
*** cmyster has joined #heat | 04:14 | |
*** Murali__ has quit IRC | 04:19 | |
*** gokrokve has quit IRC | 04:21 | |
*** gokrokve has joined #heat | 04:22 | |
*** julienvey has joined #heat | 04:23 | |
*** gokrokve has quit IRC | 04:26 | |
*** julienvey has quit IRC | 04:27 | |
*** lazy_prince is now known as killer_prince | 04:29 | |
*** gokrokve has joined #heat | 04:32 | |
*** daneyon has joined #heat | 04:33 | |
*** rushiagr__ has joined #heat | 04:33 | |
*** daneyon has quit IRC | 04:34 | |
*** daneyon has joined #heat | 04:35 | |
*** piyush has quit IRC | 04:36 | |
*** alexheneveld has joined #heat | 04:39 | |
*** bvivek has joined #heat | 04:43 | |
*** k4n0 has joined #heat | 04:43 | |
*** gokrokve has quit IRC | 04:53 | |
*** gokrokve has joined #heat | 04:54 | |
*** morganfainberg is now known as morganfainberg_Z | 04:54 | |
*** kopparam has joined #heat | 04:54 | |
*** PragadeeswaranS has joined #heat | 04:56 | |
*** nkhare has joined #heat | 04:56 | |
*** gokrokve has quit IRC | 04:58 | |
*** gokrokve has joined #heat | 05:00 | |
*** nikunj2512 has joined #heat | 05:01 | |
*** ramishra has quit IRC | 05:05 | |
*** ramishra_ has joined #heat | 05:05 | |
skraynev | Good morning | 05:08 |
*** daneyon has quit IRC | 05:22 | |
*** julienvey has joined #heat | 05:24 | |
*** killer_prince has quit IRC | 05:24 | |
*** ccrouch has quit IRC | 05:24 | |
*** avquadri has joined #heat | 05:25 | |
*** jyoti-ranjan has quit IRC | 05:25 | |
*** jyoti-ranjan has joined #heat | 05:26 | |
*** bvivek has quit IRC | 05:26 | |
*** rakesh_hs has joined #heat | 05:26 | |
*** chandankumar has joined #heat | 05:27 | |
*** rushiagr__ is now known as rushiagr | 05:27 | |
*** daneyon has joined #heat | 05:28 | |
*** julienvey has quit IRC | 05:28 | |
*** rushiagr has quit IRC | 05:28 | |
*** rushiagr has joined #heat | 05:29 | |
*** daneyon has quit IRC | 05:32 | |
*** daneyon has joined #heat | 05:32 | |
*** mspreitz has quit IRC | 05:32 | |
*** shakamunyi has quit IRC | 05:42 | |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Skip validation if depends on not created resource https://review.openstack.org/108951 | 05:45 |
*** killer_prince has joined #heat | 05:46 | |
*** killer_prince is now known as lazy_prince | 05:46 | |
*** bvivek has joined #heat | 05:51 | |
cmyster | morning | 05:57 |
openstackgerrit | OpenStack Proposal Bot proposed a change to openstack/heat: Imported Translations from Transifex https://review.openstack.org/104975 | 06:01 |
*** jyoti-ranjan has quit IRC | 06:04 | |
*** jyoti-ranjan has joined #heat | 06:04 | |
*** gokrokve has quit IRC | 06:06 | |
*** ckmvishnu has joined #heat | 06:07 | |
*** tiantian has quit IRC | 06:07 | |
ckmvishnu | EngineService upon startup, create_periodic_tasks creates a ThreadGroupManager. But also created in service start() | 06:09 |
ckmvishnu | shouldn't there be a check and reuse existing ThreadGroupManager? | 06:10 |
*** shakamunyi has joined #heat | 06:10 | |
*** elynn_ has joined #heat | 06:12 | |
*** elynn_ has quit IRC | 06:21 | |
*** shakamunyi has quit IRC | 06:24 | |
*** julienvey has joined #heat | 06:24 | |
*** saju_m has joined #heat | 06:26 | |
*** tiantian has joined #heat | 06:28 | |
*** daneyon_ has joined #heat | 06:29 | |
*** daneyon_ has quit IRC | 06:29 | |
*** julienvey has quit IRC | 06:29 | |
*** bvivek has quit IRC | 06:29 | |
*** daneyon_ has joined #heat | 06:30 | |
*** daneyon has quit IRC | 06:32 | |
*** gokrokve has joined #heat | 06:33 | |
*** gokrokve has quit IRC | 06:34 | |
*** bvivek has joined #heat | 06:35 | |
*** gokrokve has joined #heat | 06:35 | |
*** avquadri has quit IRC | 06:36 | |
*** arbylee1 has quit IRC | 06:37 | |
*** daneyon_ has quit IRC | 06:38 | |
*** gokrokve has quit IRC | 06:40 | |
*** tspatzier has joined #heat | 06:43 | |
*** jprovazn has joined #heat | 06:44 | |
*** ifarkas has joined #heat | 06:47 | |
*** kopparam has quit IRC | 06:48 | |
*** rakesh_hs2 has joined #heat | 06:49 | |
*** rakesh_hs has quit IRC | 06:49 | |
*** shakamunyi has joined #heat | 06:51 | |
*** pasquier-s has joined #heat | 06:52 | |
*** shakamunyi has quit IRC | 06:58 | |
*** AndrewMichalik has quit IRC | 07:07 | |
*** rakesh_hs has joined #heat | 07:10 | |
*** rakesh_hs2 has quit IRC | 07:10 | |
*** jyoti-ranjan has quit IRC | 07:13 | |
*** chandankumar has quit IRC | 07:21 | |
*** rakesh_hs2 has joined #heat | 07:23 | |
*** chandankumar has joined #heat | 07:23 | |
*** rakesh_hs has quit IRC | 07:23 | |
*** chandankumar has quit IRC | 07:23 | |
*** chandankumar has joined #heat | 07:24 | |
*** mkerrin has quit IRC | 07:25 | |
*** julienvey has joined #heat | 07:25 | |
*** julienvey has quit IRC | 07:29 | |
*** sergmelikyan has quit IRC | 07:32 | |
*** sergmelikyan has joined #heat | 07:32 | |
*** gokrokve has joined #heat | 07:35 | |
*** jyoti-ranjan has joined #heat | 07:36 | |
*** asalkeld has quit IRC | 07:36 | |
*** mkerrin has joined #heat | 07:37 | |
*** gokrokve has quit IRC | 07:40 | |
*** rakesh_hs2 has quit IRC | 07:42 | |
*** erkules_ is now known as erkules | 07:43 | |
*** ckmvishnu has left #heat | 07:43 | |
*** rakesh_hs has joined #heat | 07:44 | |
*** kopparam has joined #heat | 07:44 | |
*** rakesh_hs has quit IRC | 07:46 | |
*** rakesh_hs has joined #heat | 07:49 | |
*** AndrewMichalik has joined #heat | 07:52 | |
*** asalkeld has joined #heat | 07:53 | |
*** ari_arad_ has quit IRC | 07:54 | |
*** tspatzier has quit IRC | 07:55 | |
*** shakamunyi has joined #heat | 07:56 | |
*** jistr has joined #heat | 07:56 | |
pas-ha | morning all :) | 07:56 |
*** jstrachan has joined #heat | 07:57 | |
*** rwsu has quit IRC | 07:59 | |
*** Qiming_ has joined #heat | 08:03 | |
*** Qiming has quit IRC | 08:06 | |
tiantian | Sergey Kraynev: hi, about https://review.openstack.org/#/c/111879/ would you please to see the reply | 08:06 |
*** alexpilotti has joined #heat | 08:07 | |
asalkeld | skraynev, ^ | 08:07 |
*** sorantis has joined #heat | 08:07 | |
skraynev | asalkeld, tiantian: in progress :) | 08:08 |
asalkeld | also the resource_id could be set in resource.py (possibly) | 08:09 |
asalkeld | (to None) | 08:09 |
*** shakamunyi has quit IRC | 08:10 | |
*** Qiming_ has quit IRC | 08:10 | |
*** julienvey has joined #heat | 08:10 | |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Set resource_id to None after deleting resource https://review.openstack.org/111879 | 08:13 |
*** Qiming has joined #heat | 08:13 | |
skraynev | done | 08:14 |
skraynev | asalkeld: agree :) | 08:14 |
skraynev | asalkeld: I thought about such things, when see a lot of same code in similar places. | 08:15 |
asalkeld | yip | 08:15 |
*** Qiming_ has joined #heat | 08:17 | |
tiantian | <skraynev>: not all the resources set resource_id to some value after creation succeful | 08:19 |
tiantian | s/successful | 08:19 |
*** cmyster has quit IRC | 08:19 | |
*** Qiming has quit IRC | 08:22 | |
*** cmyster has joined #heat | 08:24 | |
*** cmyster has quit IRC | 08:24 | |
*** cmyster has joined #heat | 08:24 | |
*** ckmvishnu has joined #heat | 08:29 | |
*** mkollaro has joined #heat | 08:32 | |
*** fayablazer has joined #heat | 08:35 | |
*** gokrokve has joined #heat | 08:35 | |
*** gokrokve has quit IRC | 08:37 | |
*** gokrokve has joined #heat | 08:37 | |
skraynev | tiantian: ok, but why we can not to do it mandatory? and add this... I have not research it. May be it's not possible, in this case you may ignore my suggestion. | 08:39 |
skraynev | tiantian: But still we should know may we make it as a rule for all resources. | 08:39 |
*** mohits has joined #heat | 08:40 | |
*** tsufiev has quit IRC | 08:40 | |
openstackgerrit | Takashi NATSUME proposed a change to openstack/heat: Add log output about HTTP calls in cinderclient https://review.openstack.org/104745 | 08:41 |
*** gokrokve has quit IRC | 08:41 | |
tiantian | agree with you, I will try to do this :) | 08:42 |
*** jyoti-ranjan has quit IRC | 08:44 | |
tiantian | skraynev: and https://review.openstack.org/#/c/103725/ hope you to review, tks | 08:45 |
*** tsufiev has joined #heat | 08:45 | |
*** tspatzier has joined #heat | 08:48 | |
*** pasquier-s_ has joined #heat | 08:51 | |
*** pasquier-s has quit IRC | 08:54 | |
*** jyoti-ranjan has joined #heat | 09:06 | |
*** AJaeger has joined #heat | 09:09 | |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat: console url support in server resource https://review.openstack.org/109923 | 09:14 |
*** ramishra_ has quit IRC | 09:15 | |
*** ramishra has joined #heat | 09:15 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Add networks property to OS::Trove::Instance https://review.openstack.org/91088 | 09:20 |
*** ramishra has quit IRC | 09:20 | |
*** lvh has quit IRC | 09:26 | |
*** lvh has joined #heat | 09:27 | |
*** bmahalakshmi has quit IRC | 09:30 | |
*** bmahalakshmi has joined #heat | 09:34 | |
*** gokrokve has joined #heat | 09:36 | |
*** lazy_prince is now known as killer_prince | 09:37 | |
*** killer_prince is now known as lazy_prince | 09:37 | |
AJaeger | HI Heat cores, could one of you approve this patch,please? it already has two +2s... https://review.openstack.org/#/c/111480/ It will give you all specs published at http://specs.openstack.org/openstack/heat-specs/ | 09:38 |
*** gokrokve has quit IRC | 09:43 | |
*** Yanyanhu has quit IRC | 09:46 | |
*** lvh has quit IRC | 09:47 | |
*** lvh has joined #heat | 09:47 | |
*** lvh has quit IRC | 09:53 | |
*** lvh has joined #heat | 09:53 | |
*** dmakogon_ is now known as denis_makogon | 09:54 | |
*** shakamunyi has joined #heat | 09:57 | |
*** ramishra has joined #heat | 09:58 | |
*** shakamunyi has quit IRC | 10:01 | |
*** sorantis has quit IRC | 10:06 | |
*** sorantis has joined #heat | 10:08 | |
*** dsneddon has quit IRC | 10:11 | |
*** tiantian has quit IRC | 10:13 | |
*** Akshik has joined #heat | 10:24 | |
Akshik | is it possible to execute scripts on the running instance [guest VM] | 10:25 |
*** TonyBurn_ has joined #heat | 10:25 | |
*** Qiming_ has quit IRC | 10:27 | |
*** lazy_prince is now known as killer_prince | 10:32 | |
*** gokrokve has joined #heat | 10:35 | |
*** jyoti-ranjan has quit IRC | 10:35 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Move size update to Cinder volume https://review.openstack.org/106622 | 10:36 |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Move VolumeAttachment updates to Cinder resource https://review.openstack.org/106623 | 10:36 |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Unittests: Refactor Volume resources tests https://review.openstack.org/107362 | 10:36 |
*** killer_prince is now known as lazy_prince | 10:37 | |
*** arbylee has joined #heat | 10:39 | |
*** rushiagr has quit IRC | 10:40 | |
*** gokrokve has quit IRC | 10:40 | |
*** rushiagr has joined #heat | 10:40 | |
*** chandankumar has quit IRC | 10:42 | |
openstackgerrit | Swapnil Kulkarni proposed a change to openstack/python-heatclient: Added sort options for heat stack list https://review.openstack.org/107660 | 10:49 |
*** rushiagr has quit IRC | 10:50 | |
*** rushiagr_ has joined #heat | 10:50 | |
*** nkhare_ has joined #heat | 10:57 | |
*** nkhare has quit IRC | 11:00 | |
*** chandankumar has joined #heat | 11:01 | |
*** piyush has joined #heat | 11:02 | |
*** jstrachan has quit IRC | 11:03 | |
*** achampion has joined #heat | 11:07 | |
openstackgerrit | Anant Patil proposed a change to openstack/heat: After successful update of a stack, the backup stack and it's associated template, resources and events should be permanently deleted. https://review.openstack.org/111979 | 11:10 |
*** nosnos has quit IRC | 11:10 | |
*** pasquier-s_ has quit IRC | 11:12 | |
*** bmahalakshmi has quit IRC | 11:16 | |
*** bmahalakshmi has joined #heat | 11:16 | |
*** asalkeld has quit IRC | 11:23 | |
*** Qiming_ has joined #heat | 11:23 | |
*** jyoti-ranjan has joined #heat | 11:23 | |
*** kopparam has quit IRC | 11:30 | |
*** kopparam has joined #heat | 11:30 | |
*** bmahalakshmi has quit IRC | 11:32 | |
openstackgerrit | Anant Patil proposed a change to openstack/heat: Fix for Bug #1332300. After successful update of a stack, the backup stack and it's associated template, resources and events should be permanently deleted. https://review.openstack.org/111986 | 11:35 |
uvirtbot | Launchpad bug 1332300 in heat "Backup stacks should be hard-deleted" [Medium,In progress] https://launchpad.net/bugs/1332300 | 11:35 |
*** kopparam has quit IRC | 11:35 | |
*** gokrokve has joined #heat | 11:35 | |
*** chandankumar has quit IRC | 11:37 | |
*** chandankumar has joined #heat | 11:38 | |
*** ckmvishnu has quit IRC | 11:40 | |
*** gokrokve has quit IRC | 11:40 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Implement CFN CancelUpdateStack action https://review.openstack.org/102852 | 11:43 |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Implement cancelling of stack update https://review.openstack.org/102851 | 11:43 |
*** blinky_ghost has joined #heat | 11:44 | |
*** mohits has quit IRC | 11:48 | |
*** shakamunyi has joined #heat | 11:48 | |
*** viktors has joined #heat | 11:49 | |
*** che-arne has joined #heat | 11:50 | |
*** pasquier-s has joined #heat | 11:50 | |
*** nkhare_ has quit IRC | 11:53 | |
*** jyoti-ranjan has quit IRC | 11:56 | |
*** shakamunyi has quit IRC | 11:58 | |
openstackgerrit | Anant Patil proposed a change to openstack/heat: After successful update of a stack, the backup stack and it's associated template, resources and events should be permanently deleted. https://review.openstack.org/111986 | 12:01 |
*** kopparam has joined #heat | 12:01 | |
*** nikunj2512 has quit IRC | 12:01 | |
*** chandankumar has quit IRC | 12:02 | |
*** cmyster has quit IRC | 12:04 | |
*** kopparam has quit IRC | 12:05 | |
*** Sventek has joined #heat | 12:11 | |
*** denis_makogon has quit IRC | 12:14 | |
*** andersonvom has quit IRC | 12:18 | |
*** andersonvom has joined #heat | 12:19 | |
*** blomquisg has joined #heat | 12:19 | |
*** chandankumar has joined #heat | 12:22 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/python-heatclient: Peruse existing disable_rollback in stack-update https://review.openstack.org/100245 | 12:26 |
openstackgerrit | A change was merged to openstack/heat: Move size update to Cinder volume https://review.openstack.org/106622 | 12:32 |
*** jdob has joined #heat | 12:33 | |
*** gokrokve has joined #heat | 12:35 | |
*** jyoti-ranjan has joined #heat | 12:36 | |
*** edmund has joined #heat | 12:37 | |
*** gokrokve has quit IRC | 12:39 | |
*** lazy_prince is now known as killer_prince | 12:42 | |
*** radez_g0n3 is now known as radez | 12:43 | |
*** rbuilta has joined #heat | 12:44 | |
*** sgordon has joined #heat | 12:45 | |
*** rpothier has joined #heat | 12:45 | |
openstackgerrit | Eli Qiao proposed a change to openstack/heat: Add controller and action debug message in wsgi.py https://review.openstack.org/112004 | 12:47 |
*** kopparam has joined #heat | 12:47 | |
*** rbuilta has left #heat | 12:48 | |
*** aweiteka_ has joined #heat | 12:49 | |
*** k4n0 has quit IRC | 12:50 | |
*** kopparam has quit IRC | 12:50 | |
*** kopparam has joined #heat | 12:51 | |
*** piyush has quit IRC | 12:52 | |
*** piyush has joined #heat | 12:54 | |
*** kopparam has quit IRC | 12:55 | |
*** ccrouch has joined #heat | 12:58 | |
*** jistr has quit IRC | 13:00 | |
*** sorantis has quit IRC | 13:02 | |
*** wirehead_ has quit IRC | 13:02 | |
*** jistr has joined #heat | 13:03 | |
*** wirehead_ has joined #heat | 13:03 | |
*** jasondotstar has joined #heat | 13:03 | |
*** sarob has quit IRC | 13:03 | |
*** zz_gondoi has quit IRC | 13:06 | |
*** edmund has quit IRC | 13:07 | |
*** wirehead_ has quit IRC | 13:08 | |
*** zz_gondoi has joined #heat | 13:09 | |
*** zz_gondoi is now known as gondoi | 13:09 | |
rakesh_hs | Hey,, https://review.openstack.org/#/c/107551/ is awaiting reviews, please have a look when you have time | 13:09 |
*** jstrachan has joined #heat | 13:11 | |
*** radix has quit IRC | 13:11 | |
*** stevebaker has quit IRC | 13:11 | |
*** wirehead_ has joined #heat | 13:13 | |
*** radix has joined #heat | 13:13 | |
*** pasquier-s has quit IRC | 13:14 | |
*** tspatzier has quit IRC | 13:14 | |
*** sabeen has quit IRC | 13:14 | |
*** jasond` has quit IRC | 13:14 | |
*** cody-somerville has quit IRC | 13:14 | |
*** chmouel has quit IRC | 13:14 | |
*** abramley has quit IRC | 13:14 | |
*** pbelanyi has quit IRC | 13:14 | |
*** morganfainberg_Z has quit IRC | 13:14 | |
*** stevebaker has joined #heat | 13:15 | |
*** pasquier-s has joined #heat | 13:15 | |
*** tspatzier has joined #heat | 13:15 | |
*** sabeen has joined #heat | 13:15 | |
*** jasond` has joined #heat | 13:15 | |
*** cody-somerville has joined #heat | 13:15 | |
*** pbelanyi has joined #heat | 13:15 | |
*** chmouel has joined #heat | 13:15 | |
*** abramley has joined #heat | 13:15 | |
*** morganfainberg_Z has joined #heat | 13:15 | |
openstackgerrit | Eli Qiao proposed a change to openstack/heat: Raise exception if available_versions is empty https://review.openstack.org/112012 | 13:18 |
*** radix has quit IRC | 13:18 | |
*** radix has joined #heat | 13:19 | |
*** EricGonczer_ has joined #heat | 13:19 | |
openstackgerrit | Eli Qiao proposed a change to openstack/heat: Upgrade oslo.config to 1.4.0.0a2 https://review.openstack.org/112013 | 13:20 |
*** SpamapS has quit IRC | 13:23 | |
*** radix has quit IRC | 13:23 | |
*** SpamapS has joined #heat | 13:24 | |
*** SpamapS has quit IRC | 13:24 | |
*** SpamapS has joined #heat | 13:24 | |
*** adam_g has quit IRC | 13:25 | |
*** sarob has joined #heat | 13:26 | |
viktors | hi folks! Can somebody review patch https://review.openstack.org/#/c/109658/ (Run migration tests on PostgreSQL and MySQL) ? | 13:26 |
*** radix has joined #heat | 13:28 | |
*** che-arne has quit IRC | 13:29 | |
*** adam_g has joined #heat | 13:29 | |
*** adam_g has quit IRC | 13:30 | |
*** adam_g has joined #heat | 13:30 | |
*** jistr has quit IRC | 13:30 | |
*** jistr has joined #heat | 13:30 | |
*** piyush has quit IRC | 13:31 | |
*** gokrokve has joined #heat | 13:35 | |
*** vijendar has joined #heat | 13:35 | |
*** jprovazn has quit IRC | 13:39 | |
*** gokrokve has quit IRC | 13:40 | |
*** shakamunyi has joined #heat | 13:42 | |
*** shakamunyi has quit IRC | 13:49 | |
*** tyson_ has joined #heat | 14:02 | |
*** tyson_ has quit IRC | 14:04 | |
*** wendar has quit IRC | 14:04 | |
*** tyson_ has joined #heat | 14:04 | |
*** wendar has joined #heat | 14:05 | |
*** tyson_ has quit IRC | 14:05 | |
*** tyson_ has joined #heat | 14:05 | |
*** sarob has quit IRC | 14:07 | |
*** wendar has quit IRC | 14:08 | |
*** swygue has joined #heat | 14:08 | |
*** wendar has joined #heat | 14:08 | |
*** gokrokve has joined #heat | 14:10 | |
*** shakamunyi has joined #heat | 14:11 | |
*** daneyon has joined #heat | 14:13 | |
*** vijendar has quit IRC | 14:13 | |
*** vijendar has joined #heat | 14:13 | |
*** vijendar has quit IRC | 14:13 | |
*** vijendar has joined #heat | 14:13 | |
*** Murali has joined #heat | 14:15 | |
*** bvivek has quit IRC | 14:18 | |
*** gokrokve has quit IRC | 14:20 | |
*** gokrokve has joined #heat | 14:21 | |
*** denis_makogon has joined #heat | 14:24 | |
*** gokrokve has quit IRC | 14:25 | |
*** rushiagr_ has quit IRC | 14:25 | |
*** david-lyle has joined #heat | 14:28 | |
*** PragadeeswaranS has quit IRC | 14:29 | |
*** jdob has quit IRC | 14:30 | |
*** jdob has joined #heat | 14:31 | |
*** nikunj2512 has joined #heat | 14:31 | |
*** ramishra has quit IRC | 14:31 | |
*** ramishra has joined #heat | 14:32 | |
*** shakamunyi has quit IRC | 14:32 | |
*** saju_m has quit IRC | 14:32 | |
*** rakesh_hs has quit IRC | 14:34 | |
*** ramishra has quit IRC | 14:34 | |
*** ramishra has joined #heat | 14:34 | |
*** david-ly_ has joined #heat | 14:34 | |
*** david-ly_ is now known as david-lyle_ | 14:35 | |
*** nikunj2512 has quit IRC | 14:36 | |
*** ramishra has quit IRC | 14:37 | |
*** piyush has joined #heat | 14:37 | |
*** david-lyle has quit IRC | 14:38 | |
*** piyush1 has joined #heat | 14:40 | |
*** samstav has joined #heat | 14:40 | |
*** piyush has quit IRC | 14:41 | |
AJaeger | Heat cores, could one of you approve this patch,please? it already has two +2s... https://review.openstack.org/#/c/111480/ It will give you all specs published at http://specs.openstack.org/openstack/heat-specs/ | 14:45 |
*** alexheneveld has quit IRC | 14:46 | |
*** david-lyle_ is now known as david-lyle | 14:48 | |
*** arbylee has joined #heat | 14:50 | |
jasond` | AJaeger: i'm getting a 404 from both URLs | 14:50 |
jasond` | oh, it WILL be published there | 14:51 |
AJaeger | jasond`, read the review of 111480 - you first need to approve one patch for heat-specs and then it will show up on specs.o.o. | 14:51 |
AJaeger | The infra-jobs for http://specs.openstack.org publishing are setup and most projects are life. Heat is one of the missing projects... | 14:51 |
*** ckmvishnu has joined #heat | 14:51 | |
AJaeger | Yes, it WILL ;) | 14:52 |
AJaeger | jasond`, thanks for the approval. | 14:52 |
jasond` | no problem | 14:52 |
AJaeger | FYI, this is the infra patch that will change specs.o.o to link to the page: https://review.openstack.org/#/c/111946/ | 14:53 |
*** arbylee has quit IRC | 14:53 | |
*** arbylee has joined #heat | 14:54 | |
*** jyoti-ranjan has quit IRC | 15:01 | |
*** gokrokve has joined #heat | 15:06 | |
*** chandankumar has quit IRC | 15:07 | |
*** ccrouch1 has joined #heat | 15:08 | |
openstackgerrit | Vijendar Komalla proposed a change to openstack/python-heatclient: Template is not required on stack-adopt https://review.openstack.org/112044 | 15:10 |
*** ccrouch has quit IRC | 15:12 | |
*** shakamunyi has joined #heat | 15:13 | |
openstackgerrit | Vijendar Komalla proposed a change to openstack/heat: Template not required on stack-adopt https://review.openstack.org/111844 | 15:15 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat: console url support in server resource https://review.openstack.org/109923 | 15:18 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat: Remove function get_software_config https://review.openstack.org/101396 | 15:18 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat: Cinder, trove, ceilo use ignore_not_found etc https://review.openstack.org/101397 | 15:18 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat: Glance, swift use ClientPlugin.ignore_not_found https://review.openstack.org/100424 | 15:18 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat: Neutron use ClientPlugin.ignore_not_found etc https://review.openstack.org/100423 | 15:18 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat: Nova use ClientPlugin.ignore_not_found https://review.openstack.org/100422 | 15:18 |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat: Move nova_utils functions to nova client plugin https://review.openstack.org/101782 | 15:18 |
*** che-arne has joined #heat | 15:18 | |
*** plomakin has quit IRC | 15:20 | |
*** skraynev has quit IRC | 15:20 | |
*** skraynev has joined #heat | 15:20 | |
*** plomakin has joined #heat | 15:21 | |
*** shakamunyi has quit IRC | 15:28 | |
openstackgerrit | A change was merged to openstack/heat-specs: Fix publishing URL https://review.openstack.org/111480 | 15:32 |
*** rushiagr_ has joined #heat | 15:34 | |
*** skraynev has quit IRC | 15:35 | |
*** tnurlygayanov has quit IRC | 15:35 | |
*** plomakin has quit IRC | 15:35 | |
*** tnurlygayanov has joined #heat | 15:35 | |
*** skraynev has joined #heat | 15:35 | |
*** plomakin has joined #heat | 15:35 | |
*** tspatzier has quit IRC | 15:38 | |
*** dsneddon has joined #heat | 15:40 | |
*** viktors is now known as viktors|afk | 15:40 | |
*** ramishra has joined #heat | 15:40 | |
*** jstrachan has quit IRC | 15:41 | |
*** achampio1 has joined #heat | 15:43 | |
*** achampion has quit IRC | 15:43 | |
*** sjmc7 has joined #heat | 15:44 | |
*** ifarkas has quit IRC | 15:44 | |
*** killer_prince is now known as lazy_prince | 15:52 | |
*** alexheneveld has joined #heat | 15:53 | |
*** gokrokve_ has joined #heat | 15:55 | |
*** Sventek has quit IRC | 15:57 | |
*** gokrokve has quit IRC | 15:58 | |
*** jistr has quit IRC | 16:00 | |
*** tspatzier has joined #heat | 16:02 | |
*** Dambles has joined #heat | 16:04 | |
*** samstav has quit IRC | 16:05 | |
*** Murali has quit IRC | 16:06 | |
*** Murali_ has joined #heat | 16:09 | |
*** achampio1 has quit IRC | 16:12 | |
*** achampion has joined #heat | 16:14 | |
*** openstackstatus has quit IRC | 16:17 | |
*** openstack has joined #heat | 16:18 | |
*** samstav has joined #heat | 16:18 | |
*** andersonvom has quit IRC | 16:19 | |
openstackgerrit | Anant Patil proposed a change to openstack/heat: Hard delete backup stack after successful update. https://review.openstack.org/111986 | 16:20 |
*** fayablazer has quit IRC | 16:22 | |
*** Akshik has quit IRC | 16:27 | |
*** andersonvom has joined #heat | 16:27 | |
*** andersonvom has quit IRC | 16:28 | |
*** Akshik has joined #heat | 16:28 | |
*** andersonvom has joined #heat | 16:28 | |
*** Sventek has joined #heat | 16:31 | |
*** Qiming_ has quit IRC | 16:32 | |
*** pasquier-s has quit IRC | 16:32 | |
*** Akshik has quit IRC | 16:33 | |
*** saju_m has joined #heat | 16:40 | |
*** rwsu has joined #heat | 16:43 | |
*** edmund has joined #heat | 16:46 | |
*** Murali_ has quit IRC | 16:49 | |
openstackgerrit | OpenStack Proposal Bot proposed a change to openstack/heat: Updated from global requirements https://review.openstack.org/105166 | 16:49 |
*** sabeen2 has joined #heat | 16:49 | |
*** sarob has joined #heat | 16:50 | |
*** sabeen has quit IRC | 16:52 | |
*** tspatzier has quit IRC | 16:54 | |
*** morganfainberg_Z is now known as morganfainberg | 16:55 | |
*** TonyBurn_ has quit IRC | 17:05 | |
*** ckmvishnu has quit IRC | 17:06 | |
*** kragniz_ has quit IRC | 17:10 | |
*** mkollaro has quit IRC | 17:11 | |
*** kragniz has joined #heat | 17:15 | |
*** ramishra has quit IRC | 17:21 | |
*** ramishra has joined #heat | 17:22 | |
*** che-arne has quit IRC | 17:24 | |
*** arbylee has quit IRC | 17:25 | |
*** ramishra has quit IRC | 17:26 | |
*** piyush1 has quit IRC | 17:27 | |
*** tyson_ has quit IRC | 17:28 | |
*** tyson_ has joined #heat | 17:28 | |
*** tyson_ has quit IRC | 17:33 | |
*** jyoti-ranjan has joined #heat | 17:33 | |
*** arbylee has joined #heat | 17:34 | |
*** arbylee has quit IRC | 17:37 | |
*** arbylee has joined #heat | 17:37 | |
*** rushiagr_ has quit IRC | 17:43 | |
openstackgerrit | William C. Arnold proposed a change to openstack/heat: Template get_version breaks with Template object https://review.openstack.org/111348 | 17:47 |
*** sabeen2 has quit IRC | 17:47 | |
*** sabeen has joined #heat | 17:47 | |
*** jyoti-ranjan has quit IRC | 17:50 | |
*** piyush has joined #heat | 17:51 | |
*** Murali_ has joined #heat | 17:51 | |
*** piyush1 has joined #heat | 17:52 | |
*** piyush has quit IRC | 17:55 | |
*** alexheneveld has quit IRC | 17:58 | |
*** alexheneveld has joined #heat | 17:59 | |
*** tyson_ has joined #heat | 18:02 | |
*** lazy_prince is now known as killer_prince | 18:09 | |
*** jprovazn has joined #heat | 18:13 | |
*** tspatzier has joined #heat | 18:13 | |
*** tspatzier has quit IRC | 18:20 | |
*** dsneddon is now known as dsneddon_lunch | 18:21 | |
*** vijendar1 has joined #heat | 18:22 | |
*** tyson_ has quit IRC | 18:22 | |
*** bvivek has joined #heat | 18:24 | |
*** vijendar has quit IRC | 18:24 | |
*** tyson_ has joined #heat | 18:25 | |
*** julienvey has quit IRC | 18:26 | |
*** tyson_ has quit IRC | 18:27 | |
*** tyson_ has joined #heat | 18:27 | |
*** blinky_ghost has quit IRC | 18:29 | |
*** tyson_ has quit IRC | 18:31 | |
*** rakesh_hs has joined #heat | 18:31 | |
*** Murali___ has joined #heat | 18:35 | |
*** Murali_ has quit IRC | 18:38 | |
*** shufflebot has quit IRC | 18:40 | |
*** shufflebot has joined #heat | 18:40 | |
*** ramishra has joined #heat | 18:40 | |
*** IlyaE has joined #heat | 18:41 | |
*** f13o_ has joined #heat | 18:46 | |
*** Murali___ has quit IRC | 18:52 | |
*** Murali_ has joined #heat | 18:52 | |
*** vijendar1 has quit IRC | 18:57 | |
*** vijendar has joined #heat | 18:57 | |
*** saju_m has quit IRC | 19:06 | |
*** julienvey has joined #heat | 19:13 | |
*** sabeen has quit IRC | 19:13 | |
*** cody-somerville has quit IRC | 19:18 | |
*** rwsu has quit IRC | 19:18 | |
*** shufflebot has quit IRC | 19:20 | |
*** julienvey has quit IRC | 19:20 | |
*** julienvey has joined #heat | 19:22 | |
*** bvivek has quit IRC | 19:22 | |
*** ramishra has quit IRC | 19:23 | |
*** cody-somerville has joined #heat | 19:34 | |
*** alexpilotti has quit IRC | 19:34 | |
*** mspreitz has joined #heat | 19:37 | |
*** denis_makogon has quit IRC | 19:46 | |
*** dmakogon_ has joined #heat | 19:46 | |
*** rwsu has joined #heat | 19:54 | |
*** sgordon has quit IRC | 19:57 | |
*** Sventek has quit IRC | 19:57 | |
jdandrea | I noticed that I can set availability_zone to 'nova:hostname' for Server resources, but I don't seem to be able to do that for Volume resources. Is there any way to target a specific host for Volumes as we can do for Servers? | 20:00 |
*** alexheneveld has quit IRC | 20:01 | |
*** f13o_ has quit IRC | 20:03 | |
*** TravT has joined #heat | 20:04 | |
jdandrea | Cancel that: Cinder AZs != Nova AZs. :) | 20:06 |
uberj | can someone tell me what I have done wrong? https://pastebin.mozilla.org/5826475 | 20:13 |
uberj | "TypeError: unhashable type: 'dict' " is not a helpful enough error message | 20:13 |
*** tonisbones has quit IRC | 20:18 | |
*** gokrokve has joined #heat | 20:18 | |
*** gokrokve_ has quit IRC | 20:20 | |
*** rakesh_hs has quit IRC | 20:23 | |
uberj | here is heat barfing on it https://pastebin.mozilla.org/5826674 | 20:25 |
*** dsneddon_lunch has quit IRC | 20:25 | |
uberj | so I'm using a dict somewhere and I shouldn't be | 20:27 |
* uberj whips out pdb | 20:27 | |
pscheie | http://paste.openstack.org/show/90700/ | 20:28 |
pscheie | Any idea of the cause of this error I get when I try to spin a stack with a new HOT template? | 20:29 |
pscheie | I suspect it might have something to do with constraints: as that was the last thing I modified before getting this error. | 20:30 |
uberj | pscheie: hard to tell without seeing the template | 20:30 |
jdandrea | It sounds like a dict is being used as a key, yeah. *scratches head* | 20:30 |
*** sabeen1 has joined #heat | 20:30 | |
*** sabeen1 has quit IRC | 20:31 | |
zaneb | pscheie: it sounds like the next parameter is getting mixed in with your constraint | 20:32 |
zaneb | or something | 20:32 |
pscheie | Here's the template: http://paste.openstack.org/show/90702/ | 20:32 |
*** sabeen1 has joined #heat | 20:32 | |
pscheie | zaneb, ah, that seems likely. | 20:32 |
uberj | zaneb: https://pastebin.mozilla.org/5826763 | 20:32 |
uberj | err | 20:32 |
uberj | jdandrea: ^ | 20:32 |
* jdandrea intended his thought toward uberj's pastebin entry and not pscheie. | 20:34 | |
jdandrea | uberj: tx | 20:34 |
uberj | jdandrea: so line 184 in https://pastebin.mozilla.org/5826475 is my issue | 20:35 |
uberj | kind of sad I needed a debuger to find that out | 20:35 |
uberj | not sure if your parser can detect that... | 20:35 |
*** jprovazn has quit IRC | 20:36 | |
jdandrea | uberj: Oh, interesting. I wonder if it's taking the dict "{ get_param: db_server }" as a key for get_resource without resolving it into a string first? | 20:37 |
* pscheie wishes heat said where the Invalid type was being found. | 20:37 | |
uberj | jdandrea: yeah, seems to be doing that | 20:37 |
uberj | yeah, I would think you are not processing the data structure correctly | 20:39 |
uberj | resource resolution in this case needs to happen depth first | 20:39 |
* jdandrea is not the "you" in this case, but agrees with the depth first observation. | 20:40 | |
uberj | I should probably file a bug | 20:41 |
*** radez is now known as radez_g0n3 | 20:42 | |
*** kevinbenton has quit IRC | 20:44 | |
*** ccrouch1 has quit IRC | 20:48 | |
*** julienvey has quit IRC | 20:49 | |
pscheie | In http://docs.openstack.org/developer/heat/template_guide/hot_spec.html#allowed-values why does the allowed_values start with a dash, but none of the sub-parts of instance_type start with a dash? | 20:50 |
zaneb | pscheie: because "constraints" is a list of dictionaries | 20:51 |
pscheie | IOW, when are leading dashes necessary and when are they no? | 20:51 |
pscheie | zaneb, so it depends on the data type of the key? | 20:52 |
zaneb | dashes mean list items | 20:52 |
zaneb | so if you want a list, use dashes | 20:52 |
zaneb | if you don't, don't | 20:52 |
*** dsneddon has joined #heat | 20:54 | |
*** asalkeld has joined #heat | 20:55 | |
*** kevinbenton has joined #heat | 20:56 | |
*** ccrouch has joined #heat | 20:57 | |
pscheie | Aha! Found it: 'type: String' should be 'type: string' (lower case S) | 20:58 |
*** pmyers has quit IRC | 20:58 | |
*** dsneddon has quit IRC | 21:00 | |
*** jdob has quit IRC | 21:01 | |
*** coolsvap has quit IRC | 21:08 | |
*** coolsvap has joined #heat | 21:15 | |
*** openstackgerrit has quit IRC | 21:16 | |
*** openstackgerrit has joined #heat | 21:18 | |
*** jasondotstar has quit IRC | 21:20 | |
*** mspreitz has quit IRC | 21:26 | |
*** aweiteka_ has quit IRC | 21:34 | |
*** cinerama has joined #heat | 21:35 | |
*** Murali__ has joined #heat | 21:36 | |
*** f13o_ has joined #heat | 21:37 | |
*** IlyaE has quit IRC | 21:39 | |
*** vijendar has quit IRC | 21:39 | |
*** Murali_ has quit IRC | 21:40 | |
*** EricGonczer_ has quit IRC | 21:40 | |
*** rpothier has quit IRC | 21:49 | |
*** sdake has quit IRC | 21:49 | |
*** julienvey has joined #heat | 21:50 | |
*** gokrokve has quit IRC | 21:50 | |
*** asalkeld has quit IRC | 21:52 | |
*** asalkeld has joined #heat | 21:53 | |
*** julienvey has quit IRC | 21:54 | |
*** arbylee1 has joined #heat | 21:55 | |
*** arbylee has quit IRC | 21:56 | |
*** dsneddon has joined #heat | 21:56 | |
*** blomquisg has quit IRC | 22:04 | |
*** gondoi is now known as zz_gondoi | 22:04 | |
*** Murali__ has quit IRC | 22:07 | |
*** Murali_ has joined #heat | 22:07 | |
*** piyush1 has quit IRC | 22:11 | |
*** IlyaE has joined #heat | 22:12 | |
stevebaker | asalkeld: do you recall if someone was working on webhook based custom resources? | 22:12 |
asalkeld | hey stevebaker, they might be | 22:13 |
asalkeld | I do remember someone talkiing about it | 22:13 |
asalkeld | can't remember tho' | 22:13 |
asalkeld | grep the logs? | 22:13 |
stevebaker | same, maybe tspatzier? | 22:14 |
asalkeld | no, I don't think so | 22:14 |
stevebaker | oh well, just wondering | 22:16 |
stevebaker | any more reviews for this? https://review.openstack.org/#/c/102397/ | 22:18 |
asalkeld | stevebaker, we have solum meeting now, I'll look later | 22:20 |
*** julienvey has joined #heat | 22:22 | |
*** julienvey has quit IRC | 22:27 | |
*** sdake has joined #heat | 22:31 | |
*** sdake has quit IRC | 22:31 | |
*** sdake has joined #heat | 22:31 | |
*** Murali__ has joined #heat | 22:38 | |
*** Murali_ has quit IRC | 22:42 | |
*** david-lyle has quit IRC | 22:46 | |
*** david-lyle has joined #heat | 22:47 | |
*** Murali__ has quit IRC | 22:47 | |
*** Murali_ has joined #heat | 22:49 | |
*** Murali_ has quit IRC | 22:50 | |
*** piyush has joined #heat | 22:50 | |
*** david-lyle has quit IRC | 22:51 | |
*** Chinorro has quit IRC | 22:52 | |
*** andersonvom has quit IRC | 22:53 | |
*** Chinorro has joined #heat | 22:55 | |
openstackgerrit | Jun Jie Nan proposed a change to openstack/heat-templates: Do not install pip in heat config element https://review.openstack.org/112163 | 22:55 |
*** Dambles has quit IRC | 22:56 | |
*** arbylee1 has quit IRC | 23:00 | |
*** rbuilta has joined #heat | 23:05 | |
*** sarob has quit IRC | 23:08 | |
*** sarob has joined #heat | 23:09 | |
*** sarob has quit IRC | 23:13 | |
*** ccrouch has quit IRC | 23:13 | |
*** f13o_ has quit IRC | 23:14 | |
*** m_22 has joined #heat | 23:19 | |
asalkeld | stevebaker, isn't 5 retries a lot as a default? | 23:21 |
asalkeld | maybe 2 | 23:21 |
*** m_22 has left #heat | 23:21 | |
*** julienvey has joined #heat | 23:23 | |
*** Yanyanhu has joined #heat | 23:26 | |
stevebaker | asalkeld: the aim is to have enough attempts with exponential backoff to give the issue enough time to resolve itself, or to allow $human to intervene while attempts are still happening. We don't know the optimal number yet, but 2 seems like not enough | 23:27 |
*** julienvey has quit IRC | 23:28 | |
asalkeld | yikes, looks like horrible hack:( | 23:28 |
asalkeld | also is going to play nice with conected resources, like volumes | 23:30 |
asalkeld | well, just stop thinking and push the +2 | 23:30 |
*** achampion has quit IRC | 23:35 | |
*** daneyon has quit IRC | 23:35 | |
*** daneyon has joined #heat | 23:36 | |
*** Qiming has joined #heat | 23:36 | |
*** piyush has quit IRC | 23:40 | |
lifeless | asalkeld: :P | 23:40 |
zaneb | asalkeld: in theory it should play nice with connected resources | 23:40 |
*** daneyon has quit IRC | 23:40 | |
stevebaker | asalkeld: I think that any distributed system of sufficient complexity is going to have races and transient failures, heat needs to be really good and handling those | 23:43 |
*** bandarji has joined #heat | 23:43 | |
asalkeld | stevebaker, totally - this we all know is a hack, better things coming hopefully | 23:45 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!