*** kzaitsev_mb has quit IRC | 00:06 | |
*** dfflanders has quit IRC | 00:08 | |
*** thumpba has quit IRC | 00:08 | |
*** kzaitsev_mb has joined #murano | 00:09 | |
openstackgerrit | Stan Lagun proposed openstack/murano: Heat stack was not always deleted https://review.openstack.org/283309 | 00:35 |
---|---|---|
*** ducttape_ has joined #murano | 00:50 | |
*** thumpba has joined #murano | 00:59 | |
*** kzaitsev_mb has quit IRC | 01:00 | |
openstackgerrit | Stan Lagun proposed openstack/murano: Removes unnecessary import https://review.openstack.org/283338 | 01:06 |
*** ducttape_ has quit IRC | 01:31 | |
*** ByPasS has quit IRC | 01:43 | |
*** yamamoto has quit IRC | 01:44 | |
*** ByPasS has joined #murano | 01:49 | |
*** zhurong has joined #murano | 01:53 | |
*** ducttape_ has joined #murano | 01:54 | |
*** kzaitsev_mb has joined #murano | 01:56 | |
*** ducttape_ has quit IRC | 02:04 | |
*** dims has quit IRC | 02:13 | |
*** jasonsb has joined #murano | 02:15 | |
*** kzaitsev_mb has quit IRC | 02:19 | |
*** mdih has joined #murano | 02:20 | |
*** mdih has quit IRC | 02:21 | |
*** mdih has joined #murano | 02:23 | |
*** mdih has quit IRC | 02:25 | |
*** yamamoto has joined #murano | 02:25 | |
*** mdih has joined #murano | 02:30 | |
*** mdih has quit IRC | 02:30 | |
*** mdih has joined #murano | 02:31 | |
*** mdih has quit IRC | 02:33 | |
*** mdih has joined #murano | 02:34 | |
*** mdih has quit IRC | 02:34 | |
*** mdih has joined #murano | 02:35 | |
*** mdih has joined #murano | 02:36 | |
*** kzaitsev_mb has joined #murano | 03:16 | |
*** kzaitsev_mb has quit IRC | 03:21 | |
*** dims has joined #murano | 03:49 | |
*** Marga_ has quit IRC | 04:12 | |
*** kzaitsev_mb has joined #murano | 04:18 | |
*** ducttape_ has joined #murano | 04:18 | |
*** kzaitsev_mb has quit IRC | 04:23 | |
*** Marga__ has joined #murano | 04:28 | |
*** Marga__ has quit IRC | 04:32 | |
*** ducttape_ has quit IRC | 05:01 | |
*** Marga_ has joined #murano | 05:12 | |
*** Marga_ has quit IRC | 05:16 | |
*** naresht has joined #murano | 05:18 | |
*** kzaitsev_mb has joined #murano | 05:19 | |
*** Marga_ has joined #murano | 05:23 | |
*** kzaitsev_mb has quit IRC | 05:24 | |
*** thumpba has quit IRC | 05:31 | |
*** Marga_ has quit IRC | 05:33 | |
*** Marga_ has joined #murano | 05:33 | |
*** zhurong has quit IRC | 05:43 | |
*** zhurong has joined #murano | 05:44 | |
*** dims has quit IRC | 05:54 | |
*** wasmum has quit IRC | 06:08 | |
openstackgerrit | Andrey Grebennikov proposed openstack/murano-deployment: Fixed default.template name https://review.openstack.org/283402 | 06:15 |
*** kzaitsev_mb has joined #murano | 06:31 | |
*** kzaitsev_mb has quit IRC | 06:50 | |
openstackgerrit | Andrey Grebennikov proposed openstack/murano-deployment: Fixed runme.sh script for free space https://review.openstack.org/283422 | 07:25 |
*** zhurong has quit IRC | 07:35 | |
*** zhurong has joined #murano | 07:36 | |
*** mdih has quit IRC | 07:43 | |
*** mdih has joined #murano | 07:43 | |
*** mdih has quit IRC | 07:43 | |
*** kzaitsev_mb has joined #murano | 07:46 | |
*** kzaitsev_mb has quit IRC | 07:59 | |
*** samuelBartel has joined #murano | 08:45 | |
openstackgerrit | Madhuri Kumari proposed openstack/murano: App to deploy Magnum Bay. https://review.openstack.org/269250 | 08:49 |
*** kzaitsev_mb has joined #murano | 08:56 | |
*** nshenoy has joined #murano | 08:59 | |
nshenoy | Hello, I am trying to understand when to choose AttributeStore as compared to ObjectStore | 09:00 |
StanLagun | nshenoy: hi! | 09:00 |
nshenoy | Hello Stan | 09:01 |
nshenoy | As i understand, I can group bunch of attributes together | 09:02 |
nshenoy | using AttributeStore | 09:02 |
StanLagun | I guess the right question is when to use properties and when to use attributes? ObjectStore and AttributeStore is an implementation details. Or you plan to use those classes directly from your python code? | 09:02 |
nshenoy | Yes I agree. I am clear on the Properties part and when to use it | 09:03 |
nshenoy | Suppose i want to just get a json dump of attributes | 09:03 |
StanLagun | The difference is that properties are visible to UI or any other API client and attributes are not. Attributes are arbitrary key/value storage for each class. There are no contracts for attributes and they cannot be modified from outside | 09:05 |
*** zhurong has quit IRC | 09:06 | |
StanLagun | usually we use attributes to store previous value of important properties so that when they change app can see the difference between previous and current value | 09:06 |
nshenoy | Thanks | 09:06 |
nshenoy | What about ObjectStores when do you use them ? | 09:07 |
StanLagun | ObjectStore is where all objects reside. It is not accessible to apps. If you're talking about properties then the answer is that there are many different types of properties. There are "In" properties that get the user input. There are "Out" or "InOut" properties that can be modified in MuranoPL code and the result value can be observed in API. There are also Runtime properties which exist only during deployment and not persisted | 09:09 |
StanLagun | there are also several other types | 09:10 |
StanLagun | It is possible that in the future attributes will be replaced with some "Private" properties for example | 09:12 |
StanLagun | have I answered your question? | 09:15 |
nshenoy | Yes thank you. I need to use properties but wanted to understand the attributes and objects | 09:18 |
StanLagun | ObjectStore holds all of the objects that was either received as part of object model or were created using new() function. Because all of the objects are stored in a single dictionary it is possible to get reference to any of the objects by its ID. Thats important because in object model objects can reference other objects defined in different parts of the model. For example it can be that there are 2 apps that share the same instance (one of them owns | 09:21 |
StanLagun | it and the second one refers to it by ID) | 09:21 |
nshenoy | is that how we learn about the environment inside the instance ? | 09:24 |
StanLagun | sorry, didn't get the question | 09:24 |
nshenoy | in the initialize function of the Application, we try to find the environment . $._environment: $.find(std:Environment).require() | 09:27 |
nshenoy | This is not related to my earlier question | 09:28 |
nshenoy | So $._environment is like a pointer to entire environment object | 09:28 |
nshenoy | is this assumption correct ? | 09:28 |
StanLagun | each object has an owner with Environment being at the root. find() method examines object's owner and then the owner's owner and so on until it finds an object of the given type | 09:29 |
nshenoy | Oh ok | 09:30 |
StanLagun | So yes, this is the way for an object to get its Environment or for a component to get its application | 09:30 |
nshenoy | Thanks | 09:32 |
*** kzaitsev_mb has quit IRC | 09:33 | |
*** gsankanna has joined #murano | 09:58 | |
*** gsankanna has left #murano | 10:01 | |
*** gsankanna has joined #murano | 10:01 | |
*** StanLagun has quit IRC | 10:12 | |
*** StanLagun has joined #murano | 10:21 | |
*** kzaitsev_mb has joined #murano | 10:26 | |
*** tlashchova has joined #murano | 10:32 | |
*** nshenoy has quit IRC | 10:42 | |
*** StanLagun has quit IRC | 11:38 | |
*** yamamoto has quit IRC | 11:40 | |
*** StanLagun has joined #murano | 11:43 | |
*** kzaitsev_mb has quit IRC | 11:51 | |
*** zhurong has joined #murano | 12:12 | |
*** zhurong has quit IRC | 12:12 | |
*** raildo-afk is now known as raildo | 12:26 | |
*** enthurohini has joined #murano | 12:36 | |
*** yamamoto has joined #murano | 12:39 | |
*** yamamoto has quit IRC | 12:58 | |
*** ducttape_ has joined #murano | 13:03 | |
*** _ducttape_ has joined #murano | 13:12 | |
*** ducttape_ has quit IRC | 13:14 | |
*** yamamoto has joined #murano | 13:20 | |
*** _ducttape_ has quit IRC | 13:23 | |
*** naresht has quit IRC | 13:40 | |
openstackgerrit | Tetiana Lashchova proposed openstack/murano: [Murano Docs] Multi-region support https://review.openstack.org/281870 | 13:42 |
*** jasonsb has quit IRC | 14:06 | |
openstackgerrit | Rohini Choudhary proposed openstack/python-muranoclient: Add Environment support for openstack CLI https://review.openstack.org/270103 | 14:31 |
*** enthurohini has quit IRC | 14:38 | |
openstackgerrit | Victor Ryzhenkin proposed openstack/murano: [Murano Docs] Multi-region support https://review.openstack.org/281870 | 14:39 |
*** dims has joined #murano | 14:54 | |
*** dims has left #murano | 14:55 | |
openstackgerrit | Victor Ryzhenkin proposed openstack/murano: [WIP] https://review.openstack.org/283615 | 14:55 |
*** ducttape_ has joined #murano | 14:55 | |
*** samuelBartel has quit IRC | 15:05 | |
*** slagun has joined #murano | 15:20 | |
*** StanLagun has quit IRC | 15:23 | |
*** yamamoto has quit IRC | 15:45 | |
openstackgerrit | Aleš Křivák proposed openstack/murano-dashboard: Fix AJAX for jQuery versions prior 1.9.0 https://review.openstack.org/283652 | 15:50 |
openstackgerrit | Stan Lagun proposed openstack/murano: Refactoring of smart-types defined in DSL https://review.openstack.org/283653 | 15:51 |
*** gokrokve has joined #murano | 15:58 | |
*** dfflanders has joined #murano | 16:05 | |
*** gokrokve has quit IRC | 16:39 | |
*** tlashchova_ has joined #murano | 16:45 | |
*** yamamoto has joined #murano | 16:46 | |
*** tlashchova_ has quit IRC | 16:52 | |
*** tlashchova_ has joined #murano | 16:52 | |
*** yamamoto has quit IRC | 16:53 | |
*** kzaitsev_mb has joined #murano | 16:54 | |
*** gsankanna has quit IRC | 16:58 | |
*** enthurohini has joined #murano | 16:59 | |
*** gokrokve has joined #murano | 17:07 | |
*** enthurohini has quit IRC | 17:33 | |
*** kzaitsev_mb has quit IRC | 17:45 | |
openstackgerrit | Stan Lagun proposed openstack/murano: Refactoring of smart-types defined in DSL https://review.openstack.org/283653 | 18:04 |
*** gokrokve has quit IRC | 18:09 | |
*** vgridnev has joined #murano | 18:19 | |
*** ducttape_ has quit IRC | 18:28 | |
*** vgridnev has quit IRC | 18:37 | |
*** vgridnev has joined #murano | 18:38 | |
*** ducttape_ has joined #murano | 18:44 | |
*** vgridnev has quit IRC | 19:19 | |
*** vgridnev has joined #murano | 19:24 | |
*** Marga_ has quit IRC | 19:38 | |
*** vgridnev has quit IRC | 20:02 | |
*** ducttape_ has quit IRC | 20:11 | |
*** ducttape_ has joined #murano | 20:35 | |
*** akuznetsova has quit IRC | 20:48 | |
*** ativelkov has quit IRC | 20:48 | |
*** rakhmerov has quit IRC | 20:49 | |
*** ativelkov has joined #murano | 20:51 | |
*** rakhmerov has joined #murano | 20:52 | |
*** akuznetsova has joined #murano | 20:52 | |
*** sergmelikyan has quit IRC | 21:01 | |
*** dfflanders has quit IRC | 22:00 | |
*** kzaitsev_mb has joined #murano | 22:12 | |
*** tlashchova_ has quit IRC | 22:26 | |
*** dhellmann has quit IRC | 22:58 | |
*** IgorYozhikov has quit IRC | 22:58 | |
*** hidekazu has quit IRC | 22:58 | |
*** Miouge has quit IRC | 22:58 | |
*** lin_yang has quit IRC | 22:58 | |
*** godlike has quit IRC | 22:58 | |
*** akuznetsova has quit IRC | 22:58 | |
*** rakhmerov has quit IRC | 22:58 | |
*** ativelkov has quit IRC | 22:58 | |
*** zigo has quit IRC | 22:58 | |
*** igormarnat has quit IRC | 22:58 | |
*** dteselkin has quit IRC | 22:58 | |
*** ducttape_ has quit IRC | 22:58 | |
*** fuel-slackbot has quit IRC | 22:58 | |
*** Einherjer has quit IRC | 22:58 | |
*** evgenyl has quit IRC | 22:58 | |
*** mfisch has quit IRC | 22:58 | |
*** freerunner has quit IRC | 22:58 | |
*** vkmc has quit IRC | 22:58 | |
*** kzaitsev_mb has quit IRC | 22:58 | |
*** slagun has quit IRC | 22:58 | |
*** krotscheck has quit IRC | 22:58 | |
*** ddovbii has quit IRC | 22:58 | |
*** katyafervent_awa has quit IRC | 22:58 | |
*** pashkin has quit IRC | 22:58 | |
*** raildo has quit IRC | 22:58 | |
*** raildo has joined #murano | 23:00 | |
*** pashkin has joined #murano | 23:00 | |
*** katyafervent_awa has joined #murano | 23:00 | |
*** IgorYozhikov has joined #murano | 23:00 | |
*** dhellmann has joined #murano | 23:00 | |
*** godlike has joined #murano | 23:00 | |
*** lin_yang has joined #murano | 23:00 | |
*** Miouge has joined #murano | 23:00 | |
*** vkmc has joined #murano | 23:00 | |
*** freerunner has joined #murano | 23:00 | |
*** mfisch has joined #murano | 23:00 | |
*** evgenyl has joined #murano | 23:00 | |
*** akuznetsova has joined #murano | 23:01 | |
*** rakhmerov has joined #murano | 23:01 | |
*** ativelkov has joined #murano | 23:01 | |
*** zigo has joined #murano | 23:01 | |
*** igormarnat has joined #murano | 23:01 | |
*** dteselkin has joined #murano | 23:01 | |
*** slagun has joined #murano | 23:02 | |
*** krotscheck has joined #murano | 23:02 | |
*** ddovbii has joined #murano | 23:02 | |
*** hidekazu has joined #murano | 23:03 | |
*** ducttape_ has joined #murano | 23:03 | |
*** fuel-slackbot has joined #murano | 23:03 | |
*** Einherjer has joined #murano | 23:03 | |
*** Einherjer has quit IRC | 23:07 | |
*** yamamoto has joined #murano | 23:07 | |
*** exploreshaifali has joined #murano | 23:08 | |
*** exploreshaifali has quit IRC | 23:08 | |
*** Marga_ has joined #murano | 23:09 | |
*** yamamoto has quit IRC | 23:12 | |
*** Marga_ has quit IRC | 23:15 | |
*** Marga_ has joined #murano | 23:16 | |
*** ducttape_ has quit IRC | 23:20 | |
*** ducttape_ has joined #murano | 23:55 | |
*** kzaitsev_mb has joined #murano | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!