*** dims_ has quit IRC | 00:12 | |
*** Qiming has joined #heat | 00:24 | |
*** Qiming has quit IRC | 00:29 | |
* asalkeld is off to doctor's appointment bbl | 00:40 | |
*** asalkeld is now known as asalkeld_afk | 00:40 | |
*** EricGonczer_ has joined #heat | 00:45 | |
*** dimsum__ has joined #heat | 00:49 | |
*** dimsum__ has quit IRC | 00:54 | |
*** liusheng has quit IRC | 01:02 | |
*** EricGonczer_ has quit IRC | 01:05 | |
*** Qiming has joined #heat | 01:09 | |
Qiming | morning | 01:10 |
---|---|---|
*** Marga_ has joined #heat | 01:12 | |
tiantian | morning | 01:14 |
*** EricGonczer_ has joined #heat | 01:25 | |
*** EricGonczer_ has quit IRC | 01:25 | |
*** pm90_ has joined #heat | 01:28 | |
*** EricGonczer_ has joined #heat | 01:28 | |
*** achanda has joined #heat | 01:28 | |
*** achanda has quit IRC | 01:33 | |
*** Marga__ has joined #heat | 01:52 | |
*** Marga_ has quit IRC | 01:55 | |
*** zhiwei has joined #heat | 01:56 | |
*** asalkeld_afk is now known as asalkeld | 01:59 | |
*** zz_gondoi has quit IRC | 02:01 | |
*** gondoi has joined #heat | 02:08 | |
*** EricGonczer_ has quit IRC | 02:12 | |
*** jamielennox is now known as jamielennox|away | 02:19 | |
*** jamielennox|away is now known as jamielennox | 02:27 | |
*** erkules_ has joined #heat | 02:30 | |
*** EricGonczer_ has joined #heat | 02:32 | |
*** erkules has quit IRC | 02:33 | |
*** ahonda has quit IRC | 02:47 | |
*** achanda has joined #heat | 02:52 | |
*** pm90_ has quit IRC | 02:56 | |
*** pm90_ has joined #heat | 02:57 | |
*** EricGonczer_ has quit IRC | 03:00 | |
tiantian | qiming&asalkeld: about to apply neutron constraint patches, have a look:) https://review.openstack.org/#/c/135835/ https://review.openstack.org/#/c/135875/ https://review.openstack.org/#/c/135880/ | 03:02 |
Qiming | 23 patchsets ... | 03:04 |
tiantian | ? | 03:04 |
stevebaker | zaneb: hey, you about | 03:04 |
Qiming | tiantian, the only reason that I wasn't actively tracking this is that I'm not sure we should do such an eager validation | 03:05 |
Qiming | I'm still studying the property validation code | 03:05 |
Qiming | tiantian, can you tell me what happens if a Nova server is referencing a Neutron port while the Neutron port is yet to be created? | 03:08 |
tiantian | Qiming: the port should be created before server creation, right? | 03:09 |
Qiming | yes, but ... validation happens before creation? | 03:10 |
*** jaypipes has joined #heat | 03:10 | |
tiantian | Qiming: I think so | 03:10 |
Qiming | A. port validate, B. port create, C. server validate D. server create | 03:11 |
tiantian | Qiming: right:) | 03:11 |
Qiming | what's the sequence? A->C->B->D | 03:12 |
tiantian | A-B-C-D | 03:12 |
Qiming | hm... okay, maybe I have some misunderstanding here | 03:12 |
*** huangtianhua has joined #heat | 03:13 | |
Qiming | tiantian, http://git.openstack.org/cgit/openstack/heat/tree/heat/engine/stack.py#n480 | 03:14 |
Qiming | this line tells me that all resources are validated before creation | 03:15 |
Qiming | so, the validation may happen twice, first without value, then with value? | 03:15 |
Qiming | I'm not sure I totally understand this line: http://git.openstack.org/cgit/openstack/heat/tree/heat/engine/resource.py#n844 | 03:17 |
asalkeld | Qiming: that's for nested stacks | 03:18 |
asalkeld | https://github.com/openstack/heat/blob/master/heat/engine/stack_resource.py#L63 | 03:19 |
Qiming | asalkeld, ah ... there it is | 03:19 |
asalkeld | as the nested stack can't resolve the parent functions | 03:19 |
Qiming | hmm, so the validation cannot be a thorough one | 03:20 |
asalkeld | strict validation is good, but there seems to be a need for lots of work arounds | 03:20 |
asalkeld | Qiming: yip | 03:20 |
Qiming | asalkeld, yes, agree | 03:20 |
Qiming | it may lead to adhoc hacks here and there, though I love strict validation | 03:21 |
asalkeld | https://github.com/openstack/heat/commit/e1e852856047313159699f6a814135b6a6fde5e5 | 03:22 |
Qiming | okay, 'skips validation if resource is in INIT state', that is the 'hack' I'm referring to | 03:23 |
asalkeld | the only way around this, imho, is to generate samle data | 03:25 |
asalkeld | sample | 03:25 |
asalkeld | for params, refs, etc | 03:25 |
Qiming | so ... the first round of global validation completely ignores the constraints, because they are in INIT state | 03:25 |
huangtianhua | go away for a while, so much discussion | 03:26 |
asalkeld | Qiming: that's ok'ish, mostly checking the basic structure of the template | 03:26 |
Qiming | then the second round, performed when creation, will do another round of validation ... but this time it is checked more strictly | 03:26 |
huangtianhua | I remembered there are many many times validations :) | 03:28 |
*** pm90_ has quit IRC | 03:28 | |
asalkeld | we probably need caching | 03:28 |
asalkeld | so we don't ask the services the same thing within a short time | 03:28 |
huangtianhua | asalkeld: +1 :) | 03:29 |
openstackgerrit | Merged openstack/heat: Manage deployment updated_at values https://review.openstack.org/154308 | 03:32 |
openstackgerrit | Merged openstack/heat: Move deployment handle_signal to rpc call https://review.openstack.org/154309 | 03:33 |
Qiming | asalkeld, https://review.openstack.org/#/c/155329/ | 03:40 |
asalkeld | looking | 03:40 |
Qiming | I was trying to clarify the protocol there -- how do we ensure the docs are up to date | 03:40 |
asalkeld | i think she is just saying that people will see the new api before the code | 03:41 |
asalkeld | doh | 03:42 |
asalkeld | i think she is just saying that people will see the new api *docs* before the code | 03:42 |
Qiming | that would be okay to me | 03:42 |
asalkeld | (tho' that assumes you don't chase trunk) | 03:42 |
Qiming | but she was actually saying "wait to merge these until Kilo is available to API users." | 03:42 |
asalkeld | yeah, that assumes a lot | 03:43 |
Qiming | maybe a workflow -1 would be better, :) | 03:43 |
asalkeld | that people only consume official versions | 03:43 |
Qiming | btw, asalkeld, huangtianhua and I will disappear for about two weeks | 03:45 |
asalkeld | wow, you guys are magicians | 03:45 |
asalkeld | ;) | 03:45 |
Qiming | it is Chinese New Year's days | 03:45 |
asalkeld | cool, enjoy | 03:45 |
Qiming | tradition is go back hometown to reunion with whomever you haven't talked to in years | 03:46 |
openstackgerrit | Merged openstack/heat: Apply neutron network constraint https://review.openstack.org/135823 | 03:47 |
asalkeld | yeah, I heard we have a big Chinese community here: http://www.sydneychinesenewyear.com/ | 03:47 |
openstackgerrit | Merged openstack/heat: Add 'ha' property for OS::Neutron::Router https://review.openstack.org/143925 | 03:47 |
openstackgerrit | Merged openstack/heat: Change Nova::FloatingIPAssociation resource's id https://review.openstack.org/137628 | 03:47 |
openstackgerrit | Merged openstack/heat: Change Neutron::FloatingIPAssociation res's name https://review.openstack.org/137799 | 03:47 |
*** achanda has quit IRC | 04:00 | |
*** tiantian has quit IRC | 04:04 | |
*** pm90_ has joined #heat | 04:05 | |
*** sdake_ has joined #heat | 04:17 | |
*** sdake_ has quit IRC | 04:21 | |
*** ananta has joined #heat | 04:29 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Stop RPC server gracefully https://review.openstack.org/156118 | 04:29 |
*** ananta has quit IRC | 04:32 | |
*** ananta has joined #heat | 04:32 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Convergence message bus https://review.openstack.org/153999 | 04:35 |
*** sabeen1 has quit IRC | 04:36 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Convergence message bus https://review.openstack.org/153999 | 04:48 |
*** nkhare has joined #heat | 04:53 | |
*** KanagarajM has joined #heat | 04:59 | |
*** achanda has joined #heat | 05:00 | |
*** achanda has quit IRC | 05:06 | |
*** Tango|2 has joined #heat | 05:41 | |
openstackgerrit | Merged openstack/heat: [DOC] Minor - fixed typo in file extension https://review.openstack.org/155912 | 05:57 |
*** pm90_ has quit IRC | 06:02 | |
*** Tango|2 has quit IRC | 06:04 | |
*** dmn_ has joined #heat | 06:06 | |
*** sdake_ has joined #heat | 06:08 | |
*** achanda has joined #heat | 06:13 | |
*** ahonda has joined #heat | 06:15 | |
openstackgerrit | huangtianhua proposed openstack/heat: Move AWS::EC2::* resources to heat/engine/resources/aws/ec2 https://review.openstack.org/155689 | 06:26 |
*** KanagarajM has quit IRC | 06:27 | |
openstackgerrit | huangtianhua proposed openstack/heat: Move AWS::CloudFormation::* resources to heat/engine/resources/aws/cfn https://review.openstack.org/156005 | 06:28 |
openstackgerrit | huangtianhua proposed openstack/heat: Move AWS::AutoScaling::* resources https://review.openstack.org/156008 | 06:28 |
openstackgerrit | huangtianhua proposed openstack/heat: Move other aws resources to corresponding directory https://review.openstack.org/156009 | 06:29 |
openstackgerrit | huangtianhua proposed openstack/heat: Move nova resources to engine/resources/openstack/nova/ https://review.openstack.org/156012 | 06:31 |
skraynev | good morning | 06:33 |
*** pitr-ch has quit IRC | 06:41 | |
openstackgerrit | huangtianhua proposed openstack/heat: Move cinder volume resource https://review.openstack.org/156014 | 06:42 |
openstackgerrit | huangtianhua proposed openstack/heat: Move neutron resources to /engine/resources/openstack/neutron https://review.openstack.org/156025 | 06:44 |
*** achanda has quit IRC | 06:45 | |
openstackgerrit | huangtianhua proposed openstack/heat: Move glance image resource https://review.openstack.org/156027 | 06:45 |
openstackgerrit | huangtianhua proposed openstack/heat: Move swift resource https://review.openstack.org/156028 | 06:46 |
openstackgerrit | huangtianhua proposed openstack/heat: Move ceilometer alarm resource https://review.openstack.org/156030 | 06:47 |
openstackgerrit | huangtianhua proposed openstack/heat: Move heat resources https://review.openstack.org/156035 | 06:48 |
openstackgerrit | huangtianhua proposed openstack/heat: Move sahara resources https://review.openstack.org/156036 | 06:50 |
openstackgerrit | huangtianhua proposed openstack/heat: Move trove resource https://review.openstack.org/156037 | 06:51 |
*** sdake_ has quit IRC | 06:52 | |
openstackgerrit | huangtianhua proposed openstack/heat: Move resource inheritance class to engine/resources https://review.openstack.org/156041 | 06:54 |
*** dmn_ has quit IRC | 07:00 | |
*** achanda has joined #heat | 07:04 | |
*** Marga__ has quit IRC | 07:17 | |
*** Qiming has quit IRC | 07:24 | |
*** inc0 has joined #heat | 07:33 | |
inc0 | good morning | 07:33 |
inc0 | asalkeld, ping | 07:34 |
asalkeld | hi inc0 | 07:34 |
inc0 | hi, could you take a look here? https://review.openstack.org/#/c/154820/ | 07:34 |
inc0 | I could use second opinion | 07:34 |
inc0 | I'm trying to push this field to oslo, but we might end up implementing it in heat | 07:35 |
asalkeld | what do we need it for? | 07:36 |
asalkeld | what field | 07:36 |
inc0 | stack field | 07:36 |
inc0 | I mean in stack | 07:36 |
asalkeld | what field in the stack table? | 07:36 |
inc0 | parameters | 07:37 |
inc0 | and more importantly, template in raw templates | 07:38 |
asalkeld | did you explain that? | 07:38 |
*** jprovazn has joined #heat | 07:38 | |
inc0 | yup | 07:38 |
inc0 | problem is, it seems that only heat have this extensive, big, nested datastructures | 07:38 |
asalkeld | inc0: we do have seriazation for this : see Template class | 07:39 |
asalkeld | but the issue is how it is written to the db? | 07:39 |
inc0 | I know, but I don't really want to use string field for that | 07:39 |
inc0 | its sqlalchemy.json_field | 07:39 |
asalkeld | can we define our own types? | 07:39 |
inc0 | so sqlalchemy does low level handling | 07:40 |
inc0 | yeah, we can | 07:40 |
asalkeld | if we can, just do that and move on | 07:40 |
asalkeld | the only similar thing in nova might be metadata | 07:40 |
asalkeld | how is that done | 07:40 |
inc0 | metadata its just key->value | 07:41 |
inc0 | so its doable with normal dict | 07:41 |
asalkeld | and value can be *anything* | 07:41 |
inc0 | but they don't care about that | 07:41 |
asalkeld | and neither do we | 07:41 |
inc0 | well, I'll talk to them for a day or two, and if that wont work I'll just implement it on heat | 07:42 |
inc0 | in* | 07:42 |
asalkeld | ok, i don't see that as a big issue | 07:43 |
inc0 | I'll get back to this topic when someone else will try to implement json field;) | 07:43 |
asalkeld | ok | 07:44 |
* asalkeld goes back to making supper | 07:44 | |
*** pitr-ch has joined #heat | 07:45 | |
*** dmn_ has joined #heat | 07:48 | |
*** pitr-ch has quit IRC | 07:51 | |
*** chlong has quit IRC | 07:51 | |
*** dmn_ has quit IRC | 08:02 | |
*** shardy has joined #heat | 08:02 | |
*** KanagarajM has joined #heat | 08:04 | |
shardy | jamielennox: Hey, if you're around, I wondered if you had any thoughts of the best way to fix bug #1420987 ? | 08:06 |
openstack | bug 1420987 in heat "Heat not working with keystoneclient_v2" [High,Triaged] https://launchpad.net/bugs/1420987 | 08:06 |
shardy | reporter says it's a regression caused by https://review.openstack.org/#/c/146368 but I've not had time to confirm that | 08:07 |
*** jistr has joined #heat | 08:08 | |
*** jcoufal has joined #heat | 08:10 | |
*** dmn_ has joined #heat | 08:11 | |
*** mzbik has joined #heat | 08:12 | |
*** achanda has quit IRC | 08:18 | |
*** pitr-ch has joined #heat | 08:24 | |
*** achanda has joined #heat | 08:28 | |
*** achanda has quit IRC | 08:35 | |
*** tspatzier has joined #heat | 08:36 | |
*** KanagarajM has quit IRC | 08:37 | |
*** KanagarajM has joined #heat | 08:38 | |
*** achanda has joined #heat | 08:40 | |
*** dulek has joined #heat | 08:40 | |
*** tspatzier__ has joined #heat | 08:45 | |
*** sorantis has joined #heat | 08:47 | |
*** ifarkas has joined #heat | 08:47 | |
*** tspatzier__ has quit IRC | 08:47 | |
*** tspatzier has quit IRC | 08:48 | |
openstackgerrit | huangtianhua proposed openstack/heat: Import correct 'socket' module for 'host' config option https://review.openstack.org/156155 | 08:52 |
*** kairat_kushaev has quit IRC | 08:57 | |
*** openstackgerrit has quit IRC | 08:57 | |
*** openstackgerrit has joined #heat | 08:58 | |
openstackgerrit | huangtianhua proposed openstack/heat: Move trove resource https://review.openstack.org/156037 | 08:59 |
*** jistr has quit IRC | 08:59 | |
*** alexheneveld has joined #heat | 09:02 | |
*** achanda has quit IRC | 09:02 | |
openstackgerrit | huangtianhua proposed openstack/heat: Move resource inheritance class to engine/resources https://review.openstack.org/156041 | 09:02 |
*** Qiming has joined #heat | 09:03 | |
*** tspatzier has joined #heat | 09:04 | |
*** tspatzier has quit IRC | 09:04 | |
cmyster | morning | 09:07 |
cmyster | -ish | 09:07 |
*** kairat_kushaev has joined #heat | 09:10 | |
*** achanda has joined #heat | 09:12 | |
*** lsmola has joined #heat | 09:20 | |
openstackgerrit | huangtianhua proposed openstack/heat: Allow adding event error when state changed https://review.openstack.org/155679 | 09:21 |
*** achanda has quit IRC | 09:23 | |
*** dmn_ has quit IRC | 09:29 | |
*** dmn_ has joined #heat | 09:29 | |
*** i3lifee has joined #heat | 09:36 | |
*** pas-ha has joined #heat | 09:37 | |
*** alexheneveld has quit IRC | 09:38 | |
*** alexheneveld has joined #heat | 09:39 | |
*** dmn_ has quit IRC | 09:49 | |
*** i3lifee_ has joined #heat | 09:50 | |
*** pas-ha has quit IRC | 09:50 | |
*** huangtianhua has quit IRC | 09:51 | |
*** i3lifee has quit IRC | 09:51 | |
*** sdake_ has joined #heat | 09:54 | |
*** alexheneveld has quit IRC | 09:54 | |
*** ishant has joined #heat | 09:57 | |
*** pas-ha has joined #heat | 10:05 | |
*** i3lifee_ has quit IRC | 10:06 | |
*** ifarkas has quit IRC | 10:11 | |
*** ifarkas has joined #heat | 10:14 | |
*** KanagarajM has quit IRC | 10:55 | |
*** dmn_ has joined #heat | 11:02 | |
*** sorantis has quit IRC | 11:10 | |
*** prazumovsky has joined #heat | 11:14 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Improve Property error msg for properties validate https://review.openstack.org/127150 | 11:16 |
*** zhiwei has quit IRC | 11:17 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Add resource_definitions check to Stack.validate https://review.openstack.org/140976 | 11:23 |
*** derekh has joined #heat | 11:23 | |
*** jprovazn has quit IRC | 11:28 | |
*** sorantis has joined #heat | 11:28 | |
cmyster | shardy: there ? | 11:30 |
shardy | cmyster: hi | 11:34 |
cmyster | hey, how was the weekend ? | 11:34 |
shardy | Qiming: Hey, did you figure out the oslo_log config setup in the end? | 11:34 |
shardy | Qiming: http://osdir.com/ml/openstack-dev/2015-01/msg01179.html | 11:34 |
shardy | I'm looking at re-syncing oslo and ran into the same issue | 11:35 |
Qiming | shardy, no | 11:35 |
shardy | cmyster: Hey, good thanks, and you? | 11:35 |
cmyster | can't complain too hard ;) | 11:35 |
shardy | Qiming: Ok, np, just wanted to check we weren't duplicating effort, I'll add you to the review when I figure it out :) | 11:35 |
*** jprovazn has joined #heat | 11:35 | |
cmyster | shardy: is there a way ATM to ask Heat to give me an exact list of parameters for a certain resource? | 11:35 |
Qiming | shardy, sure | 11:35 |
shardy | cmyster: you mean the properties that it takes? | 11:36 |
shardy | s/takes/supports | 11:36 |
cmyster | something like that | 11:36 |
shardy | cmyster: heat resource-type-show gives you the schema, if that helps? | 11:37 |
cmyster | bingo, thanks... I knew we had it just forgot how | 11:37 |
*** sdake_ has quit IRC | 11:39 | |
*** sdake_ has joined #heat | 11:40 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Change RouterInterface resource's resource_id https://review.openstack.org/138336 | 11:43 |
*** dmn_ has quit IRC | 11:43 | |
*** jprovazn has quit IRC | 11:52 | |
*** jprovazn has joined #heat | 11:57 | |
inc0 | guys, review plz https://review.openstack.org/#/c/154835/ -> required for versionedobjects to work with heat | 12:00 |
*** jprovazn has quit IRC | 12:06 | |
asalkeld | inc0: done | 12:09 |
*** dimsum__ has joined #heat | 12:11 | |
inc0 | asalkeld, basically tzinfo was injected for legacy objects according to Dan's remarks above. I guess that shouldn't be the case now, and for sure shouldn't be the case in oslo - it directly mess up with data | 12:12 |
asalkeld | inc0: cool - just add to commit message | 12:13 |
asalkeld | ditch the json type (add that to heat tree) | 12:13 |
inc0 | oki, I'll confirm that with Dan as well | 12:13 |
*** tochi has quit IRC | 12:14 | |
*** shadower has joined #heat | 12:19 | |
*** jprovazn has joined #heat | 12:19 | |
*** nkhare has quit IRC | 12:23 | |
*** aweiteka has joined #heat | 12:23 | |
*** nkhare has joined #heat | 12:25 | |
* asalkeld heads off to bed... | 12:27 | |
*** asalkeld has quit IRC | 12:27 | |
*** kbyrne has joined #heat | 12:37 | |
*** tspatzier has joined #heat | 12:39 | |
*** derekh has quit IRC | 12:46 | |
*** derekh has joined #heat | 12:46 | |
*** Marga_ has joined #heat | 12:47 | |
*** aweiteka has quit IRC | 12:56 | |
*** pas-ha has quit IRC | 12:57 | |
*** cdent has joined #heat | 12:57 | |
*** jdob has joined #heat | 13:00 | |
*** nkhare has quit IRC | 13:01 | |
*** jprovazn has quit IRC | 13:04 | |
*** tspatzier has quit IRC | 13:04 | |
*** dimsum__ is now known as dims | 13:05 | |
*** dims is now known as Guest70266 | 13:05 | |
*** tspatzier has joined #heat | 13:07 | |
*** pas-ha has joined #heat | 13:09 | |
*** jcoufal_ has joined #heat | 13:10 | |
*** tspatzier has quit IRC | 13:12 | |
*** jcoufal has quit IRC | 13:13 | |
*** EmilienM is now known as EmilienM|afk | 13:20 | |
*** jprovazn has joined #heat | 13:24 | |
*** coolsvap- is now known as coolsvap | 13:27 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat-specs: Improvements in deprecation process https://review.openstack.org/153235 | 13:31 |
*** sorantis has quit IRC | 13:31 | |
*** sorantis has joined #heat | 13:33 | |
openstackgerrit | Sergey Kraynev proposed openstack/heat-specs: Improvements in deprecation process https://review.openstack.org/153235 | 13:46 |
*** Guest70266 is now known as dims__ | 13:48 | |
*** prazumovsky has quit IRC | 13:48 | |
*** aweiteka has joined #heat | 13:48 | |
*** inc0 has quit IRC | 13:54 | |
*** inc0_ has joined #heat | 13:55 | |
*** radez_g0n3 is now known as radez | 13:55 | |
*** ananta has quit IRC | 13:56 | |
*** wirehead_ has quit IRC | 13:58 | |
*** wirehead_ has joined #heat | 13:58 | |
*** Marga_ has quit IRC | 13:59 | |
openstackgerrit | Sergey Kraynev proposed openstack/heat-specs: Improvements in deprecation process https://review.openstack.org/153235 | 14:01 |
*** tspatzier has joined #heat | 14:01 | |
*** hdd has joined #heat | 14:05 | |
*** funzo has joined #heat | 14:11 | |
*** rpothier has joined #heat | 14:17 | |
*** tspatzier__ has joined #heat | 14:17 | |
*** tspatzier has quit IRC | 14:18 | |
*** mzbik has quit IRC | 14:21 | |
*** tspatzier___ has joined #heat | 14:29 | |
*** tspatzier___ has quit IRC | 14:31 | |
*** tspatzier__ has quit IRC | 14:32 | |
*** lpmulligan has joined #heat | 14:37 | |
*** EricGonczer_ has joined #heat | 14:38 | |
*** Chinorro_ has quit IRC | 14:39 | |
*** jmckind has joined #heat | 14:47 | |
*** Qiming has quit IRC | 14:47 | |
*** pm90_ has joined #heat | 14:50 | |
*** ishant has quit IRC | 14:56 | |
*** cdent_ has joined #heat | 14:57 | |
*** cdent has quit IRC | 14:57 | |
*** cdent_ is now known as cdent | 14:57 | |
*** tspatzier has joined #heat | 15:01 | |
*** hdd has quit IRC | 15:03 | |
*** beekneemech is now known as bnemec | 15:13 | |
*** EmilienM|afk is now known as EmilienM | 15:16 | |
*** inc0_ has quit IRC | 15:20 | |
*** tspatzier__ has joined #heat | 15:22 | |
*** sabeen has joined #heat | 15:23 | |
*** tspatzier has quit IRC | 15:24 | |
*** jasond has joined #heat | 15:25 | |
*** vijendar has joined #heat | 15:28 | |
*** pm90_ has quit IRC | 15:30 | |
*** pm90_ has joined #heat | 15:31 | |
*** alextricity has joined #heat | 15:32 | |
*** EricGonczer_ has quit IRC | 15:33 | |
alextricity | Hello :) Has anybody had a software deployment resource get stuck in the "create in progress" state? I'm logging the output of my config script and I know the script is finishing, but for some reason the software deploy resources just hangs. | 15:33 |
*** thedodd has joined #heat | 15:50 | |
ryansb | alextricity: that can happen if networking fails and the softwareconfig can't tell heat it's done running | 15:54 |
alextricity | Hmm..i see | 15:55 |
cmyster | wasn't there an open bug there ? | 15:55 |
*** sarob has joined #heat | 15:56 | |
*** jistr has joined #heat | 15:58 | |
*** sarob has quit IRC | 16:00 | |
*** david-lyle_afk is now known as david-lyle | 16:01 | |
alextricity | What SIGNAL does the software deploy resource send heat to tell it that it's finished? | 16:02 |
alextricity | Anyway I can do that manually? | 16:02 |
*** thedodd has quit IRC | 16:04 | |
*** spzala has joined #heat | 16:05 | |
*** tspatzier__ has quit IRC | 16:07 | |
*** Drago has joined #heat | 16:09 | |
*** pitr-ch has quit IRC | 16:10 | |
*** Drago has quit IRC | 16:11 | |
*** Drago has joined #heat | 16:11 | |
*** sdake_ has quit IRC | 16:13 | |
*** Tango|2 has joined #heat | 16:13 | |
*** thedodd has joined #heat | 16:15 | |
*** sdake_ has joined #heat | 16:16 | |
*** pm90_ has quit IRC | 16:19 | |
*** sarob has joined #heat | 16:24 | |
*** sarob_ has joined #heat | 16:24 | |
shadower | alextricity: if you do heat resource-shouw <stack_name> <resource_name> for the software deployment, you should see a URL that you can ping manually | 16:25 |
shadower | iirc it's just POST to the URL (though it may be more involved, not sure now) | 16:25 |
*** kebray has joined #heat | 16:26 | |
*** zigo has quit IRC | 16:26 | |
*** sarob has quit IRC | 16:28 | |
*** zigo has joined #heat | 16:31 | |
*** jistr has quit IRC | 16:32 | |
*** jpeeler has quit IRC | 16:32 | |
*** pm90_ has joined #heat | 16:35 | |
*** Marga_ has joined #heat | 16:37 | |
*** pm90__ has joined #heat | 16:38 | |
*** pm90___ has joined #heat | 16:40 | |
*** sorantis has quit IRC | 16:41 | |
*** pm90_ has quit IRC | 16:41 | |
*** pm90_ has joined #heat | 16:42 | |
*** pm90__ has quit IRC | 16:43 | |
*** sdake__ has joined #heat | 16:43 | |
*** pm90__ has joined #heat | 16:44 | |
*** jmckind has quit IRC | 16:44 | |
*** pm90__ has quit IRC | 16:45 | |
*** pm90___ has quit IRC | 16:45 | |
*** sarob_ has quit IRC | 16:46 | |
*** pm90__ has joined #heat | 16:46 | |
*** jpeeler has joined #heat | 16:46 | |
*** jpeeler has joined #heat | 16:46 | |
*** jmckind has joined #heat | 16:46 | |
*** sdake_ has quit IRC | 16:46 | |
*** pm90_ has quit IRC | 16:47 | |
*** dulek has quit IRC | 16:52 | |
*** pitr-ch has joined #heat | 16:56 | |
*** sarob has joined #heat | 16:59 | |
*** kebray has quit IRC | 17:03 | |
*** thedodd has quit IRC | 17:05 | |
*** thedodd has joined #heat | 17:05 | |
*** kebray has joined #heat | 17:05 | |
*** pitr-ch has quit IRC | 17:06 | |
*** stannie has quit IRC | 17:11 | |
alextricity | Something in my config script is causing the software deployment resource to hang. When I take the script out it works just fine....hmm... | 17:13 |
alextricity | All my script does is install an application from source | 17:13 |
*** coolsvap is now known as coolsvap_ | 17:14 | |
alextricity | Are there any timeouts for software deployments/configs I need to be aware of? | 17:21 |
*** kebray has quit IRC | 17:25 | |
*** pm90__ has quit IRC | 17:25 | |
*** sdake__ has quit IRC | 17:25 | |
*** Drago has quit IRC | 17:25 | |
*** jasond has quit IRC | 17:25 | |
*** shadower has quit IRC | 17:25 | |
*** jtomasek has quit IRC | 17:25 | |
*** sergmelikyan has quit IRC | 17:25 | |
*** tellesnobrega has quit IRC | 17:25 | |
*** jasond`` has quit IRC | 17:25 | |
*** mkoderer has quit IRC | 17:25 | |
*** mtreinish has quit IRC | 17:25 | |
*** strictlyb has quit IRC | 17:25 | |
*** tsufiev has quit IRC | 17:25 | |
*** zaneb has quit IRC | 17:25 | |
*** SergeyLukjanov has quit IRC | 17:25 | |
*** gpocentek has quit IRC | 17:25 | |
openstackgerrit | Vijendar Komalla proposed openstack/heat: Rackspace:LoadBalancer add address in virtualIps https://review.openstack.org/154562 | 17:26 |
*** Drago has joined #heat | 17:30 | |
*** Marga_ has quit IRC | 17:31 | |
*** kebray has joined #heat | 17:31 | |
*** pm90__ has joined #heat | 17:31 | |
*** sdake__ has joined #heat | 17:31 | |
*** jasond has joined #heat | 17:31 | |
*** shadower has joined #heat | 17:31 | |
*** jtomasek has joined #heat | 17:31 | |
*** sergmelikyan has joined #heat | 17:31 | |
*** tellesnobrega has joined #heat | 17:31 | |
*** jasond`` has joined #heat | 17:31 | |
*** mkoderer has joined #heat | 17:31 | |
*** mtreinish has joined #heat | 17:31 | |
*** 64MABZ0GB has joined #heat | 17:31 | |
*** tsufiev has joined #heat | 17:31 | |
*** zaneb has joined #heat | 17:31 | |
*** SergeyLukjanov has joined #heat | 17:31 | |
*** gpocentek has joined #heat | 17:31 | |
*** che-arne has joined #heat | 17:32 | |
*** andrearosa has quit IRC | 17:39 | |
*** mkerrin has quit IRC | 17:39 | |
*** dsneddon has joined #heat | 17:41 | |
*** jrist has quit IRC | 17:46 | |
*** kebray has quit IRC | 17:54 | |
*** pas-ha has quit IRC | 17:56 | |
*** jcoufal_ has quit IRC | 17:57 | |
*** jrist has joined #heat | 17:59 | |
*** reed has joined #heat | 18:02 | |
*** sarob has quit IRC | 18:03 | |
*** Marga_ has joined #heat | 18:03 | |
*** radez is now known as radez_g0n3 | 18:04 | |
*** EmilienM is now known as EmilienM|afk | 18:07 | |
*** coolsvap_ is now known as coolsvap | 18:25 | |
*** pm90__ has quit IRC | 18:34 | |
*** sam22 has joined #heat | 18:36 | |
*** sam22 has quit IRC | 18:36 | |
openstackgerrit | Steven Hardy proposed openstack/heat: Move logging to use oslo_log library https://review.openstack.org/156323 | 18:37 |
openstackgerrit | Steven Hardy proposed openstack/heat: Sync oslo-incubator and remove log module https://review.openstack.org/156324 | 18:37 |
*** saju_m has joined #heat | 18:37 | |
openstackgerrit | Vijendar Komalla proposed openstack/heat: Rackspace:LoadBalancer add address in virtualIps https://review.openstack.org/154562 | 18:38 |
*** MasterPiece has joined #heat | 18:38 | |
shardy | alextricity: does the script work if you run it manually by sshing onto the box? | 18:40 |
alextricity | Yes, the script runs just fine. I set up logging with it and I can see it running, and eventually finishing. | 18:40 |
shardy | alextricity: the most likely reason is networking, either the script can't read wherever the source is, or it can't signal heat when the Deployment is done | 18:40 |
alextricity | shardy: I told the deployment to have a "signal_transport" of NO_SIGNAL for now. My dirty workaround was to swan a new deployment/config resource waiting for the script to finish. | 18:42 |
shardy | alextricity: Are you specifying anything for "signal_transport", or using the default (on the Deployment resource) | 18:42 |
alextricity | That seems to work fine | 18:42 |
alextricity | shardy: I was using the default before setting it to NO_SIGNAL | 18:42 |
shardy | alextricity: Ok, so your networking isn't allowing the agent to talk to heat-api-cfn (or you've not got it running) | 18:42 |
alextricity | The default works just fine without me running my script. Something in the 'configure, make, make install' process for this app is breaking the signal | 18:43 |
shardy | alextricity: weird, so a dummy script like echo "foo" > /tmp works fine without NO_SIGNAL? | 18:43 |
alextricity | yes | 18:44 |
shardy | hrm, not networking then, odd | 18:44 |
alextricity | indeed. I <3 technology | 18:44 |
*** hdd has joined #heat | 18:46 | |
*** ifarkas has quit IRC | 18:49 | |
*** rdo has joined #heat | 18:55 | |
Tango|2 | Quick question: is it possible to do a resource-show on a resource in a nested stack? | 18:56 |
alextricity | Probably not since heat views that entire nested stack as one resource, right? | 18:58 |
alextricity | I heard that they made it easier to debug nested stacks in juno however | 18:58 |
*** erkules_ is now known as erkules | 19:11 | |
*** radez_g0n3 is now known as radez | 19:12 | |
Tango|2 | resource-list with a -n option would show the nested resources, but resource-show does not recognize the nested resource, and there is no depth option for resource-show | 19:13 |
*** spzala_ has joined #heat | 19:18 | |
*** spzala has quit IRC | 19:19 | |
*** spzala_ is now known as spzala | 19:19 | |
alextricity | you could just poke around the database to see if it's in there | 19:21 |
*** sabeen3 has joined #heat | 19:23 | |
*** sabeen has quit IRC | 19:25 | |
*** dims__ has quit IRC | 19:25 | |
*** coolsvap is now known as coolsvap_ | 19:31 | |
*** sdake is now known as sdake_ws | 19:37 | |
Tango|2 | Yes, but it would be a little hard for typical user. | 19:37 |
*** thedodd has quit IRC | 19:44 | |
*** MasterPiece has quit IRC | 19:49 | |
*** sdake__ is now known as sdake | 19:54 | |
*** thedodd has joined #heat | 19:56 | |
openstackgerrit | Winnie Tsang proposed openstack/python-heatclient: Reuse existing registry and/or existing template https://review.openstack.org/154692 | 19:57 |
*** achanda has joined #heat | 19:58 | |
*** kebray has joined #heat | 20:00 | |
*** EmilienM|afk is now known as EmilienM | 20:04 | |
*** achanda has quit IRC | 20:09 | |
*** sarob has joined #heat | 20:22 | |
*** kebray has quit IRC | 20:25 | |
*** dims__ has joined #heat | 20:25 | |
openstackgerrit | Sabeen proposed openstack/heat: Added stack tag tests https://review.openstack.org/153343 | 20:26 |
*** sarob has quit IRC | 20:27 | |
*** EricGonczer_ has joined #heat | 20:28 | |
*** kebray has joined #heat | 20:30 | |
*** dims__ has quit IRC | 20:30 | |
*** Drago has quit IRC | 20:34 | |
*** Drago has joined #heat | 20:34 | |
*** EricGonczer_ has quit IRC | 20:34 | |
*** jtomasek has quit IRC | 20:37 | |
openstackgerrit | Jason Dunsmore proposed openstack/heat: Encrypt Heat template hidden parameters https://review.openstack.org/97900 | 20:44 |
*** saju_m has quit IRC | 20:44 | |
*** lpmulligan has quit IRC | 20:45 | |
*** achanda has joined #heat | 20:45 | |
openstackgerrit | Adrien Vergé proposed openstack/python-heatclient: Fix non-working endpoint type argument https://review.openstack.org/156361 | 20:45 |
*** dulek has joined #heat | 20:45 | |
*** jprovazn has quit IRC | 20:47 | |
*** dulek has quit IRC | 20:56 | |
*** pm90_ has joined #heat | 20:58 | |
*** pm90_ has quit IRC | 20:59 | |
*** pm90_ has joined #heat | 20:59 | |
*** jtomasek has joined #heat | 21:05 | |
*** achanda has quit IRC | 21:06 | |
*** lpmulligan has joined #heat | 21:12 | |
*** tspatzier__ has joined #heat | 21:18 | |
*** alexheneveld has joined #heat | 21:18 | |
*** jcoufal has joined #heat | 21:29 | |
*** dims__ has joined #heat | 21:33 | |
*** dims_ has joined #heat | 21:34 | |
*** dims__ has quit IRC | 21:38 | |
*** kfox1111 has joined #heat | 21:44 | |
kfox1111 | man, my luck with openstack the last 2 weeks has been bad. :/ | 21:44 |
kfox1111 | ok, heat bug this time.... | 21:44 |
kfox1111 | Tried to delete a heat stack as an admin that did not create it. | 21:44 |
kfox1111 | it failed while deleting the floatingip. | 21:45 |
kfox1111 | tried it again. it had already deleted the project, and its failing now since it doesnt exist. :/ | 21:45 |
*** jdob has quit IRC | 21:52 | |
*** lpmulligan has quit IRC | 21:54 | |
*** jamielennox is now known as jamielennox|away | 22:03 | |
openstackgerrit | Merged openstack/heat: Stop RPC server gracefully https://review.openstack.org/156118 | 22:04 |
stevebaker | kfox1111: that should be fixed in master | 22:09 |
stevebaker | alextricity: still about? | 22:09 |
ryansb | 4 | 22:09 |
ryansb | oops. | 22:10 |
*** kebray has quit IRC | 22:10 | |
*** kfox1111 has quit IRC | 22:11 | |
stevebaker | 5 | 22:11 |
*** aweiteka has quit IRC | 22:12 | |
*** jamielennox|away is now known as jamielennox | 22:14 | |
*** che-arne has quit IRC | 22:15 | |
*** EricGonczer_ has joined #heat | 22:17 | |
*** asalkeld has joined #heat | 22:19 | |
*** jtomasek has quit IRC | 22:19 | |
*** sarob has joined #heat | 22:24 | |
*** jasond has quit IRC | 22:25 | |
openstackgerrit | Steven Hardy proposed openstack/heat: Move logging to use oslo_log library https://review.openstack.org/156323 | 22:28 |
openstackgerrit | Steven Hardy proposed openstack/heat: Sync oslo-incubator and remove log module https://review.openstack.org/156324 | 22:28 |
*** sarob has quit IRC | 22:29 | |
*** kebray has joined #heat | 22:31 | |
*** rpothier has quit IRC | 22:33 | |
Tango|2 | stevebaker: Hi Steve | 22:34 |
*** achanda has joined #heat | 22:34 | |
*** asalkeld_ has joined #heat | 22:35 | |
*** asalkeld has quit IRC | 22:36 | |
*** tspatzier__ has quit IRC | 22:38 | |
*** kebray has quit IRC | 22:39 | |
*** kebray has joined #heat | 22:40 | |
stevebaker | Tango|2: hi | 22:49 |
*** fbo has quit IRC | 22:49 | |
Tango|2 | stevebaker: I interested in working on a software config hook for fig/compose, so I would like to get your thought | 22:50 |
Tango|2 | stevebaker: Do you think it should be a separate hook altogether, or a modification from a current hook? | 22:51 |
*** asalkeld has joined #heat | 22:51 | |
*** dims_ has quit IRC | 22:51 | |
*** dims__ has joined #heat | 22:51 | |
stevebaker | Tango|2: sounds like a good idea. I'd also like the docker hook to devolve into deploying only a single container instead of our partial support of the kubernetes format. | 22:52 |
*** asalkeld_ has quit IRC | 22:52 | |
stevebaker | Tango|2: so we can end up with hoods for docker (one container), fig/compose(multi containers), and kubelet(multi containers) | 22:53 |
stevebaker | hooks | 22:53 |
Tango|2 | stevebaker: Single container like what you would get with a Dockerfile? | 22:53 |
*** fbo has joined #heat | 22:54 | |
stevebaker | Tango|2: like a straight replacement for the DockerInc::Docker::Container resource http://docs.openstack.org/developer/heat/template_guide/contrib.html#dockerinc-resource | 22:54 |
stevebaker | ramishra: ^^ | 22:54 |
Tango|2 | stevebaker: I see. That's good, so we would have a more uniform and consistent way to handle container | 22:55 |
stevebaker | people can use the agent/format they prefer (or have already adopted outside of heat). kubernetes, compose or raw docker | 22:56 |
Tango|2 | stevebaker: Right, that's why I would like to fill the gap in using fig/compose. So I guess I should start with a spec for review, and incorporate feedback from everyone? | 22:57 |
stevebaker | Tango|2: A Wishlist bug on the heat-templates launchpad would likely be enough | 23:04 |
Tango|2 | OK, let me start with that | 23:05 |
openstackgerrit | Merged openstack/heat-specs: Add support for PCI ports in OS::Neutron::Port https://review.openstack.org/126399 | 23:05 |
*** vijendar has quit IRC | 23:05 | |
*** jmckind has quit IRC | 23:05 | |
*** asalkeld_ has joined #heat | 23:07 | |
*** asalkeld has quit IRC | 23:08 | |
*** cdent has quit IRC | 23:09 | |
*** chlong has joined #heat | 23:09 | |
*** achanda has quit IRC | 23:21 | |
*** sarob has joined #heat | 23:26 | |
*** EricGonczer_ has quit IRC | 23:28 | |
*** Marga_ has quit IRC | 23:28 | |
*** Marga_ has joined #heat | 23:28 | |
*** EricGonczer_ has joined #heat | 23:29 | |
*** dims_ has joined #heat | 23:30 | |
*** sarob has quit IRC | 23:31 | |
*** dims__ has quit IRC | 23:32 | |
*** Marga_ has quit IRC | 23:35 | |
*** Marga_ has joined #heat | 23:35 | |
*** tochi has joined #heat | 23:41 | |
*** EricGonczer_ has quit IRC | 23:41 | |
*** lipinski has joined #heat | 23:42 | |
*** signed8bit has joined #heat | 23:42 | |
lipinski | Where can I find information about using block_device_mapping vs VolumeAttachment? | 23:43 |
lipinski | They seem to be identical, and we have used both thus far, but are learning that in Juno, there are problems with using both for attaching a volume to a VM. | 23:44 |
*** EricGonczer_ has joined #heat | 23:46 | |
*** dims__ has joined #heat | 23:47 | |
*** dims_ has quit IRC | 23:47 | |
*** alexheneveld has quit IRC | 23:49 | |
*** thedodd has quit IRC | 23:49 | |
*** alexheneveld has joined #heat | 23:52 | |
*** Marga_ has quit IRC | 23:52 | |
*** alexheneveld has quit IRC | 23:53 | |
*** Marga_ has joined #heat | 23:53 | |
*** dims__ has quit IRC | 23:56 | |
*** dims_ has joined #heat | 23:56 | |
*** jcoufal_ has joined #heat | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!