Friday, 2016-07-22

*** sergmelikyan has joined #murano00:00
*** Zer0Byte__ has quit IRC00:37
openstackgerritTimur Sufiev proposed openstack/murano-specs: [WIP] Schema driven UI specification  https://review.openstack.org/34451800:51
*** kzaitsev_mb has joined #murano00:51
*** kzaitsev_mb has quit IRC00:57
*** ducttape_ has joined #murano00:58
*** zhurong has joined #murano01:05
*** sergmelikyan has quit IRC01:10
*** DaveJ__ has quit IRC01:10
*** Liuqing has joined #murano01:21
*** sergmelikyan has joined #murano01:29
*** sergmelikyan has quit IRC01:31
*** sergmelikyan has joined #murano01:32
*** sergmelikyan has quit IRC01:33
*** sergmelikyan has joined #murano01:33
*** yamamot__ has joined #murano01:35
*** ducttape_ has quit IRC01:39
*** yamamot__ has quit IRC01:40
*** kzaitsev_mb has joined #murano01:53
*** kzaitsev_mb has quit IRC01:58
*** zhurong has quit IRC01:58
*** zhurong has joined #murano01:59
*** itisha has quit IRC02:10
*** sergmelikyan has quit IRC02:14
*** sergmelikyan has joined #murano02:14
*** yamamot__ has joined #murano02:18
*** ducttape_ has joined #murano02:33
*** sergmelikyan has quit IRC02:53
*** kzaitsev_mb has joined #murano02:54
*** sergmelikyan has joined #murano02:54
*** ducttape_ has quit IRC02:56
*** Liuqing has quit IRC02:57
*** zhurong has quit IRC02:57
*** rakhmero_ has joined #murano02:57
*** Liuqing has joined #murano02:57
*** zhurong has joined #murano02:57
*** sergmelikyan has quit IRC02:59
*** kzaitsev_mb has quit IRC02:59
*** ducttape_ has joined #murano03:06
*** sergmelikyan has joined #murano03:10
*** rakhmero_ has quit IRC03:11
*** ducttape_ has quit IRC03:11
*** yamamot__ has quit IRC03:33
*** sergmelikyan has quit IRC03:34
*** kzaitsev_mb has joined #murano03:55
*** sergmelikyan has joined #murano03:59
*** kzaitsev_mb has quit IRC04:00
openstackgerritSwapnil Kulkarni (coolsvap) proposed openstack/python-muranoclient: Remove discover from test-requirements  https://review.openstack.org/34576804:06
*** ducttape_ has joined #murano04:12
*** yamamot__ has joined #murano04:16
*** ducttape_ has quit IRC04:17
*** rakhmero_ has joined #murano04:24
*** Nikolay_St has joined #murano04:54
*** sergmelikyan has quit IRC04:54
*** kzaitsev_mb has joined #murano04:54
*** sergmelikyan has joined #murano04:55
*** sergmelikyan has quit IRC04:57
*** sergmelikyan has joined #murano04:57
*** sergmelikyan has quit IRC05:02
openstackgerritzhurong proposed openstack/murano-dashboard: Load current_theme for compress tag  https://review.openstack.org/34581205:17
openstackgerritMerged openstack/python-muranoclient: Remove discover from test-requirements  https://review.openstack.org/34576805:20
*** kzaitsev_mb has quit IRC05:20
openstackgerritMerged openstack/python-muranoclient: Updated from global requirements  https://review.openstack.org/34515305:23
*** rakhmero_ has quit IRC05:32
*** Nikolay_St has quit IRC05:34
openstackgerritSwapnil Kulkarni (coolsvap) proposed openstack/murano-agent: Remove discover from test-requirements  https://review.openstack.org/34583606:33
*** kzaitsev_mb has joined #murano07:12
*** dfflanders has joined #murano07:17
*** rakhmero_ has joined #murano07:34
*** Nikolay_St has joined #murano07:37
*** maestropandy has joined #murano07:40
openstackgerritHidekazu Nakamura proposed openstack/murano-agent: Fix chef executor unit test  https://review.openstack.org/34588007:42
*** kzaitsev_mb has quit IRC07:47
*** rakhmero_ has quit IRC07:49
*** kzaitsev_mb has joined #murano07:53
*** dfflanders has quit IRC07:54
openstackgerritHidekazu Nakamura proposed openstack/murano-apps: Delete unused parameter in GitChef  https://review.openstack.org/34588407:59
*** tsufiev has quit IRC08:11
*** openstackgerrit has quit IRC08:11
*** tsufiev has joined #murano08:11
*** openstackgerrit has joined #murano08:14
*** DaveJ__ has joined #murano08:29
DaveJ__Hi Guys, with a HOT template, I can add metadata to an instance by using the following field under instance properties 'metadata: { key1: value1, key2: value2 }'.  Is there anyway I can do this via a Murano class?08:32
kzaitsev_mbDaveJ__: you can add it directly via editing the heat template, that murano uses internally08:34
DaveJ__I tried modifying the ApacheHttpServer app.  Under deploy: body: I added properties: metadata, but with no success08:34
DaveJ__kzaitsev_mb: Thanks - I'm not sure that will work for me.  at deploy time, I want users to enter a field displayed by the ui.yaml.  The value of that field will be set as metadata08:34
DaveJ__kzaitsev_mb:  The idea is we need to tag certian VMs, so we can query stats about them later on08:35
kzaitsev_mbDaveJ__: https://github.com/openstack/murano/blob/master/meta/io.murano/Classes/resources/LinuxMuranoInstance.yaml#L30 here is an example, how you can edit the stack template08:40
DaveJ__kzaitsev_mb: Thanks - in that example, is there a way to reference the instance itself under the list of resources ?08:42
kzaitsev_mbupdateTemplate will merge the teamplate supplied with the one currently in use, so all you need to do is make a template you need and update existing08:42
kzaitsev_mbDaveJ__: not sure what you want =) you can use any muranopl variables in that template08:44
kzaitsev_mbmurano/engine/system/heat_stack.py08:45
kzaitsev_mboops wrong paste ))08:45
kzaitsev_mbhttps://github.com/openstack/murano/blob/master/meta/io.murano/Classes/resources/Instance.yaml#L14208:45
kzaitsev_mbso. you'll probably need to make a similar template, use the name of the instance you want to tag and add metadata08:46
DaveJ__Ok, I'll see if i can figure that out.08:46
DaveJ__Thanks for the help.08:46
kzaitsev_mbjust $.name should be $instance.name I guess, or whatever varibale would hold the name of the instance in your case08:46
DaveJ__https://www.irccloud.com/pastebin/g3l2yDUz/08:50
DaveJ__so i can reference $instance08:51
DaveJ__Can i do  something lile $instance.$template.$.name.properties08:52
DaveJ__in order to add to the instance propreties ?08:52
kzaitsev_mbno instance doesn't have a template of it's own08:52
kzaitsev_mbhttps://github.com/openstack/murano/blob/master/meta/io.murano/Classes/resources/Instance.yaml#L2208:53
kzaitsev_mbin order edit the template — just make a dict with fields, you want to update and use updateTemplate function08:54
openstackgerritzhurong proposed openstack/murano: Use devstack for service broker use separate paste and db  https://review.openstack.org/30813308:56
*** ducttape_ has joined #murano09:17
*** ducttape_ has quit IRC09:22
*** akholkin has joined #murano09:28
openstackgerritzhurong proposed openstack/murano: Use devstack for service broker use separate paste and db  https://review.openstack.org/30813309:29
openstackgerritOleh Baran proposed openstack/murano: Add base and packages for tempest murano scenario tests  https://review.openstack.org/34208809:35
openstackgerritDmytro Dovbii proposed openstack/murano-apps: [k8s] Fix typo in member configuration script  https://review.openstack.org/34594309:38
openstackgerritOleh Baran proposed openstack/murano: Add cinder volumes attachment tests  https://review.openstack.org/33944609:44
openstackgerritMerged openstack/murano-apps: [k8s] Fix typo in member configuration script  https://review.openstack.org/34594309:46
*** yamamot__ has quit IRC09:46
openstackgerritAllen proposed openstack/murano-dashboard: The height of the filter buttons should be consistent  https://review.openstack.org/34595009:54
*** zhurong has quit IRC10:06
*** Liuqing has quit IRC10:08
openstackgerritValerii Kovalchuk proposed openstack/python-muranoclient: Change put method to delete while removing last component in env  https://review.openstack.org/32463110:13
*** ducttape_ has joined #murano10:18
openstackgerritAllen proposed openstack/murano-dashboard: The triangle in drop-down box should be hollow  https://review.openstack.org/34596210:20
*** ducttape_ has quit IRC10:23
*** yamamoto has joined #murano10:42
openstackgerritMykola Stolyarenko proposed openstack/murano: Add deployment murano tempest test  https://review.openstack.org/33817810:44
*** yamamoto has quit IRC10:48
*** yamamoto has joined #murano10:48
*** yamamoto has quit IRC10:48
*** yamamoto has joined #murano10:49
openstackgerritVitaly Lopatkin proposed openstack/murano-apps: privileged mode support for KubernetesPod and DockerStandaloneHost  https://review.openstack.org/34549410:53
*** yamamoto has quit IRC10:54
openstackgerritOleh Baran proposed openstack/murano: Add base and packages for tempest murano scenario tests  https://review.openstack.org/34208811:00
*** ducttape_ has joined #murano11:08
*** yamamoto has joined #murano11:10
*** zhurong has joined #murano11:11
*** zhurong has quit IRC11:16
*** zhurong has joined #murano11:17
*** ducttape_ has quit IRC11:19
openstackgerritOleh Baran proposed openstack/murano: Add cinder volumes attachment tests  https://review.openstack.org/33944611:42
*** vakovalchuk has joined #murano11:47
*** ducttape_ has joined #murano11:53
*** ducttape_ has quit IRC11:57
*** yamamoto has quit IRC12:01
openstackgerritKirill Zaitsev proposed openstack/murano: Add tempest GLARE sanity check tests  https://review.openstack.org/34509312:01
*** yamamoto has joined #murano12:13
*** yamamoto has quit IRC12:14
openstackgerritMerged openstack/murano: Initial implementation of artifacts client in tempest plugin  https://review.openstack.org/34043412:14
*** yamamoto has joined #murano12:15
*** leitan has joined #murano12:29
openstackgerritBartosz Kupidura proposed openstack/murano-apps: go.cd application for murano  https://review.openstack.org/34419112:30
*** yamamoto has quit IRC12:37
openstackgerritKirill Zaitsev proposed openstack/murano: Enable static action tests with glare backend  https://review.openstack.org/34538212:38
*** maestropandy has quit IRC12:40
openstackgerritzhurong proposed openstack/murano-dashboard: [TrivialFix]Remove the redundant navigation in app_details page  https://review.openstack.org/34600912:42
*** yamamoto has joined #murano12:45
*** leitan has quit IRC12:47
*** yamamoto has quit IRC12:58
*** yamamoto has joined #murano13:02
*** yamamoto has quit IRC13:09
*** krotscheck is now known as lolscheck13:12
*** cleong has joined #murano13:15
*** lolscheck is now known as krotscheck13:31
*** itisha has joined #murano13:52
*** sergmelikyan has joined #murano13:52
*** zhurong has quit IRC14:04
*** zhurong has joined #murano14:05
*** zhurong has quit IRC14:07
*** yamamoto has joined #murano14:08
openstackgerritMerged openstack/murano-apps: Delete unused parameter in GitChef  https://review.openstack.org/34588414:08
*** yamamoto has quit IRC14:13
openstackgerritMerged openstack/murano-agent: Remove discover from test-requirements  https://review.openstack.org/34583614:13
*** sergmelikyan has quit IRC14:28
openstackgerritMerged openstack/murano: Devstack install murano-dashboard with murano RBAC policy  https://review.openstack.org/34221014:30
*** StanLagun has joined #murano14:47
*** Nikolay_St has quit IRC14:55
*** sergmelikyan has joined #murano15:01
*** zimboboyd has quit IRC15:29
*** zimboboyd has joined #murano15:33
*** 21WAAS9QQ has joined #murano15:33
*** sergmelikyan has quit IRC15:33
*** sergmeli_ has joined #murano15:38
*** 21WAAS9QQ has quit IRC15:39
*** krotscheck has quit IRC15:39
openstackgerritTimur Sufiev proposed openstack/murano-specs: [WIP] Schema driven UI specification  https://review.openstack.org/34451815:41
*** krotscheck has joined #murano15:47
*** kzaitsev_mb has quit IRC15:55
*** kzaitsev_mb has joined #murano15:56
*** Nikolay_St has joined #murano15:58
*** kzaitsev_mb has quit IRC16:01
*** kzaitsev_mb has joined #murano16:02
*** sergmeli_ has quit IRC16:03
*** sergmelikyan has joined #murano16:08
openstackgerritMykyta Karpin proposed openstack/murano-deployment: [WIP] Add more syntax checks  https://review.openstack.org/34610816:09
*** sergmelikyan has quit IRC16:09
openstackgerritMykyta Karpin proposed openstack/murano-deployment: [WIP] Add more syntax checks  https://review.openstack.org/34610816:11
*** ddovbii__ has quit IRC16:14
*** sergmelikyan has joined #murano16:15
*** kzaitsev_mb has quit IRC16:25
*** vakovalchuk has quit IRC16:27
*** yamamoto has joined #murano16:29
*** yamamoto has quit IRC16:29
*** dcotton has quit IRC16:31
*** yamamoto has joined #murano17:29
*** yamamoto has quit IRC17:37
*** Zer0Byte__ has joined #murano17:38
*** StanLagun has quit IRC17:58
*** akholkin has quit IRC18:05
Zer0Byte__hey guys18:07
openstackgerritTimur Sufiev proposed openstack/murano-specs: [WIP] Schema driven UI specification  https://review.openstack.org/34451818:23
*** itisha has quit IRC18:30
*** ducttape_ has joined #murano18:37
*** StanLagun has joined #murano18:37
*** StanLagun has quit IRC18:38
*** DaveJ__ has quit IRC18:50
openstackgerritTimur Sufiev proposed openstack/murano-specs: [WIP] Schema driven UI specification  https://review.openstack.org/34451818:52
*** StanLagun has joined #murano19:31
openstackgerritMykola Stolyarenko proposed openstack/murano: Add base and packages for tempest murano scenario tests  https://review.openstack.org/34208819:47
*** jmlowe1 has quit IRC19:52
*** kzaitsev_mb has joined #murano19:55
openstackgerritMykola Stolyarenko proposed openstack/murano: Add deployment murano tempest test  https://review.openstack.org/33817819:59
openstackgerritMykola Stolyarenko proposed openstack/murano: Add base and packages for tempest murano scenario tests  https://review.openstack.org/34208819:59
*** sergmelikyan has quit IRC20:15
openstackgerritMykola Stolyarenko proposed openstack/murano: Add deployment murano tempest test  https://review.openstack.org/33817820:15
*** cleong has quit IRC20:16
*** Nikolay_St has quit IRC20:49
Zer0Byte__hey StanLagun20:57
Zer0Byte__how are you20:57
Zer0Byte__is possible change the name21:00
Zer0Byte__of the deployment instance21:00
Zer0Byte__murano-id etc to something else?21:00
freerunnerZer0Byte__: Hey! You just need to change instance name in service object model (if you doing that via API)21:04
freerunnerZer0Byte__: If not, you need to add a specific field to UI and to Class, like it was done here: https://github.com/openstack/murano-apps/blob/master/ApacheHTTPServer/package/UI/ui.yaml#L10221:04
Zer0Byte__i do using unitnamingpatter21:05
Zer0Byte__and is not working21:05
freerunnerZer0Byte__: What about this line in addition? https://github.com/openstack/murano-apps/blob/master/ApacheHTTPServer/package/UI/ui.yaml#L2921:06
Zer0Byte__i have the same confiuration21:06
Zer0Byte__if i leave name: generateHostname($.instanceConfiguration.unitNamingPattern, 1)21:06
Zer0Byte__they dont take the hostname and generate randomly21:06
Zer0Byte__if i remove the generatehostname and i leave these line in name: $.instanceconfiguration.unitNamingPattern21:07
Zer0Byte__the hostname take this name murano-djsaoidj-UNITNAMINGPATTERN-foidsjfs21:07
Zer0Byte__the uppercase mean the value of these field21:07
freerunnerZer0Byte__: Hm.21:08
StanLagunZer0Byte__ you can make a contribution to fix this. Actually this is 1 line of MuranoPL21:11
Zer0Byte__ok let me take a look21:12
Zer0Byte__ok but the question is21:12
Zer0Byte__what is the desired result21:12
StanLagunhttps://github.com/openstack/murano/blob/master/meta/io.murano/Classes/resources/Instance.yaml#L13021:13
StanLaguninsert name: $.name21:13
StanLagunand then you get control over the host name21:13
Zer0Byte__is know bug then21:14
freerunnerStanLagun: Low level bug should be filed, I think.21:14
Zer0Byte__i can commit the fix if u want21:14
StanLagunits a wishlist bug21:14
StanLagunnot a bug, but missing feature21:14
freerunnerStanLagun: Or wishlist, yep. Anyway, it should be filed.21:15
freerunnerZer0Byte__: Well, I can file it for you, or you can do it by yourself. :)21:15
Zer0Byte__i can doit by myself21:15
freerunnerZer0Byte__: Ok, please do :)21:16
StanLagunZer0Byte__ just don't that by default it is not enough to change just the file. You need to re-upload the package to the catalog unless you have murano configured to take it from the local folder21:17
Zer0Byte__i know21:17
Zer0Byte__another question21:17
Zer0Byte__exist any plan21:17
Zer0Byte__to translate murano dashboard21:17
Zer0Byte__to spanish?21:18
Zer0Byte__also i can help with that21:19
freerunnerZer0Byte__: We have murano-dashboard in Zanata now. But AFAIK, there is no translations to Spanish now.21:19
Zer0Byte__well if you want21:20
Zer0Byte__i can help with the translation21:20
Zer0Byte__to spanish21:20
freerunnerZer0Byte__: This is will be really cool21:22
freerunnerZer0Byte__: Here the link for openstack zanata with murano-dashboard https://translate.openstack.org/iteration/view/murano-dashboard/master21:25
freerunnerZer0Byte__: And it looks, that only 16% was translated to Spanish21:25
Zer0Byte__ok21:26
Zer0Byte__i will going to take a look21:26
Zer0Byte__well is working now21:39
Zer0Byte__the hostname21:39
Zer0Byte__thanks @StanLagun21:39
kzaitsev_mbZer0Byte__: we don't translate murano ourselves (well I am a translator to russian actually =)) but do it through translate.openstack.org true21:39
kzaitsev_mbyou'll have to register there and apply to spanish translation group21:39
StanLagunZer0Byte__ are you going to put that fix on review?21:40
Zer0Byte__yeah but i have to check two thing also21:40
Zer0Byte__why generateHostname is not working21:40
Zer0Byte__with the value is just generate a random name and thats it21:40
StanLagunwhy do you thing it is not?21:40
Zer0Byte__yeah is taking the hostname21:41
Zer0Byte__like i want21:41
Zer0Byte__but if i leave generatehostname is not taking the value21:41
*** zhurong has joined #murano21:41
kzaitsev_mbZer0Byte__: I think you hit https://bugs.launchpad.net/murano/+bug/1588405 this bug. fixed 3/4 days ago21:41
openstackLaunchpad bug 1588405 in Murano mitaka "[UI] naming patterns don't work with generateHostname() function" [High,Fix committed] - Assigned to Kirill Zaitsev (kzaitsev)21:41
Zer0Byte__thats right21:41
kzaitsev_mbyou can apply the patch if you want21:41
Zer0Byte__yeah i will21:42
Zer0Byte__and im not sure if21:42
Zer0Byte__should be inside of murano21:42
Zer0Byte__or a script21:42
Zer0Byte__but /etc/hosts21:42
Zer0Byte__is not taking 127.0.0.1 hostname21:42
Zer0Byte__causing errors at least on ubuntu debian based images21:42
Zer0Byte__when you try to do sudo21:42
Zer0Byte__cuz the hostname is not specified inside hosts file21:43
kzaitsev_mband actually that's the best thing you can do until we establish good routes to get packages and updates to those packages on, say ubuntu and rdo )21:43
kzaitsev_mbdebian is good though )21:43
*** zhurong has quit IRC21:44
Zer0Byte__mhmm21:45
Zer0Byte__i see just work21:45
Zer0Byte__if have a pattern #21:45
*** StanLagun has quit IRC21:46
*** ducttape_ has quit IRC21:59
*** sergmeli_ has joined #murano22:10
*** sergmeli_ has quit IRC22:11
openstackgerritJose Phillips proposed openstack/murano: Closes-Bug: #1605786  https://review.openstack.org/34625322:12
openstackbug 1605786 in Murano "Set a computer hostname with murano" [Undecided,In progress] https://launchpad.net/bugs/1605786 - Assigned to josephillips (jose-phillips)22:12
*** sergmelikyan has joined #murano22:16
*** sergmelikyan has quit IRC22:16
*** sergmelikyan has joined #murano22:17
*** sergmelikyan has quit IRC22:21
*** sergmelikyan has joined #murano22:32
*** sergmelikyan has quit IRC22:35
*** yamamoto has joined #murano22:36
*** kzaitsev_mb has quit IRC22:40
*** yamamoto has quit IRC22:41
*** kzaitsev_mb has joined #murano22:42
*** sergmelikyan has joined #murano22:42
*** sergmelikyan has quit IRC22:53
*** yamamoto has joined #murano22:55
*** StanLagun has joined #murano22:59
*** yamamoto has quit IRC23:05
*** sergmeli_ has joined #murano23:15
*** yamamoto has joined #murano23:23
*** sergmeli_ has quit IRC23:24
*** yamamoto has quit IRC23:33
*** yamamoto has joined #murano23:33
Zer0Byte__sorry for leave the commit in blank23:34
*** sergmelikyan has joined #murano23:46
openstackgerritJose Phillips proposed openstack/murano: - Allow to set the computer hostname without the common murano identifier pattern  - without this patch all the instaces are deployed with the following hostname :Murano-ID-HOSTNAME-ID  - With this Patch the new instances will be deployed with the followi  https://review.openstack.org/34625323:51
openstackgerritKirill Zaitsev proposed openstack/murano: WIP congress-mistral-job  https://review.openstack.org/34627923:55

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!