*** neatherweb has joined #heat | 00:27 | |
openstackgerrit | Merged openstack/heat: Remove heat.openstack.common.notifier supports https://review.openstack.org/329594 | 00:36 |
---|---|---|
*** sdake has joined #heat | 00:58 | |
*** zhurong has joined #heat | 01:00 | |
*** eldon_ has quit IRC | 01:06 | |
*** KanagarajM has joined #heat | 01:09 | |
*** sdake has quit IRC | 01:14 | |
*** sdake has joined #heat | 01:16 | |
*** sdake_ has joined #heat | 01:22 | |
*** sdake has quit IRC | 01:24 | |
*** KanagarajM has quit IRC | 01:27 | |
*** bana_k has quit IRC | 01:33 | |
*** sinasadeghi has joined #heat | 01:43 | |
*** yanyanhu has joined #heat | 01:44 | |
sinasadeghi | hello there | 01:44 |
sinasadeghi | one of our customers is reporting an issue with heat where they have defined custom resource types using this http://docs.openstack.org/developer/heat/template_guide/composition.html#use-the-template-filename-as-type guide | 01:44 |
sinasadeghi | but they have mentioned that if they use relative path, the path actually gets expanded by the heatclient, so if two people from the team run the same command, the path will change and recreate a bunch of stuff in subtemplates just based on the path change | 01:46 |
sinasadeghi | is there any way to stop this from happening? | 01:46 |
openstackgerrit | Jamie Lennox proposed openstack/heat: Sync context with oslo.context https://review.openstack.org/268420 | 01:46 |
*** elynn has joined #heat | 01:50 | |
*** elynn has quit IRC | 01:55 | |
*** elynn has joined #heat | 01:56 | |
sdake_ | stevebaker have quick python question for you if your available | 02:10 |
sdake_ | or zaneb if yur working at this hour :) | 02:11 |
*** neatherweb has quit IRC | 02:15 | |
*** sdake has joined #heat | 02:16 | |
*** sdake_ has quit IRC | 02:19 | |
*** sinasadeghi has quit IRC | 02:21 | |
*** eldon_ has joined #heat | 02:22 | |
*** wangbo has joined #heat | 02:35 | |
*** dyasny has quit IRC | 02:39 | |
*** wangbo has quit IRC | 02:40 | |
*** rustyeddy has joined #heat | 02:46 | |
*** rusty has joined #heat | 02:47 | |
*** rusty is now known as Guest67481 | 02:48 | |
*** rustyeddy has quit IRC | 02:50 | |
*** wangbo has joined #heat | 02:52 | |
*** zhurong_ has joined #heat | 02:53 | |
*** zhurong has quit IRC | 02:56 | |
*** wangbo has quit IRC | 02:57 | |
stevebaker | sdake: sure | 02:58 |
sdake | stevebaker i actually figred it out thanks :) | 02:58 |
sdake | hows life treating you | 02:59 |
stevebaker | good, just got back from a run | 02:59 |
sdake | the only exercise i get is at summit | 03:00 |
sdake | 12k steps a day | 03:00 |
sdake | pretty grueling | 03:01 |
stevebaker | lol, dprince convinced me to go on a morning run and swim at summit | 03:01 |
sdake | actually I do have a quick q | 03:02 |
stevebaker | shoot | 03:03 |
*** jamielennox is now known as jamielennox|away | 03:03 | |
sdake | http://paste.openstack.org/show/516769/ | 03:03 |
sdake | this is my dataset | 03:03 |
sdake | I have another data set which lists containers to rebuild | 03:04 |
sdake | I want to rebuild all their children | 03:04 |
sdake | example: heat-base would reubild all heat containers | 03:04 |
sdake | how do I parse the json above | 03:05 |
sdake | i've managed to read it in even though it wasn't serialized | 03:05 |
*** neatherweb has joined #heat | 03:05 | |
sdake | i tried iteritems and that just returns key and value for the first level | 03:05 |
sdake | as you can see there are 4 levels | 03:05 |
sdake | is recursion the only way to solve this? | 03:06 |
stevebaker | probably the easiest way, yeah | 03:06 |
sdake | surpised there isn't something built in :) | 03:07 |
stevebaker | there probably is, but zaneb isn't here ;) | 03:08 |
sdake | lol | 03:08 |
* sdake hates recursion | 03:08 | |
*** jcoufal has joined #heat | 03:08 | |
*** neatherweb has quit IRC | 03:17 | |
*** KanagarajM has joined #heat | 03:17 | |
*** neatherweb has joined #heat | 03:17 | |
*** jamielennox|away is now known as jamielennox | 03:19 | |
sdake | stevebaker do you think this would convert a string blob into json | 03:26 |
sdake | deps = open('deps.json').read().replace('\n', '').replace(' ', '') | 03:26 |
sdake | deps_encoded = json.loads(deps) | 03:26 |
*** tochi has quit IRC | 03:36 | |
stevebaker | sdake: you shouldn't need to replace any whitespace | 03:42 |
sdake | its not working either way | 03:42 |
sdake | it works if i hand edit my file to replace ' with "" | 03:42 |
sdake | but that kind of sucks | 03:42 |
sdake | it doesn't get serialized properly | 03:43 |
stevebaker | oh yeah, json spec says " only | 03:43 |
stevebaker | browsers accept any old junk, json parsers tend to be more strict | 03:43 |
sdake | with open('deps.json') as deps: | 03:44 |
sdake | deps = json.loads(deps.read().replace("'", "\"")) | 03:44 |
sdake | this is what I came up with ;) | 03:44 |
*** tochi has joined #heat | 04:01 | |
*** elynn has quit IRC | 04:09 | |
stevebaker | sdake: just make it valid json and be done with it! ;) | 04:11 |
sdake | that goes in the too hard bin | 04:11 |
sdake | check out this beast | 04:15 |
sdake | with open('changes.json') as changes: | 04:15 |
sdake | changes = json.loads(changes.read().replace("'", "\"").replace('[\'u', '')) | 04:15 |
*** links has joined #heat | 04:20 | |
sdake | 130 containers | 04:20 |
* sdake whews | 04:20 | |
*** rusty has joined #heat | 04:27 | |
*** rusty is now known as Guest98020 | 04:27 | |
*** Guest67481 has quit IRC | 04:28 | |
openstackgerrit | Rico Lin proposed openstack/heat: Remove deprecated auth_plugin config https://review.openstack.org/329573 | 04:28 |
sdake | yay it works | 04:30 |
sdake | python ./make* | 04:30 |
sdake | match found magnum-api | 04:30 |
sdake | match found glance-base | 04:30 |
sdake | time for bed | 04:30 |
*** cwolferh has quit IRC | 04:39 | |
*** yuanying has quit IRC | 04:41 | |
*** sdake_ has joined #heat | 04:50 | |
*** sdake has quit IRC | 04:53 | |
*** tochi has quit IRC | 04:53 | |
*** tochi has joined #heat | 05:02 | |
*** neatherweb has quit IRC | 05:03 | |
*** neatherweb has joined #heat | 05:04 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat-specs: OpenStack Heat Orchestration Template (HOT) Generator https://review.openstack.org/328822 | 05:13 |
*** elynn has joined #heat | 05:16 | |
*** neatherweb has quit IRC | 05:19 | |
*** elynn has quit IRC | 05:20 | |
*** elynn has joined #heat | 05:21 | |
*** elynn has quit IRC | 05:24 | |
*** links has quit IRC | 05:27 | |
*** elynn has joined #heat | 05:27 | |
*** sdake has joined #heat | 05:27 | |
*** links has joined #heat | 05:28 | |
*** sdake_ has quit IRC | 05:31 | |
*** Guest98020 has quit IRC | 05:36 | |
*** sdake_ has joined #heat | 05:38 | |
*** sdake has quit IRC | 05:41 | |
*** sdake has joined #heat | 05:48 | |
*** sdake_ has quit IRC | 05:50 | |
*** sdake has quit IRC | 05:52 | |
*** mohankumar has quit IRC | 05:54 | |
*** akuznetsov has joined #heat | 06:00 | |
*** ccamacho has joined #heat | 06:00 | |
*** yuanying has joined #heat | 06:02 | |
*** bana_k has joined #heat | 06:15 | |
*** cllewellyn_ has joined #heat | 06:22 | |
*** cllewellyn__ has joined #heat | 06:22 | |
*** duvarenkov__ has quit IRC | 06:22 | |
*** rcernin has joined #heat | 06:23 | |
openstackgerrit | Rico Lin proposed openstack/heat: Remove deprecated auth_plugin config https://review.openstack.org/329573 | 06:26 |
*** cllewellyn_ has quit IRC | 06:26 | |
*** cllewellyn__ has quit IRC | 06:26 | |
openstackgerrit | Rico Lin proposed openstack/heat: Remove deprecated auth_plugin config https://review.openstack.org/329573 | 06:28 |
*** zeih has joined #heat | 06:28 | |
*** duvarenkov has joined #heat | 06:32 | |
therve | stevebaker, Awesome for https://review.openstack.org/#/c/330800/ | 06:37 |
therve | Started looking at it too, I may post some changes | 06:37 |
*** ramishra has joined #heat | 06:39 | |
*** ramishra has quit IRC | 06:44 | |
openstackgerrit | Rabi Mishra proposed openstack/heat: Support rolling update for SDG https://review.openstack.org/330467 | 06:45 |
*** ramishra has joined #heat | 06:47 | |
openstackgerrit | Sirushti Murugesan proposed openstack/heat: Add period property to Monasca Notification resource https://review.openstack.org/325147 | 06:49 |
openstackgerrit | Sirushti Murugesan proposed openstack/heat: Add releasenotes for monasca period property https://review.openstack.org/330908 | 06:49 |
*** elynn_ has joined #heat | 06:55 | |
*** elynn has quit IRC | 06:57 | |
*** fragatina has quit IRC | 06:59 | |
*** yuanying has quit IRC | 07:02 | |
openstackgerrit | Sirushti Murugesan proposed openstack/heat: Add period property to Monasca Notification resource https://review.openstack.org/325147 | 07:04 |
*** ramishra has quit IRC | 07:04 | |
*** bana_k has quit IRC | 07:05 | |
*** jprovazn has joined #heat | 07:20 | |
*** ramishra has joined #heat | 07:21 | |
*** jprovazn has quit IRC | 07:21 | |
*** vincentll has joined #heat | 07:23 | |
*** dmk0202 has joined #heat | 07:32 | |
*** dmk0202 has quit IRC | 07:33 | |
*** sorantis has joined #heat | 07:35 | |
*** dbecker has quit IRC | 07:43 | |
*** dbecker has joined #heat | 07:45 | |
*** rcernin has quit IRC | 07:45 | |
*** ramishra has quit IRC | 07:53 | |
*** ramishra has joined #heat | 07:55 | |
*** ramishra has quit IRC | 07:59 | |
*** zzzeek has quit IRC | 08:00 | |
*** akuznetsov has quit IRC | 08:00 | |
*** zzzeek has joined #heat | 08:00 | |
openstackgerrit | huangtianhua proposed openstack/heat: [api-ref] Correct stack-list api-ref https://review.openstack.org/330940 | 08:00 |
*** ramishra has joined #heat | 08:04 | |
*** yuanying has joined #heat | 08:05 | |
*** rcernin has joined #heat | 08:09 | |
*** tochi has quit IRC | 08:13 | |
*** ananta has joined #heat | 08:13 | |
*** ramishra has quit IRC | 08:16 | |
*** ameade has quit IRC | 08:21 | |
*** ramishra has joined #heat | 08:21 | |
*** ameade has joined #heat | 08:22 | |
*** tochi has joined #heat | 08:24 | |
*** dmk0202 has joined #heat | 08:27 | |
openstackgerrit | Rabi Mishra proposed openstack/heat: Use keystone session from context in client plugin https://review.openstack.org/325752 | 08:29 |
openstackgerrit | Rabi Mishra proposed openstack/heat: Add keystone_session property to context https://review.openstack.org/325751 | 08:29 |
*** coreyob has quit IRC | 08:39 | |
*** mohankumar_ has joined #heat | 08:40 | |
openstackgerrit | huangtianhua proposed openstack/heat: Show 'deletion_time' for stack-list/stack-show apis https://review.openstack.org/323097 | 08:40 |
*** jdandrea_ has quit IRC | 08:41 | |
*** harlowja_ has quit IRC | 08:41 | |
*** Tristitia has quit IRC | 08:42 | |
*** ishant|away has quit IRC | 08:42 | |
*** ishant|away has joined #heat | 08:42 | |
*** kirankv has quit IRC | 08:42 | |
*** kirankv has joined #heat | 08:42 | |
*** mdavidson has quit IRC | 08:43 | |
*** aignatov has quit IRC | 08:43 | |
*** SergeyLukjanov2 has joined #heat | 08:43 | |
*** SergeyLukjanov has quit IRC | 08:43 | |
*** xek has quit IRC | 08:43 | |
*** SergeyLukjanov2 is now known as SergeyLukjanov | 08:43 | |
*** jdandrea has joined #heat | 08:43 | |
*** aignatov has joined #heat | 08:43 | |
*** ramishra has quit IRC | 08:43 | |
*** xek has joined #heat | 08:44 | |
*** mtreinish has quit IRC | 08:44 | |
*** mdavidson has joined #heat | 08:45 | |
*** Tristitia has joined #heat | 08:45 | |
*** mtreinish has joined #heat | 08:46 | |
*** coreyob has joined #heat | 08:46 | |
*** yassine__ has joined #heat | 08:48 | |
*** elynn_ has quit IRC | 08:49 | |
*** eldon_ has quit IRC | 08:51 | |
openstackgerrit | huangtianhua proposed openstack/heat: Don't use stored context to reset stacks https://review.openstack.org/320348 | 08:53 |
*** elynn has joined #heat | 08:53 | |
*** ramishra has joined #heat | 08:54 | |
*** elynn has quit IRC | 08:57 | |
*** elynn has joined #heat | 08:58 | |
*** ramishra has quit IRC | 08:59 | |
*** ramishra has joined #heat | 09:00 | |
*** mohankumar_ has quit IRC | 09:02 | |
*** yanyanhu has quit IRC | 09:03 | |
*** yanyanhu has joined #heat | 09:04 | |
*** yanyanhu has quit IRC | 09:04 | |
*** eldon_ has joined #heat | 09:07 | |
*** openstackgerrit has quit IRC | 09:18 | |
*** openstackgerrit has joined #heat | 09:19 | |
*** alex_xu has quit IRC | 09:26 | |
*** alex_xu has joined #heat | 09:28 | |
openstackgerrit | Rabi Mishra proposed openstack/heat: Support rolling update for SDG https://review.openstack.org/330467 | 09:30 |
*** mohankumar has joined #heat | 09:35 | |
openstackgerrit | huangtianhua proposed openstack/heat: Don't use stored context to reset stacks https://review.openstack.org/320348 | 09:42 |
*** eldon_ has quit IRC | 09:47 | |
*** ramishra has quit IRC | 09:59 | |
*** zeih has quit IRC | 10:03 | |
*** openstackgerrit has quit IRC | 10:03 | |
*** openstackgerrit has joined #heat | 10:04 | |
*** ramishra has joined #heat | 10:05 | |
*** rcernin has quit IRC | 10:05 | |
*** zhurong_ has quit IRC | 10:06 | |
*** zeih has joined #heat | 10:09 | |
*** KanagarajM has quit IRC | 10:16 | |
*** Adri2000 has quit IRC | 10:18 | |
*** ramishra has quit IRC | 10:36 | |
*** ramishra has joined #heat | 10:37 | |
*** prazumovsky has joined #heat | 10:38 | |
*** ramishra has quit IRC | 10:45 | |
*** permalac has joined #heat | 10:47 | |
*** sabeen1 has joined #heat | 10:48 | |
*** ramishra has joined #heat | 10:49 | |
*** ramishra has quit IRC | 10:50 | |
*** ramishra has joined #heat | 10:56 | |
*** jnettlet has joined #heat | 10:56 | |
*** Adri2000 has joined #heat | 10:59 | |
*** elynn has quit IRC | 10:59 | |
openstackgerrit | Dmitriy Uvarenkov proposed openstack/heat: Deprecate lbaas v1 resources https://review.openstack.org/317380 | 11:10 |
*** huangtianhua has quit IRC | 11:28 | |
*** tiantian has joined #heat | 11:29 | |
*** ananta has quit IRC | 11:33 | |
*** DevBox has joined #heat | 11:44 | |
*** rcernin has joined #heat | 11:47 | |
*** zhurong has joined #heat | 11:47 | |
*** zhurong has quit IRC | 11:48 | |
*** sabeen1 has quit IRC | 11:54 | |
*** DevBox has quit IRC | 11:56 | |
openstackgerrit | Merged openstack/heat: Add period property to Monasca Notification resource https://review.openstack.org/325147 | 12:01 |
*** ramishra has quit IRC | 12:02 | |
*** dmk0202 has quit IRC | 12:05 | |
*** pradk has joined #heat | 12:06 | |
*** pradk has quit IRC | 12:07 | |
*** ramishra has joined #heat | 12:07 | |
*** pradk has joined #heat | 12:13 | |
*** dprince has joined #heat | 12:19 | |
*** ramishra has quit IRC | 12:25 | |
openstackgerrit | Rabi Mishra proposed openstack/heat: Add functional test for SDG rolling_update https://review.openstack.org/330468 | 12:29 |
openstackgerrit | Rabi Mishra proposed openstack/heat: Add rolling update for SDG https://review.openstack.org/330467 | 12:29 |
*** ramishra has joined #heat | 12:31 | |
*** ramishra has quit IRC | 12:48 | |
*** pradk has quit IRC | 12:50 | |
*** uroso has quit IRC | 12:51 | |
*** ccamacho is now known as ccamacho|lunck | 12:53 | |
*** ccamacho|lunck is now known as ccamacho|lunch | 12:54 | |
*** dyasny has joined #heat | 13:03 | |
openstackgerrit | Merged openstack/heat: Deprecate lbaas v1 resources https://review.openstack.org/317380 | 13:07 |
openstackgerrit | Merged openstack/heat: [api-ref] Correct stack-list api-ref https://review.openstack.org/330940 | 13:07 |
*** zhurong has joined #heat | 13:08 | |
*** mwheckmann has joined #heat | 13:14 | |
*** akshai has joined #heat | 13:23 | |
*** tochi has quit IRC | 13:35 | |
*** links has quit IRC | 13:46 | |
*** fragatina has joined #heat | 13:49 | |
*** fragatin_ has joined #heat | 13:50 | |
*** fragatina has quit IRC | 13:54 | |
*** zhurong has quit IRC | 13:55 | |
*** pradk has joined #heat | 13:56 | |
*** zhurong has joined #heat | 13:56 | |
*** zhurong has quit IRC | 14:00 | |
*** prazumovsky has quit IRC | 14:05 | |
*** zhurong has joined #heat | 14:07 | |
*** sdake has joined #heat | 14:12 | |
mohankumar | openstack-neutron | 14:13 |
*** jasond has joined #heat | 14:14 | |
*** spotz_zzz is now known as spotz | 14:15 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/python-heatclient: Updated from global requirements https://review.openstack.org/331178 | 14:20 |
*** ccamacho|lunch is now known as ccamacho | 14:22 | |
*** randallburt has joined #heat | 14:35 | |
*** zz_dimtruck is now known as dimtruck | 14:36 | |
*** zhurong has quit IRC | 14:36 | |
*** randallburt1 has joined #heat | 14:36 | |
*** randallburt has quit IRC | 14:39 | |
*** dprince has quit IRC | 14:42 | |
*** dprince has joined #heat | 14:43 | |
*** duvarenkov has quit IRC | 14:46 | |
*** sorantis has quit IRC | 14:52 | |
*** duvarenkov has joined #heat | 14:53 | |
*** ramishra has joined #heat | 14:54 | |
*** daneyon has joined #heat | 14:55 | |
*** vijendar has joined #heat | 14:58 | |
*** vincentll has quit IRC | 15:02 | |
*** rcernin has quit IRC | 15:07 | |
*** dprince has quit IRC | 15:08 | |
*** spotz is now known as spotz_zzz | 15:08 | |
*** dprince has joined #heat | 15:09 | |
*** rustyeddy has joined #heat | 15:10 | |
*** dprince has quit IRC | 15:11 | |
*** rusty has joined #heat | 15:13 | |
*** rusty is now known as Guest35265 | 15:13 | |
*** eldon_ has joined #heat | 15:16 | |
*** rustyeddy has quit IRC | 15:16 | |
*** sdake has quit IRC | 15:20 | |
*** afazekas|dentist is now known as afazekas | 15:25 | |
*** zeih has quit IRC | 15:25 | |
*** sdake has joined #heat | 15:51 | |
*** daneyon has quit IRC | 15:56 | |
*** spotz_zzz is now known as spotz | 15:59 | |
*** permalac has quit IRC | 16:03 | |
*** jasond has quit IRC | 16:04 | |
*** jasond has joined #heat | 16:05 | |
openstackgerrit | Ying Zuo proposed openstack/heat: Fix create/update keystone endpoint with service name https://review.openstack.org/303628 | 16:06 |
openstackgerrit | Petr Kovar proposed openstack/heat: Add launch-instance to install-guide https://review.openstack.org/331245 | 16:07 |
*** sdake has quit IRC | 16:07 | |
*** dmk0202 has joined #heat | 16:09 | |
*** mdavidson has quit IRC | 16:11 | |
*** eldon_ has quit IRC | 16:11 | |
*** Guest35265 has quit IRC | 16:18 | |
*** ramishra has quit IRC | 16:22 | |
*** dprince has joined #heat | 16:28 | |
-openstackstatus- NOTICE: zuul was restarted for a software upgrade; events between 16:08 and 16:30 were missed, please recheck any changes uploaded during that time | 16:32 | |
*** sabeen has joined #heat | 16:32 | |
*** sabeen1 has joined #heat | 16:34 | |
*** sabeen has quit IRC | 16:36 | |
*** mohankumar has quit IRC | 16:41 | |
*** harlowja has joined #heat | 16:53 | |
*** bana_k has joined #heat | 16:56 | |
*** cwolferh has joined #heat | 17:02 | |
openstackgerrit | Merged openstack/heat: Updated from global requirements https://review.openstack.org/331164 | 17:11 |
*** daneyon has joined #heat | 17:16 | |
*** daneyon_ has joined #heat | 17:19 | |
*** daneyon has quit IRC | 17:22 | |
*** dsneddon has quit IRC | 17:25 | |
*** rustyeddy has joined #heat | 17:26 | |
*** rusty has joined #heat | 17:27 | |
*** rusty is now known as Guest46655 | 17:27 | |
*** rustyeddy has quit IRC | 17:30 | |
*** sabeen1 has quit IRC | 17:39 | |
*** sdake has joined #heat | 17:40 | |
*** fragatina has joined #heat | 17:43 | |
*** fragatin_ has quit IRC | 17:43 | |
*** dsneddon has joined #heat | 17:48 | |
*** rustyeddy has joined #heat | 17:49 | |
*** Guest46655 has quit IRC | 17:49 | |
*** Akanksha08 has joined #heat | 17:49 | |
*** ccamacho has quit IRC | 17:52 | |
*** fragatina has quit IRC | 18:00 | |
*** rustyeddy has quit IRC | 18:00 | |
*** fragatina has joined #heat | 18:01 | |
*** rustyeddy has joined #heat | 18:01 | |
*** harlowja has quit IRC | 18:04 | |
*** dprince has quit IRC | 18:06 | |
*** dprince has joined #heat | 18:06 | |
*** ccamacho has joined #heat | 18:08 | |
*** yassine__ has quit IRC | 18:11 | |
*** Akanksha08 has quit IRC | 18:12 | |
*** xiangxinyong has quit IRC | 18:13 | |
*** xiangxinyong has joined #heat | 18:14 | |
*** fragatina has quit IRC | 18:27 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat-specs: Upgrade heat template to latest version mechanism https://review.openstack.org/331296 | 18:28 |
*** vijendar has quit IRC | 18:35 | |
*** rustyeddy has quit IRC | 18:39 | |
*** vijendar has joined #heat | 18:41 | |
*** jdandrea has quit IRC | 18:41 | |
*** jdandrea has joined #heat | 18:41 | |
openstackgerrit | Merged openstack/python-heatclient: Refactor test_shell https://review.openstack.org/327975 | 18:44 |
*** rustyeddy has joined #heat | 18:45 | |
*** ccamacho has quit IRC | 18:50 | |
*** ccamacho has joined #heat | 18:52 | |
*** rustyeddy has quit IRC | 19:01 | |
*** rustyeddy has joined #heat | 19:02 | |
*** fragatina has joined #heat | 19:04 | |
*** vijendar has quit IRC | 19:06 | |
*** vijendar has joined #heat | 19:11 | |
*** shakamunyi has joined #heat | 19:13 | |
*** fragatina has quit IRC | 19:14 | |
*** fragatina has joined #heat | 19:15 | |
*** harlowja has joined #heat | 19:32 | |
*** thumpba has joined #heat | 19:32 | |
*** dimtruck is now known as zz_dimtruck | 19:34 | |
*** randallburt1 has quit IRC | 19:46 | |
*** thumpba has quit IRC | 19:48 | |
*** daneyon_ has quit IRC | 20:06 | |
*** thumpba has joined #heat | 20:07 | |
*** zz_dimtruck is now known as dimtruck | 20:08 | |
*** daneyon has joined #heat | 20:10 | |
*** vijendar has quit IRC | 20:16 | |
*** akshai has quit IRC | 20:18 | |
*** thumpba has quit IRC | 20:19 | |
*** thumpba has joined #heat | 20:20 | |
*** thumpba_ has joined #heat | 20:26 | |
*** vijendar has joined #heat | 20:27 | |
*** thumpba has quit IRC | 20:29 | |
*** mwheckmann has quit IRC | 20:30 | |
openstackgerrit | Merged openstack/heat: Improve translation properties https://review.openstack.org/286098 | 20:36 |
openstackgerrit | Jason Dunsmore proposed openstack/heat: Allow a stack with invalid resolved properties to be updated https://review.openstack.org/324898 | 20:40 |
*** vijendar has quit IRC | 20:46 | |
*** fragatina has quit IRC | 20:47 | |
*** rustyeddy has quit IRC | 20:51 | |
*** crose has joined #heat | 20:52 | |
*** wirehead_ has quit IRC | 20:52 | |
*** vijendar has joined #heat | 20:53 | |
*** fragatina has joined #heat | 20:53 | |
*** crose has quit IRC | 20:57 | |
*** fragatina has quit IRC | 20:57 | |
*** dbecker has quit IRC | 20:58 | |
*** wirehead_ has joined #heat | 21:01 | |
*** wirehead_ has quit IRC | 21:04 | |
*** wirehead_ has joined #heat | 21:11 | |
*** thumpba_ has quit IRC | 21:12 | |
*** dbecker has joined #heat | 21:14 | |
*** vijendar has quit IRC | 21:31 | |
*** dmk0202 has quit IRC | 21:33 | |
*** dmk0202 has joined #heat | 21:34 | |
*** dsneddon has quit IRC | 21:36 | |
*** dprince has quit IRC | 21:36 | |
*** jdob has quit IRC | 21:41 | |
*** Zer0Byte__ has joined #heat | 21:49 | |
Zer0Byte__ | hi | 21:49 |
Zer0Byte__ | im having some issue with murano | 21:49 |
Zer0Byte__ | idk if im on a right place | 21:49 |
*** dmk0202 has quit IRC | 21:50 | |
*** dsneddon has joined #heat | 21:54 | |
*** jcoufal has quit IRC | 21:59 | |
*** dimtruck is now known as zz_dimtruck | 22:13 | |
*** pradk has quit IRC | 22:13 | |
*** fragatina has joined #heat | 22:14 | |
*** fragatin_ has joined #heat | 22:15 | |
*** zz_dimtruck is now known as dimtruck | 22:18 | |
*** jasond has quit IRC | 22:19 | |
*** fragatina has quit IRC | 22:19 | |
*** dimtruck is now known as zz_dimtruck | 22:20 | |
*** jcoufal has joined #heat | 22:30 | |
*** spotz is now known as spotz_zzz | 22:38 | |
*** sdake has quit IRC | 22:38 | |
*** sdake has joined #heat | 22:41 | |
Zer0Byte__ | no one | 22:44 |
*** jcoufal has quit IRC | 23:03 | |
*** fragatin_ has quit IRC | 23:21 | |
*** dbecker has quit IRC | 23:23 | |
*** fragatina has joined #heat | 23:25 | |
*** fragatina has quit IRC | 23:26 | |
*** fragatina has joined #heat | 23:26 | |
*** bana_k has quit IRC | 23:37 | |
*** zz_dimtruck is now known as dimtruck | 23:50 | |
*** fragatina has quit IRC | 23:55 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!