*** ducttape_ has quit IRC | 00:00 | |
*** kzaitsev_mb has joined #murano | 00:17 | |
*** kzaitsev_mb has quit IRC | 00:24 | |
*** ducttape_ has joined #murano | 00:30 | |
*** ducttape_ has quit IRC | 00:33 | |
*** ducttape_ has joined #murano | 00:36 | |
*** ducttape_ has quit IRC | 00:39 | |
*** ducttape_ has joined #murano | 01:03 | |
*** Liuqing has joined #murano | 01:06 | |
*** sergmelikyan has joined #murano | 01:14 | |
*** Liuqing has quit IRC | 01:15 | |
*** Marga_ has quit IRC | 01:16 | |
*** kzaitsev_mb has joined #murano | 01:21 | |
*** kzaitsev_mb has quit IRC | 01:26 | |
*** ducttape_ has quit IRC | 01:35 | |
*** ducttape_ has joined #murano | 01:38 | |
*** sergmelikyan has quit IRC | 01:39 | |
*** Liuqing has joined #murano | 01:51 | |
*** ducttape_ has quit IRC | 01:52 | |
*** Marga_ has joined #murano | 01:56 | |
*** Marga_ has quit IRC | 02:01 | |
*** ducttape_ has joined #murano | 02:06 | |
*** x00350071 has quit IRC | 02:06 | |
*** x00350071 has joined #murano | 02:08 | |
*** ducttape_ has quit IRC | 02:14 | |
*** Marga_ has joined #murano | 02:17 | |
*** ducttape_ has joined #murano | 02:19 | |
*** ducttape_ has quit IRC | 02:21 | |
*** Marga_ has quit IRC | 02:21 | |
*** kzaitsev_mb has joined #murano | 02:22 | |
*** zhurong has joined #murano | 02:25 | |
*** ducttape_ has joined #murano | 02:27 | |
*** kzaitsev_mb has quit IRC | 02:28 | |
*** ducttape_ has quit IRC | 02:35 | |
*** ducttape_ has joined #murano | 02:40 | |
*** ducttape_ has quit IRC | 02:44 | |
*** zhurong has quit IRC | 02:59 | |
*** zhurong has joined #murano | 03:01 | |
*** yamamoto has joined #murano | 03:14 | |
*** Marga_ has joined #murano | 03:19 | |
*** Marga_ has quit IRC | 03:24 | |
*** kzaitsev_mb has joined #murano | 03:25 | |
*** kzaitsev_mb has quit IRC | 03:30 | |
*** Marga_ has joined #murano | 03:39 | |
*** Marga__ has joined #murano | 03:44 | |
*** Marga_ has quit IRC | 03:47 | |
*** zhurong has quit IRC | 03:50 | |
*** kzaitsev_mb has joined #murano | 04:26 | |
*** kzaitsev_mb has quit IRC | 04:31 | |
*** yamamoto has quit IRC | 04:47 | |
*** zhurong has joined #murano | 05:03 | |
*** Nikolay_St has quit IRC | 05:16 | |
*** yamamoto has joined #murano | 05:17 | |
*** kzaitsev_mb has joined #murano | 05:28 | |
*** kzaitsev_mb has quit IRC | 05:33 | |
*** zhurong has quit IRC | 05:38 | |
*** zhurong has joined #murano | 05:44 | |
*** zhurong has quit IRC | 05:49 | |
*** zhurong has joined #murano | 05:52 | |
*** yamamoto has quit IRC | 05:53 | |
*** yamamoto has joined #murano | 06:06 | |
*** Marga__ has quit IRC | 06:16 | |
*** Nikolay_St has joined #murano | 06:18 | |
*** kzaitsev_mb has joined #murano | 06:29 | |
*** zhurong has quit IRC | 06:31 | |
*** zhurong has joined #murano | 06:34 | |
*** kzaitsev_mb has quit IRC | 06:34 | |
*** ishergin has joined #murano | 06:52 | |
*** samuelBartel has joined #murano | 07:10 | |
*** nshenoy has joined #murano | 07:21 | |
nshenoy | StanLagun: Hi Stan, Query regarding the core library versioning. If i look at typical application package, there is a version field as part of execution plan. mostly the .template file | 07:25 |
---|---|---|
nshenoy | and then we have manifest file which does not hold any versioning information currently. So where should i introduce the version field ? | 07:25 |
*** kzaitsev_mb has joined #murano | 07:31 | |
openstackgerrit | Nikolay Starodubtsev proposed openstack/murano: Add documentation about bundles https://review.openstack.org/296929 | 07:34 |
*** kzaitsev_mb has quit IRC | 07:36 | |
*** zhurong has quit IRC | 07:37 | |
*** zhurong has joined #murano | 07:38 | |
StanLagun | nshenoy: execution plan versions has nothing to do with package versions. They are never used | 07:41 |
StanLagun | nshenoy: package version is in manifest file. If it's missing then the version=1.0.0 | 07:42 |
StanLagun | sorry =0.0.0 | 07:42 |
nshenoy | Got it | 07:45 |
nshenoy | yes it is missing currently | 07:45 |
nshenoy | StanLagun: i can introduce it below FormatVersion ? | 07:45 |
StanLagun | manifest is a YAML unordered dictionary. You can put it anywhere you like | 07:46 |
StanLagun | note that core library has a special treatment in Murano. Packages can use classes only from the packages listed in Require section of their manifests. If no requirement on core library was specified then requirement "io.murano: 0" is inserted automatically | 07:49 |
StanLagun | thus in order to use core library >= 1.0.0 you will have to reference it explicitly | 07:50 |
StanLagun | also API created Environment version 0 | 07:50 |
nshenoy | I inserted version: 1.0.0 in the manifest file and imported the package. I think there is a small bug in the UI, it does not display the version (still blank) | 07:51 |
nshenoy | StanLagun: applications need to use core library explicitely right ? in the app package, we need to mention core library version | 07:53 |
StanLagun | nshenoy: UI displays version only when Glare is used. Murano API doesn't know package version | 08:02 |
StanLagun | if you want CL 1.0.0 you need to mention it in requirements | 08:03 |
nshenoy | hmmm ok | 08:04 |
StanLagun | However the problem that you will face is that Environment created is version 0.0.0. And it expects a list of Application version 0.0.0. So your app derived from Application 1.0.0 will not fit | 08:04 |
nshenoy | so how do i change environment to point to 1.0.0 or 0.0.0 ? | 08:06 |
*** kzaitsev_mb has joined #murano | 08:11 | |
*** kzaitsev_mb has quit IRC | 08:17 | |
StanLagun | nshenoy: currently there is no way to do that except for code patching. But then you'll break existing apps | 08:24 |
StanLagun | That's was my motivation to say that until we solve this problem we cannot merge anything CL related to the master and it might be reasonable to do development in a separate branch | 08:25 |
*** dims has quit IRC | 08:26 | |
StanLagun | simplest solution I have is to add optional version parameter to environment-create API call and create environments from CLI. | 08:27 |
StanLagun | But then you need to release new python-muranoclient | 08:27 |
nshenoy | yes. Or can we enhance the python-muranoclient to accept both versions ? | 08:31 |
*** dims has joined #murano | 08:31 | |
StanLagun | python-muranoclient doesn't accept any version now because there is no such parameter | 08:32 |
StanLagun | 0.0.0 is hardcoded. So the first thing to do is make it be a parameter. And then you need python-muranoclient wrapping with that added parameter. And then it comes to UI and user experience | 08:33 |
*** srwilkers has quit IRC | 08:33 | |
*** srwilkers has joined #murano | 08:33 | |
nshenoy | StanLagun: ok not that easy then . Need to go and back see the client code first | 08:35 |
nshenoy | let me get back to you | 08:35 |
*** nshenoy has quit IRC | 08:44 | |
*** kzaitsev_mb has joined #murano | 08:45 | |
openstackgerrit | Valerii Kovalchuk proposed openstack/python-muranoclient: Make use of version passed to glare artifacts_client https://review.openstack.org/296529 | 08:51 |
*** zhurong has quit IRC | 09:06 | |
*** klkumar has joined #murano | 09:28 | |
*** Liuqing has quit IRC | 09:47 | |
*** Liuqing has joined #murano | 10:27 | |
*** klkumar has quit IRC | 10:37 | |
*** ksnihyr has joined #murano | 10:41 | |
*** yamamoto has quit IRC | 10:54 | |
*** klkumar has joined #murano | 10:54 | |
*** yamamoto has joined #murano | 10:55 | |
*** Liuqing has quit IRC | 10:56 | |
*** klkumar has quit IRC | 11:02 | |
*** yamamoto has quit IRC | 11:07 | |
*** yamamoto has joined #murano | 11:18 | |
*** yamamoto has quit IRC | 11:23 | |
*** Marga_ has joined #murano | 11:26 | |
*** Liuqing has joined #murano | 11:35 | |
*** klkumar has joined #murano | 11:42 | |
*** klkumar has quit IRC | 11:42 | |
openstackgerrit | Nikolay Starodubtsev proposed openstack/murano: Workaround for murano-agent install with py2.6 https://review.openstack.org/273626 | 11:52 |
*** Marga_ has quit IRC | 11:54 | |
*** ducttape_ has joined #murano | 12:12 | |
*** raildo-afk is now known as raildo | 12:20 | |
openstackgerrit | Nikolay Starodubtsev proposed openstack/murano: Use unified retrying decorator https://review.openstack.org/298700 | 12:20 |
openstackgerrit | Nikolay Starodubtsev proposed openstack/murano: Use unified retrying decorator https://review.openstack.org/298700 | 12:22 |
*** ducttape_ has quit IRC | 12:28 | |
*** akulshin has joined #murano | 12:32 | |
akulshin | Hi everybody! | 12:32 |
akulshin | Does anyone know where i can check and alter file size limit when downloading using murano action? | 12:33 |
akulshin | When i execute murano action with Return: new(std:File... i cannot put content bigger then 10kb to that file. | 12:35 |
kzaitsev_mb | I don't think there is any limit for io.murano.File itself | 12:37 |
kzaitsev_mb | are you trying to upload it to murano instance? | 12:38 |
*** yamamoto has joined #murano | 12:39 | |
akulshin | hi! no^ i careate action for downloading log files archive | 12:53 |
akulshin | the archive is about 6MB and it is not downloading | 12:53 |
akulshin | the only file size i succeded is 10kb (13868 in Base64) | 12:53 |
akulshin | http://docs.openstack.org/developer/murano/draft/appdev-guide/murano_pl/actions.html - just like here | 12:54 |
kzaitsev_mb | akulshin: huh, interesting. | 12:55 |
kzaitsev_mb | looks like a bug to me. Can you pls file it? | 12:55 |
akulshin | ok, i will post a link | 12:58 |
*** klkumar has joined #murano | 13:05 | |
*** srwilkers_ has joined #murano | 13:07 | |
*** srwilkers_ is now known as srwilkers_mobile | 13:08 | |
akulshin | https://bugs.launchpad.net/openstack-ansible/+bug/1563318 | 13:11 |
openstack | Launchpad bug 1563318 in openstack-ansible "Unable to download file > 100kb using murano action" [Undecided,New] | 13:11 |
Nikolay_St | kzaitsev_mb: StanLagun ativelkov I try to install murano-agent under py2.6 and this is error message that I have http://pastebin.com/Lqs63QCi | 13:21 |
Nikolay_St | is it py2.6 related? | 13:22 |
*** klkumar has quit IRC | 13:28 | |
akulshin | kzaitsev_mb: any thoughts? | 13:29 |
*** klkumar has joined #murano | 13:30 | |
*** tlashchova has joined #murano | 13:35 | |
openstackgerrit | Merged openstack/murano: Remove unnecessary packages.rst https://review.openstack.org/297507 | 13:38 |
*** ducttape_ has joined #murano | 13:55 | |
*** Liuqing has quit IRC | 14:02 | |
*** ishergin_ has joined #murano | 14:06 | |
*** ishergin has quit IRC | 14:09 | |
*** ishergin_ has quit IRC | 14:11 | |
openstackgerrit | Merged openstack/murano: Use unified retrying decorator https://review.openstack.org/298700 | 14:41 |
*** Nikolay_St has quit IRC | 14:43 | |
*** ksnihyr has quit IRC | 14:50 | |
*** ksnihyr has joined #murano | 14:51 | |
openstackgerrit | Merged openstack/murano: Document changes in Dynamic UI https://review.openstack.org/298163 | 15:05 |
*** openstackgerrit has quit IRC | 15:06 | |
*** openstackgerrit has joined #murano | 15:06 | |
*** lin_yang has quit IRC | 15:43 | |
*** lin_yang has joined #murano | 15:43 | |
*** ksnihyr has quit IRC | 15:45 | |
*** klkumar has quit IRC | 15:48 | |
*** zhurong has joined #murano | 15:48 | |
*** gokrokve has joined #murano | 15:59 | |
*** ducttape_ has quit IRC | 15:59 | |
*** samuelBartel has quit IRC | 16:00 | |
*** ducttape_ has joined #murano | 16:01 | |
*** klkumar has joined #murano | 16:04 | |
*** srwilkers_mobile has quit IRC | 16:04 | |
*** ksnihyr has joined #murano | 16:13 | |
*** kzaitsev_mb has quit IRC | 16:13 | |
*** klkumar has quit IRC | 16:19 | |
*** kzaitsev_mb has joined #murano | 16:24 | |
*** Marga_ has joined #murano | 16:25 | |
kzaitsev_mb | akulshin: sorry, didn't really had time today to look into your problem, would test what you did tomorrow | 16:26 |
akulshin | ok, no problem! thanks! | 16:26 |
*** Nikolay_St has joined #murano | 16:27 | |
kzaitsev_mb | akulshin: if you're lucky enough — this can make it into mitaka release | 16:27 |
akulshin | kzaitsev_mb: will see ;) | 16:29 |
*** yamamoto has quit IRC | 16:31 | |
*** Marga_ has quit IRC | 16:31 | |
*** klkumar has joined #murano | 16:48 | |
*** srwilkers_ has joined #murano | 16:49 | |
*** srwilkers_ is now known as srwilkers_mobile | 16:49 | |
*** tlashchova_ has joined #murano | 16:51 | |
*** Marga_ has joined #murano | 16:55 | |
*** sergmelikyan has joined #murano | 17:00 | |
*** igormarnat has quit IRC | 17:07 | |
*** lin_yang has quit IRC | 17:07 | |
*** sergmelikyan has quit IRC | 17:07 | |
*** x00350071 has quit IRC | 17:07 | |
*** godlike has quit IRC | 17:07 | |
*** akuznetsova has quit IRC | 17:07 | |
*** dhellmann has quit IRC | 17:07 | |
*** vkmc has quit IRC | 17:07 | |
*** mfisch has quit IRC | 17:07 | |
*** ksnihyr has quit IRC | 17:07 | |
*** x00350071_ has joined #murano | 17:07 | |
*** sergmeli_ has joined #murano | 17:07 | |
*** sergmeli_ is now known as sergmelikyan_ | 17:07 | |
*** sergmelikyan_ has quit IRC | 17:07 | |
*** sergmeli_ has joined #murano | 17:07 | |
openstackgerrit | Omar Shykhkerimov proposed openstack/murano: Delete 'package_upgrade: true' option https://review.openstack.org/298876 | 17:07 |
*** Marga_ has quit IRC | 17:07 | |
*** Marga_ has joined #murano | 17:07 | |
*** mfisch has joined #murano | 17:07 | |
*** dhellmann has joined #murano | 17:07 | |
*** akuznetsova has joined #murano | 17:08 | |
*** mfisch is now known as Guest28049 | 17:08 | |
*** lin_yang has joined #murano | 17:08 | |
*** igormarnat has joined #murano | 17:08 | |
*** srwilkers_mobile has quit IRC | 17:09 | |
*** vkmc has joined #murano | 17:09 | |
*** godlike has joined #murano | 17:10 | |
*** tlashchova has quit IRC | 17:12 | |
*** tlashchova_ is now known as tlashchova | 17:12 | |
*** yamamoto has joined #murano | 17:14 | |
*** ducttape_ has quit IRC | 17:16 | |
*** klkumar has quit IRC | 17:29 | |
*** ducttape_ has joined #murano | 17:31 | |
*** ksnihyr has joined #murano | 17:33 | |
*** Marga__ has joined #murano | 17:34 | |
*** Marga__ has quit IRC | 17:36 | |
*** Marga_ has quit IRC | 17:37 | |
*** Marga_ has joined #murano | 17:37 | |
*** Marga_ has quit IRC | 17:37 | |
*** Marga_ has joined #murano | 17:38 | |
*** Marga_ has quit IRC | 17:39 | |
*** gokrokve has quit IRC | 17:39 | |
*** Marga_ has joined #murano | 17:40 | |
*** Nikolay_St has quit IRC | 17:46 | |
*** kzaitsev_mb has quit IRC | 17:59 | |
*** zhurong has quit IRC | 18:03 | |
*** srwilkers_ has joined #murano | 18:03 | |
*** akulshin has quit IRC | 18:05 | |
*** ishergin has joined #murano | 18:14 | |
*** Marga__ has joined #murano | 18:21 | |
*** Marga_ has quit IRC | 18:26 | |
*** srwilkers_ has quit IRC | 18:32 | |
*** fuel-slackbot has joined #murano | 18:43 | |
*** Marga__ has quit IRC | 18:52 | |
*** Marga_ has joined #murano | 18:53 | |
*** srwilkers_ has joined #murano | 18:54 | |
*** Marga__ has joined #murano | 19:00 | |
*** ducttape_ has quit IRC | 19:00 | |
*** ducttape_ has joined #murano | 19:01 | |
*** Guest28049 is now known as mfisch | 19:01 | |
*** mfisch is now known as Guest82454 | 19:01 | |
*** Guest82454 has quit IRC | 19:02 | |
*** Guest82454 has joined #murano | 19:02 | |
*** Guest82454 is now known as mfisch | 19:03 | |
*** Marga_ has quit IRC | 19:03 | |
*** krotscheck is now known as krotscheck_dcm | 19:07 | |
*** raildo is now known as raildo-afk | 19:12 | |
*** ajschroeder has joined #murano | 19:15 | |
ajschroeder | hello | 19:15 |
ajschroeder | does anyone have package examples for Microsoft IIS? | 19:15 |
ajschroeder | I find a few on google but they do not work with murano liberty | 19:15 |
*** kzaitsev_mb has joined #murano | 19:16 | |
openstackgerrit | Kirill Zaitsev proposed openstack/murano: Delete 'package_upgrade: true' option https://review.openstack.org/298876 | 19:18 |
*** sergmeli_ is now known as sergmelikyan | 19:24 | |
*** srwilkers_ has quit IRC | 19:30 | |
*** raildo-afk is now known as raildo | 19:45 | |
*** ducttape_ has quit IRC | 19:47 | |
openstackgerrit | Kirill Zaitsev proposed openstack/murano: WIP https://review.openstack.org/298954 | 19:48 |
openstackgerrit | Kirill Zaitsev proposed openstack/murano: Revert "Use unified retrying decorator" https://review.openstack.org/298955 | 19:48 |
*** ishergin has quit IRC | 19:49 | |
*** ducttape_ has joined #murano | 19:58 | |
*** ducttape_ has quit IRC | 20:01 | |
*** gokrokve has joined #murano | 20:02 | |
*** ducttape_ has joined #murano | 20:02 | |
*** gokrokve has quit IRC | 20:08 | |
*** Marga__ has quit IRC | 20:10 | |
*** Marga_ has joined #murano | 20:12 | |
*** ishergin_ has joined #murano | 20:17 | |
*** gokrokve has joined #murano | 20:29 | |
*** tlashchova has quit IRC | 20:32 | |
*** gokrokve has quit IRC | 20:34 | |
*** srwilkers has quit IRC | 20:45 | |
*** sergmelikyan has quit IRC | 20:46 | |
*** raildo is now known as raildo-afk | 20:47 | |
*** gokrokve has joined #murano | 20:48 | |
*** kzaitsev_mb has quit IRC | 20:51 | |
*** kzaitsev_mb has joined #murano | 20:51 | |
*** ishergin_ has quit IRC | 20:56 | |
*** ksnihyr has quit IRC | 21:08 | |
*** gokrokve has quit IRC | 22:01 | |
*** kzaitsev_mb has quit IRC | 22:02 | |
*** gokrokve has joined #murano | 22:02 | |
*** gokrokve has quit IRC | 22:07 | |
*** gokrokve has joined #murano | 22:07 | |
*** ksnihyr has joined #murano | 22:08 | |
*** ksnihyr has quit IRC | 22:14 | |
*** ducttape_ has quit IRC | 22:32 | |
*** kzaitsev_mb has joined #murano | 22:58 | |
*** kzaitsev_mb has quit IRC | 23:02 | |
*** gokrokve has quit IRC | 23:07 | |
*** ksnihyr has joined #murano | 23:11 | |
*** ksnihyr has quit IRC | 23:15 | |
*** ducttape_ has joined #murano | 23:17 | |
*** ducttape_ has quit IRC | 23:19 | |
*** kzaitsev_mb has joined #murano | 23:28 | |
*** gokrokve has joined #murano | 23:33 | |
*** kzaitsev_mb has quit IRC | 23:33 | |
*** gokrokve has quit IRC | 23:37 | |
*** gokrokve has joined #murano | 23:41 | |
*** gokrokve has quit IRC | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!