openstackgerrit | Steve McLellan proposed a change to stackforge/python-muranoclient: Provide method for running action in an environment https://review.openstack.org/99502 | 00:01 |
---|---|---|
sjmc7 | i've got to go too. slagun, i can take a look at the migration thing tomorrow if you guys are on holiday | 00:02 |
*** sjmc7 has quit IRC | 00:02 | |
*** gokrokve has joined #murano | 01:14 | |
*** gokrokve has quit IRC | 01:30 | |
*** gokrokve has joined #murano | 01:30 | |
*** gokrokve has quit IRC | 01:35 | |
openstackgerrit | Brian Tully proposed a change to stackforge/murano-dashboard: Disable all buttons and links until AppCatalog page is loaded https://review.openstack.org/99050 | 02:43 |
openstackgerrit | Ankur Rishi proposed a change to stackforge/murano: Add optional fields to packages for supplier info https://review.openstack.org/99465 | 02:49 |
openstackgerrit | Ankur Rishi proposed a change to stackforge/python-muranoclient: Add ability to retrieve supplier logo for package https://review.openstack.org/99553 | 02:50 |
*** gokrokve has joined #murano | 03:05 | |
*** gokrokve has quit IRC | 04:53 | |
openstackgerrit | Ankur Rishi proposed a change to stackforge/murano: Add optional fields to packages for supplier info https://review.openstack.org/99465 | 05:34 |
*** ankurrr has quit IRC | 05:51 | |
openstackgerrit | Stan Lagun proposed a change to stackforge/murano: Adds REST API endpoint for action execution https://review.openstack.org/99449 | 07:03 |
openstackgerrit | Stan Lagun proposed a change to stackforge/murano: Adds REST API endpoint for action execution https://review.openstack.org/99449 | 07:13 |
*** slagun has joined #murano | 08:03 | |
*** stanlagun has quit IRC | 08:06 | |
*** tnurlygayanov has quit IRC | 08:17 | |
*** smurashov has quit IRC | 08:17 | |
*** smurashov has joined #murano | 10:12 | |
*** akuznetsova_ is now known as akuznetsova | 10:14 | |
openstackgerrit | Stan Lagun proposed a change to stackforge/murano: Adds REST API endpoint for action execution https://review.openstack.org/99449 | 12:28 |
*** chandan_kumar has joined #murano | 12:41 | |
*** chandan_kumar has quit IRC | 12:44 | |
*** openstackgerrit has quit IRC | 12:46 | |
*** openstackgerrit has joined #murano | 12:47 | |
*** chandankumar has joined #murano | 12:50 | |
*** drupalmonkey has joined #murano | 14:01 | |
*** asalkeld has quit IRC | 14:12 | |
*** sjmc7 has joined #murano | 14:25 | |
*** btully has joined #murano | 14:43 | |
*** JoelC has quit IRC | 14:47 | |
openstackgerrit | A change was merged to stackforge/murano: Add heat_template_version to network fragments https://review.openstack.org/99145 | 14:56 |
openstackgerrit | Steve McLellan proposed a change to stackforge/murano: Add optional fields to packages for supplier info https://review.openstack.org/99465 | 15:09 |
btully | hi there ruhe | 15:33 |
btully | i was wondering if the 'implement horizon UI patterns' was going to get merged for juno 1 | 15:34 |
*** gokrokve has joined #murano | 15:54 | |
*** bogdando has quit IRC | 15:55 | |
*** bogdando has joined #murano | 15:56 | |
ruhe | btully: hi! yes, i hope so. i'm just waiting for tsufiev to approve it | 15:59 |
btully | :D | 15:59 |
btully | did you get any sleep? ;) | 15:59 |
ruhe | sure, woke up at 1pm :) | 15:59 |
btully | nice! | 16:00 |
sjmc7 | slagun - are you there? | 16:01 |
openstackgerrit | Stan Lagun proposed a change to stackforge/murano: Adds ability to throw/catch/rethrow exceptions in MuranoPL https://review.openstack.org/98984 | 16:07 |
slagun | sjmc7 hi! | 16:08 |
sjmc7 | hey. hope you're not too sleepy after yesterday | 16:09 |
sjmc7 | sorry to distract you, i have a (hopefully) quick question | 16:09 |
slagun | I slept for 4 hours and working since than :) | 16:09 |
sjmc7 | urgh | 16:09 |
slagun | what is the question? | 16:10 |
sjmc7 | you did a patch to make sure initialize/destroy got called for objects, but i'm still seeing Instances get created without initialize being run | 16:10 |
slagun | how do you see that? | 16:10 |
sjmc7 | from the engine logs | 16:11 |
sjmc7 | as a test, in LinuxInstance:createDefaultInstanceSecurityGroupRules i removed the $environment: assignment | 16:12 |
sjmc7 | and changed the called to securityGroupManager.addGroupIngress to use the environment member variable defined in the base class | 16:12 |
sjmc7 | and i get an AttributeError. the engine logs don't show Instance:initialize being run | 16:13 |
sjmc7 | do i need to call it explicitly? | 16:13 |
sjmc7 | when should it be triggered? | 16:13 |
slagun | First of all initialize was called. Otherwise all agent calls would be broken. Probably the problem is with logging, not execution | 16:16 |
slagun | Second $envoronment wasn't declared in parent class | 16:16 |
sjmc7 | it doesn't get to the agent calls | 16:16 |
slagun | But we do. I've just tested Telnet deployment that is implemented via agent | 16:17 |
sjmc7 | ok. i'll recheck the packages i've got then | 16:17 |
slagun | If property is not declared in Properties section but assigned somewhere ($.x: $y) it becomes classes private field | 16:18 |
sjmc7 | ahh, ok | 16:18 |
sjmc7 | so resources and environment are not available to subclasses | 16:18 |
sjmc7 | ok, my mistake, sorry! | 16:18 |
slagun | that was the case with $.environment. It didn't worked because it was not accessible from child | 16:19 |
slagun | environment can be found at any time via find() | 16:19 |
sjmc7 | yeah - originally i was having problems with resources | 16:19 |
slagun | and resources are private to the one who creates them. | 16:19 |
sjmc7 | i'll create a new instance. thanks for clearing that up | 16:19 |
slagun | glad to help | 16:20 |
slagun | My way of testing is to add debugPrint method to base Object class. btw you can take https://blueprints.launchpad.net/murano/+spec/logging-api-in-muranopl if you'd like. This may be interesting | 16:23 |
openstackgerrit | Ruslan Kamaldinov proposed a change to stackforge/murano: Bump pythonclient version to 0.5.2 https://review.openstack.org/99710 | 16:29 |
*** gokrokve has quit IRC | 16:33 | |
*** openstackgerrit has quit IRC | 16:38 | |
*** bogdando has quit IRC | 17:00 | |
*** gokrokve has joined #murano | 17:22 | |
*** openstackgerrit has joined #murano | 18:12 | |
openstackgerrit | Steve McLellan proposed a change to stackforge/murano: Deprecate run_tests.sh https://review.openstack.org/99733 | 18:27 |
sjmc7 | ruhe - i added https://blueprints.launchpad.net/murano/+spec/improve-testing yesterday | 18:32 |
sjmc7 | i'll add something to the agenda for next week's meeting | 18:32 |
ruhe | sjmc7: thank you. that should be the main topic on our agenda | 18:33 |
sjmc7 | did the id/guid discussion get resolved? | 18:34 |
sjmc7 | or does it need more discussion? :) | 18:34 |
ruhe | more constructive discussion :) | 18:36 |
sjmc7 | leave it on the agenda? | 18:36 |
sjmc7 | or is that an offline thing? | 18:36 |
sjmc7 | and is there anything else you want on the agenda while i'm here? | 18:36 |
ruhe | let's remove it from the agenda for now. i'll need to gather more opinion on that topic before we get back to it again | 18:38 |
sjmc7 | ok. we should try and resolve it soon; making database model changes like that is a pain | 18:39 |
openstackgerrit | A change was merged to stackforge/murano-dashboard: Implement Horizon UI patterns https://review.openstack.org/99229 | 18:40 |
openstackgerrit | A change was merged to stackforge/murano: Adds ability to throw/catch/rethrow exceptions in MuranoPL https://review.openstack.org/98984 | 18:42 |
openstackgerrit | A change was merged to stackforge/murano-dashboard: Do not show Library packages in Latest Apps section https://review.openstack.org/99719 | 19:03 |
ruhe | all right. all the patches have landed. i'll cut the tag soon | 19:11 |
openstackgerrit | Stan Lagun proposed a change to stackforge/murano: Adds REST API endpoint for action execution https://review.openstack.org/99449 | 19:18 |
openstackgerrit | Stan Lagun proposed a change to stackforge/murano: Adds REST API endpoint for action execution https://review.openstack.org/99449 | 19:20 |
openstackgerrit | Ryan Peters proposed a change to stackforge/murano: Add optional fields to packages for supplier info https://review.openstack.org/99465 | 20:04 |
openstackgerrit | Stan Lagun proposed a change to stackforge/murano: Adds REST API endpoint for action execution https://review.openstack.org/99449 | 20:09 |
*** TravT has joined #murano | 20:29 | |
openstackgerrit | Steve McLellan proposed a change to stackforge/murano-dashboard: Make individual flavor filters optional https://review.openstack.org/99757 | 20:31 |
*** btully has quit IRC | 20:32 | |
*** openstackgerrit has quit IRC | 20:35 | |
*** openstackgerrit has joined #murano | 20:35 | |
*** asalkeld has joined #murano | 20:58 | |
*** gokrokve_ has joined #murano | 21:02 | |
*** gokrokve has quit IRC | 21:05 | |
slagun | sjmc7 I've got a new idea regarding https://blueprints.launchpad.net/murano/+spec/multitenancy-agent-messaging | 21:26 |
slagun | I've put it on whiteboard there | 21:27 |
sjmc7 | have the engine act as an auth server? interesting | 21:28 |
slagun | exactly | 21:29 |
*** TravT has quit IRC | 21:31 | |
openstackgerrit | Stan Lagun proposed a change to stackforge/murano: Adds REST API endpoint for action execution https://review.openstack.org/99449 | 21:35 |
*** ankurrr has joined #murano | 21:52 | |
*** drupalmonkey has quit IRC | 22:21 | |
*** gokrokve_ has quit IRC | 22:32 | |
*** gokrokve has joined #murano | 22:46 | |
*** sjmc7 has quit IRC | 22:50 | |
*** gokrokve has quit IRC | 23:39 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!