Tuesday, 2016-01-19

openstackgerritKirill Zaitsev proposed openstack/murano: Delete stale packages at cleanup (WIP)  https://review.openstack.org/26257300:05
*** Nate__ has joined #murano00:13
openstackgerritMerged openstack/murano: Updated from global requirements  https://review.openstack.org/26932500:14
Nate__Trying to trouble shoot a custom murano package deployment, its based off the wordpress template, but when it is trying to run the deploy script, the murano agent says it is unable to find the .sh file, to actually execute00:15
Nate__Its almost an exact carbon copy of the wordpress template, just with a few names changed and the script contents being different00:15
slagunNate__: are you using Windows for development?00:16
Nate__No, the agent is on linux00:16
Nate__ubuntu to be precise00:16
slagunI mean for development, not for deployment. The machine you are using to edit scripts, which OS it is on?00:17
Nate__Yes, the script was written on windows with textpad00:17
slagunI knew :)00:17
Nate__Is this a problem?00:18
slagunthe problem is with line endings. Windows editors put CRLF and bash doesn't understand it. It require CR which is used in *nixes00:18
kzaitsev1mbyou might be hitting this https://bugs.launchpad.net/murano/+bug/149637600:19
openstackLaunchpad bug 1496376 in Murano "Murano should automatically convert script line-endings for the target guest OS" [Medium,Confirmed] - Assigned to Ravi Shekhar Jethani (ravishekar-jethani)00:19
Nate__So.. basically any file that was touched with a windows system needs to have all the line endings redone on nix?00:20
kzaitsev1mbduh, random people started setting themselves as assignees for different bugs =/00:20
*** kzaitsev1mb is now known as kzaitsev_mb00:20
slagunYes. Or you need to run murano-engine on Windows :)00:20
slagunThere is a dos2unix tool that can convert line endings00:21
Nate__I'm going to guess out of sheer curiosity that running the engine on windows is not possible?00:21
slagunIt is possible. Actually that what I do00:21
*** yamamoto has joined #murano00:22
slagunAll components of murano can be run on Windows. But sometimes you need to try really really hard to make them work00:22
kzaitsev_mbI kind of understand why random people fix simple things, like, say python3 commits we're getting. doesn't require much thought, gives you some presence in the project00:24
kzaitsev_mbbut why just set yourself as an assignee?00:24
kzaitsev_mband disappear00:24
kzaitsev_mb=/00:25
slagunI still don't know if I like that Py3 movement or not to be honest00:25
openstackgerritMerged openstack/python-muranoclient: Updated from global requirements  https://review.openstack.org/26934700:26
*** samuelBartel has quit IRC00:26
kzaitsev_mbslagun: I'd like to see py3 job voting by mitaka to be honest =)00:26
kzaitsev_mbactually have you seen a letter from zigo?00:26
slagunno, I haven't00:27
kzaitsev_mbpython3 is the default python in new Sid00:27
kzaitsev_mbthe latest debian00:27
kzaitsev_mbor do they call it testing debian00:28
kzaitsev_mbwhatever =)00:28
kzaitsev_mbhope that ubuntu would switch at some point too00:28
kzaitsev_mbsomeone has to shoot py2 in the head if Guido can't00:28
slagunI will like migration to Py3 only when we decide that after date X we will dropp support for Py2 and will be free to use Py3 features. And then I'll still prefer to start migration to Py3 as close as possible to that date00:29
slagunI don't want to have six-bloated code in murano for years or even forever00:29
slagunOr to switch to Py3 without ability to use Py3 features00:30
Nate__Just use py3 and not tell anybody? that always goes over well...00:31
Nate__It works I promise!00:31
kzaitsev_mbyou can't do that =)00:31
kzaitsev_mbcause you know upstream jobs and stuff00:31
slagunyou cannot hide from python-27 upstream jenkins jobs :)00:32
*** yamamoto has quit IRC00:33
Nate__Thanks gents the dos2unix worked00:33
Nate__carriage returns, tis a silly place00:33
kzaitsev_mbI promise to not enable py3 job on master without letting everyone vote against it =) I promise00:33
Nate__Have you guys seen other people developing custom murano packages yet?00:34
slagunNate__: The funny thing is not that bash doesn't work with CRLF but that it responds with file not found error. Though I know why I don't understand why its so hard to fix00:35
kzaitsev_mbNate__: sure, we have. We basically consider murano-apps to be a list of examples you can start working with, not production-ready apps00:36
kzaitsev_mb(except for k8s, which is complex and scary)00:36
slagunNate__: we're doing such troubleshooting for people we never seen day by day. So I guess we are not the only ones who write packages :)00:37
Nate__Perfect, now I should actually update our base code...00:37
kzaitsev_mbslagun: py2/py3 is actually nothing hard. mfedosin showed me some code in nova plugins, that's supposed to run on py2.4 =) it doesn't have requests, so he is stuck with httplib00:40
kzaitsev_mbslagun: well, you know what.00:40
kzaitsev_mbwe can actually make py2 job non-voting =))00:41
kzaitsev_mbthat'd be hillarious00:41
kzaitsev_mbI think Serg would not appreciate the joke, though...00:41
kzaitsev_mbhead feels heavy, gotta go get some sleep. cheers.00:42
slagunbtw MuranoPL uses features that were dropped from Py300:46
kzaitsev_mblike what?00:46
slagunlike https://github.com/openstack/murano/blob/master/murano/dsl/yaql_integration.py#L14700:47
*** ducttape_ has joined #murano00:48
*** zhurong has joined #murano00:51
*** ducttape_ has quit IRC00:52
*** Liuqing has joined #murano00:53
kzaitsev_mbslagun: aren't they just renamed to __self__ and __func__?00:55
kzaitsev_mbhttps://docs.python.org/3/reference/datamodel.html00:56
slagunno. Methods are no more bound to classes so you cannot get the class from the method00:56
kzaitsev_mbslagun: hm, I believe you're wrong =)00:59
kzaitsev_mbhttp://paste.openstack.org/show/484224/01:00
slagunnot Foo().bar. I need to get Foo from Foo.bar01:01
kzaitsev_mbprints <__main__.Foo object at for me from both py3 and py201:01
*** vahidh has quit IRC01:01
kzaitsev_mboh now I see01:02
openstackgerritzhurong proposed openstack/python-muranoclient: Delete the confused warning in http json_request  https://review.openstack.org/26938401:12
*** kzaitsev_mb has quit IRC01:19
*** jasonsb has quit IRC01:29
openstackgerritzhurong proposed openstack/python-muranoclient: Add the cover case for 'body' kwarg in http json_request  https://review.openstack.org/26938401:44
*** zhurong has quit IRC01:46
*** Liuqing has quit IRC01:47
*** zhurong has joined #murano01:47
*** zhurong has quit IRC01:48
*** zhurong has joined #murano01:54
zhurongkatyafervent ping01:56
*** yamamoto has joined #murano02:01
*** Liuqing has joined #murano02:11
*** kzaitsev_mb has joined #murano02:16
*** yamamoto has quit IRC02:17
openstackgerritzhurong proposed openstack/python-muranoclient: Add the cover case for 'body' kwarg in http json_request  https://review.openstack.org/26938402:19
*** tlashchova has quit IRC02:19
*** ducttape_ has joined #murano02:48
*** kzaitsev_mb has quit IRC02:50
*** ducttape_ has quit IRC02:53
*** sergmelikyan has joined #murano02:58
*** ducttape_ has joined #murano03:04
*** yamamoto has joined #murano03:09
*** Marga_ has joined #murano03:10
*** StanLagun has joined #murano03:11
openstackgerritzhurong proposed openstack/murano-dashboard: Fix the error message when failed to modify package  https://review.openstack.org/26940803:11
*** slagun has quit IRC03:13
openstackgerritMerged openstack/murano-apps: Fixing typos in README.rst for Kubernetes apps  https://review.openstack.org/26095903:25
*** jasonsb has joined #murano03:31
*** sergmelikyan has quit IRC03:31
*** ducttape_ has quit IRC03:34
*** mragupat has joined #murano03:37
*** ducttape_ has joined #murano03:43
*** sergmelikyan has joined #murano03:45
*** kzaitsev_mb has joined #murano03:46
openstackgerritAaron Ding proposed openstack/python-muranoclient: Authenticate with HTTPClient  https://review.openstack.org/26941603:50
*** kzaitsev_mb has quit IRC03:52
*** ducttape_ has quit IRC03:54
openstackgerritMerged openstack/murano: Python3:Replace iter.next() with next(iter)  https://review.openstack.org/26918203:58
openstackgerritMerged openstack/murano: Fix python 2 and 3 compatibility issue with six  https://review.openstack.org/26915903:59
openstackgerritMerged openstack/murano: [docs] Update to use openstack CLI instead of glance(v1)  https://review.openstack.org/25937504:03
*** Marga_ has quit IRC04:30
*** Marga_ has joined #murano04:30
*** ashishb has joined #murano04:31
*** ashishb has quit IRC04:37
openstackgerritzhurong proposed openstack/murano: Add package check for package name length  https://review.openstack.org/26943004:43
*** Marga_ has quit IRC04:44
openstackgerritzhurong proposed openstack/murano-dashboard: Add package check for package name length  https://review.openstack.org/26943204:49
*** kzaitsev_mb has joined #murano04:49
*** sergmelikyan has quit IRC04:55
*** sergmelikyan has joined #murano04:59
*** jasonsb has quit IRC05:04
*** akulshin has joined #murano05:04
*** mragupat has quit IRC05:07
*** akulshin has quit IRC05:08
*** ashishb has joined #murano05:15
*** kzaitsev_mb has quit IRC05:22
openstackgerritMerged openstack/murano-dashboard: Fix the error message when failed to modify package  https://review.openstack.org/26940805:33
*** sergmelikyan has quit IRC05:36
*** sergmelikyan has joined #murano05:37
*** jasonsb has joined #murano05:38
*** Nikolay_St has quit IRC05:43
*** sergmelikyan has quit IRC05:48
*** akulshin has joined #murano06:05
openstackgerritRavi Shekhar Jethani proposed openstack/murano: Python3: Use reduce from six.moves  https://review.openstack.org/26944706:08
*** akulshin has quit IRC06:09
*** vahidh has joined #murano06:13
*** kzaitsev_mb has joined #murano06:17
*** vahidh has quit IRC06:18
*** vgridnev has joined #murano06:22
*** kzaitsev_mb has quit IRC06:23
*** akulshin has joined #murano06:25
*** vgridnev has quit IRC06:45
openstackgerritRavi Shekhar Jethani proposed openstack/murano: Python3: Use range from six.moves  https://review.openstack.org/26945707:07
*** jesuspg has joined #murano07:14
*** vgridnev has joined #murano07:15
*** kzaitsev_mb has joined #murano07:20
*** mflobo has quit IRC07:43
openstackgerritHidekazu Nakamura proposed openstack/murano: [Doc] Fix directory name containing execution plan template  https://review.openstack.org/26947507:44
*** kzaitsev_mb has quit IRC07:45
*** akulshin has quit IRC07:47
*** akulshin has joined #murano07:47
*** vgridnev has quit IRC07:49
openstackgerritRavi Shekhar Jethani proposed openstack/murano: Python3: Replace basestring by six.string_types  https://review.openstack.org/26947607:51
*** samuelBartel has joined #murano07:51
*** vgridnev has joined #murano08:19
openstackgerritJesus Perez proposed openstack/murano: Fix migrations (using batch alembic) in order to maintain compatibility with sqlite. Read http://alembic.readthedocs.org/en/latest/batch.html for more info.  https://review.openstack.org/26948908:21
*** Nikolay_St has joined #murano08:30
*** kzaitsev_mb has joined #murano08:39
katyaferventhi zhurong08:44
zhurongkatyafervent This patch:https://review.openstack.org/#/c/268872/, you said we should change the success-url link. it is mean in the detail page, the action success-url should be detail page?08:47
katyaferventsure, user should stay at the same page where he clicked the button (in that case)08:49
zhurongI have no idea about this, I check all the horizon about this, and can not find any about this08:51
zhurongcould you give me some help08:52
openstackgerritRavi Shekhar Jethani proposed openstack/murano: Python3: Use cStringIO from six.moves  https://review.openstack.org/26950109:02
openstackgerritEkaterina Chernova proposed openstack/murano-dashboard: [DynamicUI] Apply user regex for the password field  https://review.openstack.org/26820309:08
*** jesuspg has quit IRC09:10
*** kzaitsev_mb has quit IRC09:16
openstackgerritEkaterina Chernova proposed openstack/murano-apps: [Tomcat][Tests] Add check for a 'deployed' variable  https://review.openstack.org/26916709:19
openstackgerritRavi Shekhar Jethani proposed openstack/murano: Python3: Use six.moves.map instead itertools.imap  https://review.openstack.org/26950809:28
*** Marga_ has joined #murano09:29
*** jesuspg has joined #murano09:31
katyaferventzhurong, you have to create separate table  table = tables.PackageDefinitionsTable(self.request)09:37
katyaferventand put modified actions to that table. you can inherit from the existing actions and change success-url only09:38
katyaferventbut first try to change  context["url"] = reverse('horizon:murano:packages:index') to the package detail page09:39
openstackgerritDmytro Dovbii proposed openstack/murano: [Core-Library]Add ability to specify direction and ethetype for groups  https://review.openstack.org/26951709:42
*** jesuspg has quit IRC09:44
*** jesuspg has joined #murano09:53
zhurongkatyafervent modified actions's success-url not in the tables action, it is in the ModifyPackageView09:53
katyaferventit seems to me that success url is equal to the table url by default09:56
zhurongthe modify table url is not this, url = 'horizon:murano:packages:modify'?10:00
openstackgerritMerged openstack/murano: Python3: Replace basestring by six.string_types  https://review.openstack.org/26947610:01
openstackgerritMerged openstack/murano: [Doc] Fix directory name containing execution plan template  https://review.openstack.org/26947510:02
*** vgridnev has quit IRC10:06
katyaferventzhurong, try to understand how it is done in horizon, in the Instances page. After I update image name from the detail page I'm stay at the details page10:06
*** vgridnev has joined #murano10:07
katyaferventbut notice, that rows (package attrs) in the packages definition main page may be different from the info provided in the detailed page10:08
*** vgridnev has quit IRC10:13
*** hidekazu has quit IRC10:14
*** Marga_ has quit IRC10:18
*** vgridnev has joined #murano10:26
*** zhurong has quit IRC10:33
*** tlashchova has joined #murano10:47
*** vgridnev has quit IRC10:49
*** Marga_ has joined #murano10:53
*** yamamoto has quit IRC10:55
*** kodokuu has joined #murano11:03
kodokuuStanLagun Hi11:03
StanLagunkodokuu: hi. I'll be available in 1.5hours11:06
*** Marga_ has quit IRC11:15
*** vgridnev has joined #murano11:15
*** yamamoto has joined #murano11:45
openstackgerritTony Tarasov proposed openstack/murano-apps: ApacheDeploy script syntax and logic modificaton  https://review.openstack.org/26957711:48
openstackgerritRavi Shekhar Jethani proposed openstack/murano: Python3: Use six.moves for py2 compatibility  https://review.openstack.org/26945711:51
*** enthurohini has joined #murano11:55
*** yamamoto has quit IRC12:03
*** Liuqing has quit IRC12:06
*** yamamoto has joined #murano12:07
*** ashishb has quit IRC12:10
*** yamamoto_ has joined #murano12:11
*** yamamoto has quit IRC12:14
*** yamamoto_ has quit IRC12:23
*** raildo-afk is now known as raildo12:27
openstackgerritNikolay Starodubtsev proposed openstack/murano: WIP  https://review.openstack.org/25325912:31
openstackgerritRavi Shekhar Jethani proposed openstack/python-muranoclient: Add python 3 support  https://review.openstack.org/26959512:33
*** yamamoto has joined #murano12:59
*** ducttape_ has joined #murano13:10
*** vgridnev has quit IRC13:12
*** alejandrito has joined #murano13:14
*** vgridnev has joined #murano13:14
*** ducttape_ has quit IRC13:27
*** sergmelikyan has joined #murano13:51
*** HoloIRCUser4 has joined #murano13:55
HoloIRCUser4Hi13:56
StanLagunhi13:56
*** Marga_ has joined #murano13:57
*** HoloIRCUser4 is now known as nikolay_st_m13:57
nikolay_st_mStanLagun: nothing special13:58
nikolay_st_mJust testing a new app for my phone13:59
*** jesuspg has quit IRC14:00
openstackgerritStan Lagun proposed openstack/murano: Fixes attribute store for MuranoClassReference types  https://review.openstack.org/26915414:06
*** enthurohini has quit IRC14:08
openstackgerritMerged openstack/python-muranoclient: Add python 3 support  https://review.openstack.org/26959514:15
openstackgerritEkaterina Chernova proposed openstack/murano: [Docs] Update Dymanic UI specification  https://review.openstack.org/26966514:21
openstackgerritMerged openstack/murano: Python3: Use six.moves for py2 compatibility  https://review.openstack.org/26945714:30
sergmelikyanfolks, I propose to abandon these WIP patches on review14:36
*** yamamoto has quit IRC14:36
openstackgerritMerged openstack/murano-dashboard: Add package check for package name length  https://review.openstack.org/26943214:49
openstackgerritMerged openstack/murano: Add package check for package name length  https://review.openstack.org/26943014:49
*** ducttape_ has joined #murano14:53
*** sergmelikyan has quit IRC14:59
*** mragupat has joined #murano15:04
*** enthurohini has joined #murano15:20
openstackgerritHenar Muñoz proposed openstack/murano: Introducing ConfLangInstance  https://review.openstack.org/23038115:37
*** jesuspg has joined #murano15:40
*** Nikolay_St has quit IRC15:44
*** jesuspg has quit IRC15:50
*** Marga_ has quit IRC15:54
*** nikolay_st_m has quit IRC15:55
openstackgerritMerged openstack/murano: Updated from global requirements  https://review.openstack.org/26963816:03
openstackgerritMerged openstack/python-muranoclient: Updated from global requirements  https://review.openstack.org/26964416:06
*** Liuqing has joined #murano16:16
*** zhurong has joined #murano16:16
*** kzaitsev_mb has joined #murano16:32
openstackgerritRohini Choudhary proposed openstack/python-muranoclient: Initial commit for openstack-client support in python-muranoclient  https://review.openstack.org/26601816:35
*** alejandrito has quit IRC16:41
*** Marga_ has joined #murano16:44
*** Liuqing has quit IRC16:46
*** samuelBartel has quit IRC16:48
*** Nikolay_St has joined #murano16:49
*** Liuqing has joined #murano16:50
*** Liuqing has quit IRC16:51
*** Liuqing has joined #murano16:53
*** Liuqing has quit IRC16:53
zhurongDo we have a meeting now?17:01
enthurohiniyes17:01
kzaitsev_mbzhurong: yep in -alt17:01
zhurongOK. I see17:01
openstackgerritzhurong proposed openstack/python-muranoclient: Add the cover case for 'body' kwarg in http json_request  https://review.openstack.org/26938417:11
openstackgerritzhurong proposed openstack/python-muranoclient: Add the cover case for 'body' kwarg in http json_request  https://review.openstack.org/26938417:27
*** naresht has quit IRC17:32
*** vahidh has joined #murano17:36
*** Marga_ has quit IRC17:37
*** Marga_ has joined #murano17:38
*** madhuri has joined #murano17:53
*** akulshin has quit IRC17:58
*** zhurong has quit IRC18:01
*** ashishb has joined #murano18:06
*** kzaitsev_mb has quit IRC18:10
*** ashishb has quit IRC18:11
*** ashishb has joined #murano18:19
*** enthurohini has quit IRC18:21
madhuriHi folks18:25
madhuriI need some help with https://review.openstack.org/#/c/269250/18:26
StanLagunmadhuri: what's the question?18:27
madhuriI am getting unathorized error at https://review.openstack.org/#/c/269250/2/contrib/plugins/magnum_plugin/magnum-app/io.murano.apps.MagnumApp/Classes/MagnumBayApp.yaml line 5018:27
madhuriAnd I am not sure why I am getting this error18:28
StanLagunmaybe Magnum cannot work with Kyestone trusts?18:31
StanLagunYou need to set break points in create_magnum_client and check if that client really works calling by something simple18:32
madhuriIt can18:32
madhuriI am able to create a baymodel but not bay18:32
madhuriOk let me try that18:33
StanLagunThen probably you need a help from someone from #magnum18:33
StanLagunIt is Magnum who return error, not murano18:33
madhuriOk I just wanted to confirm one thing18:34
madhuribaymodel is property of clas MagnumBayApp18:34
madhuriline 16 in https://review.openstack.org/#/c/269250/2/contrib/plugins/magnum_plugin/magnum-app/io.murano.apps.MagnumApp/Classes/MagnumBayApp.yaml18:36
madhuriAnd I want to use baymodel's property in MagnumBayApp at line5018:36
madhuriSo am I doing it the right way?18:36
StanLagunyes18:37
madhuriOk thanks18:38
*** ashishb has quit IRC18:49
*** ashishb has joined #murano18:49
*** akulshin has joined #murano19:30
*** madhuri has quit IRC19:38
*** kzaitsev_mb has joined #murano19:54
openstackgerritDmytro Dovbii proposed openstack/murano: [Core-Library] Add ability to specify direction and ethetype for groups  https://review.openstack.org/26951719:55
*** ashishb has quit IRC19:56
openstackgerritDmytro Dovbii proposed openstack/murano: [Core-Library] Add ability to specify direction and ethetype for groups  https://review.openstack.org/26951719:57
*** akulshin has quit IRC20:17
*** kzaitsev_mb has quit IRC20:26
*** kzaitsev_mb has joined #murano20:30
*** kzaitsev_mb has quit IRC20:40
*** Nikolay_St has quit IRC20:42
*** jasonsb has quit IRC20:54
*** vgridnev has quit IRC20:56
*** vgridnev has joined #murano21:07
*** kzaitsev_mb has joined #murano21:09
*** vgridnev has quit IRC21:19
*** vgridnev has joined #murano21:19
*** vgridnev has quit IRC21:20
*** kzaitsev_mb has quit IRC21:35
*** jasonsb has joined #murano21:38
*** jasonsb has quit IRC21:43
*** kzaitsev_mb has joined #murano21:49
*** jesuspg has joined #murano22:00
*** alejandrito has joined #murano22:05
*** alejandrito has quit IRC22:51
*** mragupat has quit IRC23:08
*** yamamoto_ has joined #murano23:27
*** ducttape_ has quit IRC23:50
*** yamamoto_ has quit IRC23:59

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