Tuesday, 2014-04-22

*** ativelkov is now known as ativelkov_away00:04
*** rakhmerov has quit IRC00:04
*** ativelkov_away is now known as ativelkov00:28
*** ativelkov is now known as ativelkov_away00:33
*** ativelkov_away is now known as ativelkov00:58
*** rakhmerov has joined #murano01:00
*** IlyaE has quit IRC01:03
*** ativelkov is now known as ativelkov_away01:04
*** rakhmerov has quit IRC01:05
*** ankurrr has quit IRC01:12
*** ativelkov_away is now known as ativelkov01:26
*** ativelkov is now known as ativelkov_away01:33
*** IlyaE has joined #murano01:57
*** ativelkov_away is now known as ativelkov01:58
*** rakhmerov has joined #murano02:01
*** ativelkov is now known as ativelkov_away02:04
*** rakhmerov has quit IRC02:05
*** gokrokve has quit IRC02:06
*** gokrokve has joined #murano02:07
*** gokrokve has quit IRC02:11
*** IlyaE has quit IRC02:22
*** gokrokve has joined #murano02:22
*** ativelkov_away is now known as ativelkov02:26
*** ativelkov is now known as ativelkov_away02:33
*** IlyaE has joined #murano02:45
*** ativelkov_away is now known as ativelkov02:58
*** rakhmerov has joined #murano03:01
*** ativelkov is now known as ativelkov_away03:04
*** rakhmerov has quit IRC03:06
*** IlyaE has quit IRC03:17
*** ativelkov_away is now known as ativelkov03:26
*** ativelkov is now known as ativelkov_away03:33
*** rakhmerov has joined #murano03:34
*** ativelkov_away is now known as ativelkov03:58
*** TravT has quit IRC04:00
*** chandan_kumar has joined #murano04:03
*** ativelkov is now known as ativelkov_away04:04
*** chandan_kumar has quit IRC04:10
*** ativelkov_away is now known as ativelkov04:17
*** ativelkov is now known as ativelkov_away04:19
*** ativelkov_away is now known as ativelkov04:19
*** IlyaE has joined #murano04:21
*** ativelkov is now known as ativelkov_away04:24
*** ativelkov_away is now known as ativelkov04:29
*** ativelkov is now known as ativelkov_away04:34
*** ativelkov_away is now known as ativelkov04:50
*** ativelkov is now known as ativelkov_away04:57
*** ativelkov_away is now known as ativelkov04:59
*** ativelkov is now known as ativelkov_away05:04
*** sab has joined #murano05:14
*** ativelkov_away is now known as ativelkov05:18
*** ativelkov is now known as ativelkov_away05:25
*** sergmelikyan has quit IRC05:35
*** sergmelikyan has joined #murano05:36
openstackgerritSerg Melikyan proposed a change to stackforge/murano-api: Fix issue with keystone  https://review.openstack.org/8934505:42
*** ativelkov_away is now known as ativelkov05:54
*** IlyaE has quit IRC05:58
*** chandan_kumar has joined #murano06:02
*** ativelkov is now known as ativelkov_away06:05
openstackgerritSerg Melikyan proposed a change to stackforge/murano-api: Fix issue with keystone  https://review.openstack.org/8934506:10
sabWhat does murano use for presistence?06:10
*** sab has quit IRC06:16
*** gokrokve has quit IRC06:18
*** sab has joined #murano06:21
*** ativelkov_away is now known as ativelkov06:24
*** ativelkov is now known as ativelkov_away06:29
sergmelikyansab, what do you mean by persistence?06:33
sergmelikyanIf you are talking about where Murano stores different bits about state of the deployed apps and uploaded packages and so on - it is any RDBMS supported by SQLAlchemy, SQLAlchemy is used as ORM in Murano.06:34
sergmelikyanBut migrations tested only against SQLite & MySQL06:34
sergmelikyanSo usually in production it is MySQL06:35
openstackgerritEkaterina Fedorova proposed a change to stackforge/murano-dashboard: Add last step to manage redirect on form submission  https://review.openstack.org/8948606:38
sabsergmelikyan, I beleive each environment is associated with a session, are these session data stored in RDBMS or temporary files?06:38
sergmelikyanThere is two types of session in Murano: backend session & UI session. Each of them stored in own database.06:39
sergmelikyanI believe you are interested in backend one: https://github.com/stackforge/murano-api/blob/master/muranoapi/db/models.py#L13106:40
sergmelikyanIt is a mapping class for SQLAlchemy that represents session object06:41
sergmelikyansab, if you are interested in details how session is used Murano, ping me :)06:41
openstackgerritEkaterina Fedorova proposed a change to stackforge/murano-dashboard: Add last step to manage redirect on form submission  https://review.openstack.org/8948606:43
sabsergmelikyan, thanks..absolutely I would be interested :)06:44
sergmelikyansab, sorry, searched for some docs about session but could not find them :(06:48
*** gokrokve has joined #murano06:48
sergmelikyanSo we use session a lot like transactions in ordinar databases06:48
*** chandan_kumar has quit IRC06:49
sergmelikyanWhen user userA tries to edit state of environment envA, session object is created.06:49
*** gokrokve_ has joined #murano06:50
sergmelikyanAll changes made to envA by userA are stored in session 'sessionA'.06:50
sabsergmelikyan, Thats okay, I will see if I can contribute some docs on sessions :)06:51
sabwill each environment be associated to one tenant? is it a one-to-one relation06:52
sergmelikyanUntill envA is not deployed, any changes made by userA are transient and does not visible to enyone except userA.06:52
sergmelikyanIf any other user, for example userB will try to edit envA,  new session object sessionB will be created for userB.06:53
*** gokrokve has quit IRC06:53
sergmelikyanAt this point we have two different sessions open with two different set of changes made to the envA.06:53
*** julienvey has joined #murano06:53
sergmelikyanWe could not reliable merge changes done by two users, so we decided to use 'first win' strategy. First user that will start deployment wins. Changes made by others will be lost.06:55
*** gokrokve has joined #murano06:56
sergmelikyanSo if userB will start deployment first, sessionB will change state from open to deploying, and all other sessions opened for envA will be marked as invalid. Once deployment started for envA no session may be opened for this envA till it finished deployment.06:57
*** gokrokve_ has quit IRC06:57
sergmelikyanOnce deployment finished changes tracked in sessionB will be transfered to envA.06:57
sergmelikyansessionB will have state deployed and may not be used anymore to track changes.06:58
*** ativelkov_away is now known as ativelkov06:58
sergmelikyansab, each tenant may have many environments06:59
sergmelikyanmany to one relation (many envs one tenant)06:59
sergmelikyansab, https://drive.google.com/file/d/0B3F5XCmYtnRdWDdET1EzX2xIeWs/edit07:00
sergmelikyanYou may be interested - it is a small demo for Murano v0.507:00
*** gokrokve has quit IRC07:00
sergmelikyansab, http://www.mirantis.com/blog/murano-0-4-brings-metadata-repository-neutron-support/07:02
sergmelikyansab, http://www.mirantis.com/blog/murano-v0-3-lets-you-deploy-linux-applications/07:02
sergmelikyanDemos for 0.4 and 0.3 version07:02
sergmelikyanMay give you a little taste what Murano is like. We can try to deploy Murano together if you still have issues with devstack scripts for Murano.07:03
*** ativelkov is now known as ativelkov_away07:04
sabsergmelikyan, with respect to userA and userB editing envA , why dont we consider it as two different environment, may be make one as a new environment as envA-1, because changes made by two users make it two distinct environments?07:05
sabsergmelikyan, I installed it with devstack scripts in murano-api repo. it works. But it did not install murano repository.07:07
*** chandan_kumar has joined #murano07:07
sergmelikyansab, murano-repository is a part of murano-api from 0.507:10
sabsergmelikyan, okay. my murano is version 0.4.1, however I am upgrading to icehouse from havana today.07:12
sergmelikyansab, for 0.4 you should use this scripts: https://github.com/stackforge/murano-deployment/tree/release-0.4/devstack-scripts07:13
sergmelikyanBut there may be issues :(07:14
sergmelikyansab, about feature that you are talking about, do I get correctly: if userA tries to deploy his envA and envA is already deployd/deploying propose to create new environment envA-1?07:14
sabsergmelikyan, yes. you got it right07:15
sergmelikyanIt is not so easy to implement, but may be done. Feel free to propose blueprint for this feature, looks very reasonable feature.07:16
sabsergmelikyan, murano-deployment scripts was referencing to a "heat-horizon" repository which does not exist any more?07:17
*** rakhmerov has quit IRC07:17
sabsergmelikyan, yeah sure I will do that07:17
sergmelikyansab, I am not sure :( Scripts were introduced very late in last days of 0.4, so have no time to try them. If you are feeling strong that you need 0.4.1 - we may join with dteselkin to debug and fix them if there any issues.07:18
sergmelikyanBut I propose to move 0.5 :)07:18
sergmelikyan*move to07:19
*** rakhmerov has joined #murano07:20
sabsergmelikyan, I am moving on with 0.5 :)07:21
sergmelikyan0.5 is MVP of Application Catalog and has many new features and is current version on Murano. I am not sure, but I expect that versions prior 0.5 will receive only critical security fixes07:21
sergmelikyansab, cool :)07:21
sergmelikyandteselkin_, please reflect in our devstack scripts that we need Horizon with this fix: https://review.openstack.org/8283307:24
sergmelikyanIt is available only in Juno :( But 0.5 is targeted to IceHouse, I believe we should apply this patch manually07:24
sergmelikyanFor IceHouse respectively07:25
*** ativelkov_away is now known as ativelkov07:26
openstackgerritEkaterina Fedorova proposed a change to stackforge/murano-api: Add file limit for a package archive during upload  https://review.openstack.org/8634507:28
*** rakhmerov has quit IRC07:29
*** rakhmero_ has joined #murano07:29
openstackgerritEkaterina Fedorova proposed a change to stackforge/murano-api: Add file limit for a package archive during upload  https://review.openstack.org/8634507:31
*** rakhmero_ has quit IRC07:31
*** rakhmerov has joined #murano07:32
openstackgerritEkaterina Fedorova proposed a change to stackforge/murano-api: Add file limit for a package archive during upload  https://review.openstack.org/8634507:33
*** ativelkov is now known as ativelkov_away07:33
sergmelikyansab, https://dl.dropboxusercontent.com/u/486062/Session%20Handling%20Blueprint.docx07:50
sergmelikyansab, if you interested in deep session related details :)07:50
sergmelikyanmay be a little outdated07:50
sabsergmelikyan, looks good.07:55
*** gokrokve has joined #murano07:57
openstackgerritDmitry Teselkin proposed a change to stackforge/murano-api: Launch murano-engine with Murano services  https://review.openstack.org/8949507:57
*** ativelkov_away is now known as ativelkov07:58
*** gokrokve has quit IRC08:01
dteselkin_sergmelikyan, thanks, I'll add the patch08:03
*** ativelkov is now known as ativelkov_away08:04
openstackgerritSergey Murashov proposed a change to stackforge/murano-api: Changed tests for murano repository  https://review.openstack.org/8506108:09
*** rakhmero_ has joined #murano08:13
*** rakhmerov has quit IRC08:13
openstackgerritDmitry Teselkin proposed a change to stackforge/murano-api: Add devstack config sample for Murano devbox  https://review.openstack.org/8950308:21
sergmelikyankatyafervent, what do you think about creating bug to move Statistics page from Manage panel?08:21
sergmelikyanAnd possibly to rename Manage to something else?08:21
katyaferventStatistic page is already under Manage08:22
katyaferventOh, you want to move it to deployment?08:22
katyaferventBilling information will be at Statistic page, does the user need that info - I guess so08:23
sergmelikyankatyafervent, possibly... I think we should have as simple UI as possible and after moving Statistics to Deployment we could safely disable Mange for simple users08:24
sergmelikyanBut then we have question about Deployment panel...08:24
*** ativelkov_away is now known as ativelkov08:26
*** rakhmerov has joined #murano08:26
openstackgerritSergey Murashov proposed a change to stackforge/murano-api: Changed tests for murano repository  https://review.openstack.org/8506108:28
*** rakhmero_ has quit IRC08:29
*** ativelkov is now known as ativelkov_away08:33
openstackgerritDmitry Teselkin proposed a change to stackforge/murano-api: Add Horizon patch  https://review.openstack.org/8950608:39
*** sab has quit IRC08:42
*** sergmelikyan has quit IRC08:47
*** sergmelikyan has joined #murano08:47
*** ativelkov_away is now known as ativelkov08:48
openstackgerritSergey Murashov proposed a change to stackforge/murano-api: Changed tests for murano repository  https://review.openstack.org/8506108:54
*** gokrokve has joined #murano08:57
*** gokrokve has quit IRC09:01
*** sab has joined #murano09:02
*** sab has quit IRC09:07
openstackgerritTimur Nurlygayanov proposed a change to stackforge/murano-dashboard: Fixed issue with error message  https://review.openstack.org/8932909:12
*** chandan_kumar has quit IRC09:15
openstackgerritA change was merged to stackforge/murano-api: Set a proper name for murano config section  https://review.openstack.org/8939109:15
*** sab has joined #murano09:17
openstackgerritA change was merged to stackforge/murano-api: Add file limit for a package archive during upload  https://review.openstack.org/8634509:22
tsufiev_sergmelikyan, what is the question?09:26
sergmelikyanWhy we call dasboard which has three panels: statistic, catalog, envs Deployment09:28
sergmelikyanWe definetely should think about new name09:28
openstackgerritTimur Nurlygayanov proposed a change to stackforge/murano-dashboard: Fixed issue with error message  https://review.openstack.org/8932909:29
*** chandan_kumar has joined #murano09:29
openstackgerritA change was merged to stackforge/murano-dashboard: Fix floating number appearence on stats page  https://review.openstack.org/8832509:41
tsufiev_sergmelikyan, 'Applications' ?09:49
tsufiev_or: 'Deployment' -> 'Application Catalog', 'Application Catalog' -> 'Applications'09:50
tsufiev_so, the will be 3 panels: Environments, Applications and Statistics09:50
*** chandan_kumar is now known as chandankumar09:55
*** chandankumar is now known as chandan_kumar09:56
*** gokrokve has joined #murano09:58
*** gokrokve has quit IRC10:02
sergmelikyantsufiev, looks good :)10:05
*** ativelkov is now known as ativelkov_away10:06
*** stan_lagun has joined #murano10:06
*** ativelkov_away is now known as ativelkov10:07
*** slagun has quit IRC10:10
*** ativelkov is now known as ativelkov_away10:12
*** stan_lagun has left #murano10:17
*** stan_lagun has joined #murano10:18
*** ativelkov_away is now known as ativelkov10:21
openstackgerritSergey Murashov proposed a change to stackforge/murano-api: Changed tests for murano repository  https://review.openstack.org/8506110:28
*** julienvey has quit IRC10:36
openstackgerritSergey Murashov proposed a change to stackforge/murano-api: Changed tests for murano repository  https://review.openstack.org/8506110:54
*** gokrokve has joined #murano10:59
openstackgerritA change was merged to stackforge/murano-api: Launch murano-engine with Murano services  https://review.openstack.org/8949510:59
*** rakhmerov has quit IRC11:01
*** rakhmerov has joined #murano11:02
*** gokrokve has quit IRC11:04
*** rakhmerov has quit IRC11:15
openstackgerritSergey Murashov proposed a change to stackforge/murano-api: Changed tests for murano repository  https://review.openstack.org/8506111:21
openstackgerritAnastasia Kuznetsova proposed a change to stackforge/murano-docs: Edit 'Environment' chapter in user-guide  https://review.openstack.org/8953711:22
openstackgerritTimur Nurlygayanov proposed a change to stackforge/murano-dashboard: Fixed issue with incorrect title  https://review.openstack.org/8953811:25
*** julienvey has joined #murano11:27
*** igormarnat has quit IRC11:34
*** igormarnat has joined #murano11:35
*** katyafervent has quit IRC11:36
*** katyafervent has joined #murano11:36
openstackgerritSergey Murashov proposed a change to stackforge/murano-api: Changed tests for murano repository  https://review.openstack.org/8506111:38
openstackgerritSergey Murashov proposed a change to stackforge/murano-api: Changed tests for murano repository  https://review.openstack.org/8506111:53
*** killer_prince has quit IRC11:57
*** gokrokve has joined #murano11:59
openstackgerritTimur Sufiev proposed a change to stackforge/murano-dashboard: Make Search query ignore current category  https://review.openstack.org/8935812:01
*** sab has quit IRC12:03
*** gokrokve has quit IRC12:04
*** rakhmerov has joined #murano12:12
openstackgerritAnastasia Kuznetsova proposed a change to stackforge/murano-docs: Edit 'Environment' chapter in user-guide  https://review.openstack.org/8953712:14
openstackgerritAnastasia Kuznetsova proposed a change to stackforge/murano-docs: Edit 'Environment' chapter in user-guide  https://review.openstack.org/8953712:17
*** rakhmerov has quit IRC12:24
*** joefides has quit IRC12:32
openstackgerritTimur Sufiev proposed a change to stackforge/murano-dashboard: Move 'Statistics' panel to the 'Deployment' dashboard  https://review.openstack.org/8955112:43
openstackgerritA change was merged to stackforge/murano-docs: Edit 'Environment' chapter in user-guide  https://review.openstack.org/8953712:45
*** slagun has joined #murano12:56
*** lazy_prince has joined #murano12:58
*** lazy_prince is now known as killer_prince12:58
*** stan_lagun has quit IRC13:00
*** rakhmerov has joined #murano13:00
*** gokrokve has joined #murano13:00
*** joefides has joined #murano13:01
*** gokrokve has quit IRC13:04
openstackgerritTimur Sufiev proposed a change to stackforge/murano-dashboard: Move 'Statistics' panel to the 'Deployment' dashboard  https://review.openstack.org/8955113:08
openstackgerritTimur Sufiev proposed a change to stackforge/murano-dashboard: Move 'Statistics' panel to the 'Deployment' dashboard  https://review.openstack.org/8955113:14
openstackgerritTimur Sufiev proposed a change to stackforge/murano-dashboard: Hide administrative panels from regular users  https://review.openstack.org/8956513:18
openstackgerritTimur Sufiev proposed a change to stackforge/murano-dashboard: Move 'Statistics' panel to the 'Deployment' dashboard  https://review.openstack.org/8955113:24
openstackgerritTimur Sufiev proposed a change to stackforge/murano-dashboard: Hide administrative panels from regular users  https://review.openstack.org/8956513:24
openstackgerritTimur Sufiev proposed a change to stackforge/murano-api: Fix murano-manage import-package  https://review.openstack.org/8957613:52
*** rakhmerov has quit IRC13:59
*** gokrokve has joined #murano14:01
openstackgerritEkaterina Fedorova proposed a change to stackforge/murano-dashboard: Add last step to manage redirect on form submission  https://review.openstack.org/8948614:06
*** gokrokve has quit IRC14:06
openstackgerritTimur Sufiev proposed a change to stackforge/murano-api: Fix murano-manage import-package  https://review.openstack.org/8957614:11
*** drupalmonkey has joined #murano14:16
*** chandan_kumar has quit IRC14:17
openstackgerritSergey Kolekonov proposed a change to stackforge/murano-deployment: murano-ci jobs and scripts were added  https://review.openstack.org/8958414:19
openstackgerritSergey Kolekonov proposed a change to stackforge/murano-deployment: murano-ci jobs and scripts were added  https://review.openstack.org/8958414:22
*** sjmc7 has joined #murano14:25
openstackgerritTimur Sufiev proposed a change to stackforge/murano-api: Update ActiveDirectory UI to the last changes  https://review.openstack.org/8959114:34
*** gokrokve has joined #murano14:40
openstackgerritSerg Melikyan proposed a change to stackforge/murano-api: Fixed name of the log file on VM  https://review.openstack.org/8959914:51
openstackgerritSerg Melikyan proposed a change to stackforge/murano-api: Fix issue with keystone  https://review.openstack.org/8934514:55
*** IlyaE has joined #murano15:02
*** rakhmerov has joined #murano15:56
*** IlyaE has quit IRC15:56
*** rakhmerov has quit IRC16:00
*** IlyaE has joined #murano16:01
*** chandan_kumar has joined #murano16:11
*** chandan_kumar has quit IRC16:20
*** rakhmerov has joined #murano16:23
*** ankurrr has joined #murano16:32
*** shakamunyi has joined #murano16:38
*** shakamunyi has quit IRC16:38
*** shakamunyi has joined #murano16:43
ruheweekly meeting will start in 20 minutes at #openstack-meeting-alt16:43
ruheplease take a look at the agenda before the meeting https://wiki.openstack.org/wiki/Meetings/MuranoAgenda16:44
ruheit's bigger than usual16:45
ruhemeeting starts in a minute17:01
ruheat #openstack-meeting-alt17:01
sergmelikyanjulienvey, Hi :) May be you will be interested in Murano 0.5 demo, please take a look at: https://drive.google.com/a/mirantis.com/file/d/0B3F5XCmYtnRdWDdET1EzX2xIeWs/edit17:01
julienveysergmelikyan: that's exactly what I was looking for =P17:03
julienveysergmelikyan: thanks!17:03
openstackgerritA change was merged to stackforge/murano-api: Fix issue with keystone  https://review.openstack.org/8934517:06
*** julienvey has quit IRC17:09
openstackgerritA change was merged to stackforge/murano-api: Fix murano-manage import-package  https://review.openstack.org/8957617:27
*** rakhmerov has quit IRC17:29
*** IlyaE has quit IRC17:40
*** chandan_kumar has joined #murano17:52
*** julienvey has joined #murano18:00
*** rakhmerov has joined #murano18:00
*** julienvey has quit IRC18:00
*** julienvey has joined #murano18:00
sjmc7thanks for getting through everything18:01
sergmelikyanIt was very intense :)18:02
ruhesjmc7: thank you for the list. it's great to have real-worl usecases18:02
igormarnatsjm7: thank you!18:02
*** IlyaE has joined #murano18:02
slagunI'd like to suggest several DSL improvements to be included in 0.518:02
ruhesjmc7: btw, did read that thread about Murano, Heat and TOSCA18:02
ruhe?18:02
sjmc7no problem. i appreciate your receptiveness18:02
igormarnatWe'll need to allocate more time to discuss an approach and first steps towards Tosca and Misral18:02
sergmelikyanLet's discuss any technical details in IRC any time, and decide to call for some feature-specific meetings after some draft is available18:02
sjmc7ruhe - yeah, i have been following it a bit. i think HP has been pushing TOSCA pretty hard18:03
igormarnatslagun, are you sure you mean 0.5?18:03
slagunyes. They are small but important18:04
slagun1. Rename Workflows to Methods in MuranoPL18:04
ruhesjmc7: i'd like to have more feedback on TOSCA from people running production catalogues. there is an interesting thread "[openstack-dev] [Heat] Design summit preparation - Next steps for Heat Software Orchestration"18:04
slagun2. Make images be a class object rather than string value18:04
sjmc7i know one of the people working on that in Heat works at HP and will be at the summit18:05
igormarnatslagun, are there bug ids?18:06
sjmc7ruhe - what in particular are you interested in?18:06
sjmc7requirements? experience?18:07
igormarnatsjmc7: I think there are several questions for us, one of important is workflows18:07
sergmelikyanslagun, we have pretty limited time for 0.5: IceHouse is released and a few days till summit...18:07
ruhesjmc7: TOSCA seems like a nice fit for static things, but i'd like to have more examples/documentation about dynamic things - workflows and events (lifecycle)18:07
sjmc7igormarnat - yeah. i know there's been a lot of discussion about overlaps in murano/mistral/heat18:07
sjmc7as far as my experience goes, tosca is indeed just static things, so it'd be a replacement for HOT i guess18:08
sjmc7i'm not sure what it gives you above HOT18:08
sergmelikyansjmc7, May be we can we meet in Hangouts with you and guy you had mentioned? :) I think it will be much more productive.18:08
igormarnatyep, we are going to figure out what can be done using HOT/Tosca in combination with Mistral18:08
sergmelikyanTOSCA has workflows based on BPEL18:08
sjmc7sergmelikyan - yeah, i can see when he's available18:09
slagunI think those 2 improvements would take 2-3 hours combined to implement but would eliminate many question that would arise otherwise18:09
slagunit is hard to explain why it is so important not to have 'w' in image name18:10
sergmelikyanslagun, if you have time let's discuss improvements you had mentioned - I may work on them at my free time. If we will finish them on time - good.18:10
sergmelikyanslagun, it is very important :) ativelkov commented this as "WTF?!" when saw :)18:10
slagunI know. That looks really awkward18:11
igormarnatsjmc7, btw, did you have a chance to take a look at scenarios which are missing in new DSL?18:12
sjmc7igormarnat - no, i have not - i'm just getting to grips with the current DSL this week18:12
sjmc7i was getting engine errors yesterday because it can't find the base classes so i need to get that straightened out first18:13
*** rakhmerov has quit IRC18:14
igormarnatOk, it's somewhat hard time - a lot of changes arriving18:14
sergmelikyansjmc7, https://review.openstack.org/89576 fixed today :( So if you had imported io.murano from CLI this is the issue18:14
sjmc7yeah, igormarnat - after the 0.5 release i'm hoping it'll be a bit more stable18:15
sjmc7aaaah, that might be it sergmelikyan18:15
sjmc7i was checking i hadn't done anything stupid before asking you guys :)18:15
*** ativelkov is now known as ativelkov_away18:25
*** ativelkov_away is now known as ativelkov18:25
*** chandan_kumar has quit IRC18:29
*** ativelkov is now known as ativelkov_away18:30
*** gokrokve has quit IRC18:33
*** rakhmerov has joined #murano18:40
*** rakhmerov has quit IRC18:42
*** rakhmerov has joined #murano18:42
*** rakhmerov has quit IRC18:46
*** openstackgerrit has quit IRC18:49
*** openstackgerrit has joined #murano18:49
*** chandan_kumar has joined #murano18:53
*** IlyaE has quit IRC18:56
*** ativelkov_away is now known as ativelkov19:03
*** ativelkov is now known as ativelkov_away19:08
*** chandan_kumar has quit IRC19:17
*** IlyaE has joined #murano19:19
*** gokrokve has joined #murano19:21
*** ativelkov_away is now known as ativelkov19:25
*** ativelkov is now known as ativelkov_away19:32
*** shakamunyi has quit IRC19:33
*** shakamunyi has joined #murano19:35
*** IlyaE has quit IRC19:38
*** rakhmerov has joined #murano19:43
*** rakhmerov has quit IRC19:47
*** ativelkov_away is now known as ativelkov19:55
*** ativelkov is now known as ativelkov_away20:00
*** TravT has joined #murano20:07
*** IlyaE has joined #murano20:07
*** TravT has quit IRC20:25
*** ativelkov_away is now known as ativelkov20:27
*** ativelkov is now known as ativelkov_away20:33
*** rakhmerov has joined #murano20:44
*** IlyaE has quit IRC20:44
*** rakhmerov has quit IRC20:48
*** TravT has joined #murano20:51
*** TravT has quit IRC20:55
*** ativelkov_away is now known as ativelkov20:55
*** TravT has joined #murano20:55
*** asalkeld has joined #murano20:56
*** ativelkov is now known as ativelkov_away21:02
*** julienvey has quit IRC21:12
*** IlyaE has joined #murano21:16
*** joefides has quit IRC21:20
*** asalkeld has quit IRC21:25
*** ativelkov_away is now known as ativelkov21:27
*** ativelkov is now known as ativelkov_away21:33
*** IlyaE has quit IRC21:39
*** rakhmerov has joined #murano21:44
*** rakhmerov has quit IRC21:49
*** ativelkov_away is now known as ativelkov21:55
*** ativelkov is now known as ativelkov_away22:01
*** IlyaE has joined #murano22:13
*** ativelkov_away is now known as ativelkov22:27
*** ativelkov is now known as ativelkov_away22:33
*** IlyaE has quit IRC22:38
*** rakhmerov has joined #murano22:45
*** IlyaE has joined #murano22:46
*** rakhmerov has quit IRC22:49
*** ativelkov_away is now known as ativelkov22:55
*** gokrokve has quit IRC22:56
*** ativelkov is now known as ativelkov_away23:00
*** joefides has joined #murano23:12
*** joefides has quit IRC23:13
*** joefides has joined #murano23:13
*** gokrokve has joined #murano23:20
*** ativelkov_away is now known as ativelkov23:27
*** ativelkov is now known as ativelkov_away23:33
*** gokrokve_ has joined #murano23:36
*** gokrokve has quit IRC23:39
*** rakhmerov has joined #murano23:46
*** rakhmerov has quit IRC23:51
*** ativelkov_away is now known as ativelkov23:55

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