stevebaker | zaneb: could be. I'm seeing OOM kill heat-engine, rabbit or mariadb | 00:02 |
---|---|---|
stevebaker | zaneb: I'll finish this bisect then graph the results, it may show a trend | 00:03 |
*** om has quit IRC | 00:04 | |
*** om has joined #heat | 00:06 | |
*** spzala has joined #heat | 00:07 | |
*** spzala has quit IRC | 00:11 | |
*** spzala has joined #heat | 00:11 | |
*** adrian_otto has joined #heat | 00:30 | |
spzala | stevebaker: Hi | 01:07 |
stevebaker | spzala: hey | 01:08 |
*** jcoufal has quit IRC | 01:09 | |
spzala | stevebaker: long time :-) Hope all's well. Need a help with heat clinet/python if you have a minute pl | 01:09 |
stevebaker | spzala: sure thing | 01:09 |
spzala | stevebaker: thanks!! https://bugs.launchpad.net/heat-translator/+bug/1631060 | 01:09 |
openstack | Launchpad bug 1631060 in Heat Translator "Deployment of CSAR with relative path references does not work" [High,New] | 01:10 |
*** jcoufal has joined #heat | 01:10 | |
spzala | stevebaker: if you can take a quick look, I can explain the scenario outside the hetat-translator too .. but hopefully the bug will give a good idea of the issue we are running into | 01:10 |
spzala | stevebaker: the step number 4 is the one where we run into problem, | 01:11 |
spzala | stevebaker: I was wondering if stack create can take a file path (instead of yaml/json content) and consider that as a base directory to solve the relative paths given in the template file but I guess that's not the case right now | 01:13 |
*** zhurong has joined #heat | 01:14 | |
spzala | stevebaker: I tried few things like using python os.chdir or subprocess before running stack.create code but had no luck | 01:14 |
stevebaker | spzala: it sounds like you're not doing the calls to add the files to the call, you need to be doing this https://github.com/openstack/python-heatclient/blob/master/heatclient/osc/v1/stack.py#L124-L130 | 01:14 |
spzala | stevebaker: https://github.com/openstack/heat-translator/blob/master/translator/shell.py#L218 | 01:15 |
*** adrian_otto has quit IRC | 01:15 | |
stevebaker | spzala: yep, you need to build the files, then specify it in the create call https://github.com/openstack/python-heatclient/blob/master/heatclient/osc/v1/stack.py#L146 | 01:16 |
*** adrian_otto has joined #heat | 01:16 | |
stevebaker | relative paths always use the current template / env file as the base path | 01:16 |
spzala | stevebaker: yes I am sure I am missing something (and I hope so) I tried setting environment but it only doesn't take file path as input right? as I ran into | 01:17 |
spzala | heatclient.exc.HTTPBadRequest: ERROR: Environment not in valid format: The environment is not a valid YAML mapping data type. | 01:17 |
stevebaker | spzala: just copy the exact patterns used for the cli stack create commands | 01:17 |
spzala | stevebaker: oh so use "files" parameter? | 01:18 |
spzala | stevebaker: I tried this but that made my deployment go in timeout mode | 01:19 |
spzala | https://justpaste.it/z2kh | 01:19 |
spzala | (fpaste seems quite right now) | 01:20 |
*** jcoufal has quit IRC | 01:21 | |
spzala | stevebaker: can I able to specify directory? or are you suggesting that get all the files that are needed to resolve relative path and provide them as input to the files? That seems bit difficult because there can be several of files in tosca template with relative path for scripts etc. but can be done i guess by reading translated template get_file | 01:23 |
*** akshai has joined #heat | 01:23 | |
spzala | stevebaker: is there any example out there for https://github.com/openstack/python-heatclient/blob/master/heatclient/osc/v1/stack.py#L146 ? | 01:24 |
*** jcoufal has joined #heat | 01:24 | |
spzala | stevebaker: sorry bombarding with questions | 01:25 |
*** bdeschenes has joined #heat | 01:25 | |
*** vijendar has joined #heat | 01:26 | |
*** akshai_ has joined #heat | 01:26 | |
*** fandi has joined #heat | 01:27 | |
*** akshai has quit IRC | 01:29 | |
*** adrian_otto has quit IRC | 01:31 | |
*** jcoufal has quit IRC | 01:33 | |
*** jcoufal has joined #heat | 01:34 | |
*** bdeschenes has quit IRC | 01:45 | |
*** Zer0Byte__ has quit IRC | 01:46 | |
*** jcoufal has quit IRC | 01:46 | |
stevebaker | spzala: you're looking at the example ;) | 01:50 |
stevebaker | spzala: take a look at template_utils, there may be a way of specifying the base path rather than taking it from the current file location. If not we'd accept patches to make that possible | 01:50 |
*** ayoung has quit IRC | 01:52 | |
spzala | stevebaker: hmmm.. :) by looking at the example you meant the stack.py#146? | 01:52 |
spzala | stevebaker: sure, this one right heatclient/common/template_utils.py ? | 01:53 |
*** bana_k has joined #heat | 01:53 | |
stevebaker | spzala: especially https://github.com/openstack/python-heatclient/blob/master/heatclient/osc/v1/stack.py#L124-L130 | 01:53 |
spzala | stevebaker: sure, I was looking at it actually. one last question before I dig more into template_utils, so for "files" map, what are my key and value (as an example)? | 01:54 |
*** ayoung has joined #heat | 01:55 | |
spzala | stevebaker: key is value of "get_file" ? | 01:55 |
*** jcoufal has joined #heat | 01:55 | |
stevebaker | spzala: yep, you should end up with a files dict where the key is the fully qualified path and the value is the file contents | 01:55 |
spzala | stevebaker: and value is content of the file provided to the get_file? | 01:55 |
stevebaker | yep | 01:56 |
spzala | stevebaker: OK, perfect | 01:56 |
spzala | stevebaker: thank you so much!! I will be working on it and let you know how it goes :). | 01:56 |
stevebaker | ok | 01:56 |
*** jcoufal has quit IRC | 02:00 | |
*** david-lyle has joined #heat | 02:03 | |
*** zhurong has quit IRC | 02:09 | |
*** david-lyle has quit IRC | 02:09 | |
*** bana_k has quit IRC | 02:11 | |
*** om has quit IRC | 02:12 | |
*** vijendar has quit IRC | 02:29 | |
*** bathri-s has joined #heat | 02:32 | |
*** ramishra_ has quit IRC | 02:35 | |
*** zhurong has joined #heat | 02:52 | |
*** fandi has quit IRC | 02:53 | |
*** rajpatel has joined #heat | 02:54 | |
*** adrian_otto has joined #heat | 03:09 | |
openstackgerrit | Merged openstack/heat: Use __slots__ in Parameter classes https://review.openstack.org/382961 | 03:19 |
*** jamielennox is now known as jamielennox|away | 03:21 | |
*** adrian_otto has quit IRC | 03:22 | |
*** vishwanathj has joined #heat | 03:27 | |
*** vishwanathj has quit IRC | 03:27 | |
*** adrian_otto has joined #heat | 03:28 | |
*** adrian_otto has quit IRC | 03:39 | |
*** alex_xu has quit IRC | 03:43 | |
*** alex_xu has joined #heat | 03:43 | |
*** gberginc has joined #heat | 03:48 | |
*** om has joined #heat | 03:50 | |
*** fandi has joined #heat | 03:55 | |
*** sdake_ has joined #heat | 03:58 | |
*** fandi has quit IRC | 04:01 | |
*** sdake has quit IRC | 04:01 | |
*** sdake has joined #heat | 04:05 | |
*** sdake has quit IRC | 04:07 | |
*** sdake_ has quit IRC | 04:07 | |
*** sdake has joined #heat | 04:08 | |
*** akshai_ has quit IRC | 04:11 | |
*** om has quit IRC | 04:11 | |
*** spzala has quit IRC | 04:12 | |
*** spzala has joined #heat | 04:12 | |
*** om has joined #heat | 04:14 | |
*** rajpatel has quit IRC | 04:15 | |
*** spzala has quit IRC | 04:17 | |
*** code-R has joined #heat | 04:20 | |
*** jcoufal has joined #heat | 04:21 | |
*** jcoufal has quit IRC | 04:26 | |
*** code-R_ has joined #heat | 04:32 | |
*** code-R has quit IRC | 04:34 | |
*** code-R_ has quit IRC | 04:37 | |
*** gberginc has quit IRC | 04:40 | |
*** code-R has joined #heat | 04:44 | |
*** ramishra has joined #heat | 04:44 | |
*** sdake_ has joined #heat | 04:45 | |
*** code-R_ has joined #heat | 04:45 | |
*** sdake has quit IRC | 04:47 | |
*** code-R has quit IRC | 04:48 | |
*** code-R_ has quit IRC | 05:00 | |
*** code-R has joined #heat | 05:02 | |
*** jaosorior has joined #heat | 05:13 | |
*** fandi has joined #heat | 05:19 | |
*** code-R has quit IRC | 05:19 | |
*** jamielennox|away is now known as jamielennox | 05:23 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/heat: Updated from global requirements https://review.openstack.org/383111 | 05:30 |
*** gberginc has joined #heat | 05:34 | |
*** fandi__ has joined #heat | 05:40 | |
*** fandi has quit IRC | 05:43 | |
*** bathris has joined #heat | 05:50 | |
*** bathris has quit IRC | 05:51 | |
*** bathri-s has quit IRC | 05:54 | |
*** spzala has joined #heat | 06:13 | |
*** spzala has quit IRC | 06:18 | |
*** mohankumar has joined #heat | 06:18 | |
*** yuanying_ has joined #heat | 06:40 | |
*** jamielennox is now known as jamielennox|away | 06:41 | |
*** yuanying has quit IRC | 06:44 | |
*** code-R has joined #heat | 06:46 | |
*** code-R_ has joined #heat | 06:47 | |
*** jamielennox|away is now known as jamielennox | 06:49 | |
*** sdake has joined #heat | 06:50 | |
*** code-R has quit IRC | 06:51 | |
*** rcernin has joined #heat | 06:51 | |
*** sdake_ has quit IRC | 06:52 | |
*** yprokule has joined #heat | 07:01 | |
*** shardy has joined #heat | 07:04 | |
*** sdake has quit IRC | 07:09 | |
*** ccamacho has joined #heat | 07:10 | |
*** sdake has joined #heat | 07:13 | |
*** jprovazn has joined #heat | 07:13 | |
*** Alexey_Abashkin has joined #heat | 07:13 | |
*** code-R_ has quit IRC | 07:14 | |
*** code-R has joined #heat | 07:14 | |
*** AlexeyAbashkin has quit IRC | 07:16 | |
*** zhurong has quit IRC | 07:26 | |
*** akuznetsov has joined #heat | 07:29 | |
*** jamielennox is now known as jamielennox|away | 07:30 | |
*** jamielennox|away is now known as jamielennox | 07:30 | |
*** jamielennox is now known as jamielennox|away | 07:32 | |
*** jamielennox|away is now known as jamielennox | 07:32 | |
*** fandi__ has quit IRC | 07:33 | |
*** fandi has joined #heat | 07:40 | |
*** fandi has quit IRC | 07:41 | |
*** fandi has joined #heat | 07:41 | |
*** fandi has quit IRC | 07:42 | |
*** fandi has joined #heat | 07:43 | |
*** yuanying_ has quit IRC | 07:44 | |
*** jpich has joined #heat | 07:48 | |
*** zhurong has joined #heat | 07:50 | |
*** blues-man has joined #heat | 07:56 | |
*** zzzeek has quit IRC | 08:00 | |
*** zzzeek has joined #heat | 08:00 | |
*** sdake_ has joined #heat | 08:09 | |
*** sdake has quit IRC | 08:10 | |
*** akuznetsov has quit IRC | 08:11 | |
*** code-R has quit IRC | 08:11 | |
*** yuanying has joined #heat | 08:22 | |
*** iurygregory_ has joined #heat | 08:23 | |
*** yuanying has quit IRC | 08:26 | |
*** yuanying has joined #heat | 08:26 | |
*** iurygregory has quit IRC | 08:26 | |
*** jamielennox is now known as jamielennox|away | 08:27 | |
*** jamielennox|away is now known as jamielennox | 08:27 | |
*** yuanying_ has joined #heat | 08:28 | |
*** jamielennox is now known as jamielennox|away | 08:29 | |
*** jamielennox|away is now known as jamielennox | 08:29 | |
*** sorantis has joined #heat | 08:31 | |
*** yuanying has quit IRC | 08:32 | |
*** mohankumar has quit IRC | 08:39 | |
*** derekh has joined #heat | 08:45 | |
*** jamielennox is now known as jamielennox|away | 08:48 | |
*** jamielennox|away is now known as jamielennox | 08:48 | |
*** yuanying_ has quit IRC | 08:52 | |
*** yuanying has joined #heat | 08:52 | |
*** prazumovsky has joined #heat | 08:57 | |
*** zhurong has quit IRC | 09:00 | |
*** zhurong has joined #heat | 09:02 | |
*** jamielennox is now known as jamielennox|away | 09:03 | |
*** jamielennox|away is now known as jamielennox | 09:03 | |
*** sdake_ has quit IRC | 09:09 | |
*** code-R has joined #heat | 09:12 | |
*** code-R_ has joined #heat | 09:13 | |
prazumovsky | therve, zaneb, ramishra, KanagarajM, ricolin, tiantian, ochuprykov: can someone take a look at https://review.openstack.org/#/c/365651/ ? Some guys tries to call API resource-show with ID and get an error | 09:13 |
*** code-R has quit IRC | 09:17 | |
*** ayoung has quit IRC | 09:17 | |
*** jamielennox is now known as jamielennox|away | 09:25 | |
*** jamielennox|away is now known as jamielennox | 09:26 | |
*** ayoung has joined #heat | 09:28 | |
*** jamielennox is now known as jamielennox|away | 09:28 | |
*** jamielennox|away is now known as jamielennox | 09:29 | |
*** jamielennox is now known as jamielennox|away | 09:29 | |
*** jamielennox|away is now known as jamielennox | 09:30 | |
*** sshnaidm is now known as sshnaidm|away | 09:30 | |
therve | prazumovsky, The client command explicitly mentions name, not the ID | 09:31 |
therve | Why do you think it should be changed? | 09:31 |
*** jamielennox is now known as jamielennox|away | 09:32 | |
*** jamielennox|away is now known as jamielennox | 09:33 | |
openstackgerrit | Merged openstack/heat: Enable release notes translation https://review.openstack.org/383216 | 09:34 |
*** jamielennox is now known as jamielennox|away | 09:34 | |
*** jamielennox|away is now known as jamielennox | 09:34 | |
*** jamielennox is now known as jamielennox|away | 09:35 | |
*** jaosorior has quit IRC | 09:37 | |
*** jaosorior has joined #heat | 09:37 | |
*** code-R_ has quit IRC | 09:51 | |
prazumovsky | therve, I think, that all OpenStack tries to provide an ability to get resource not only by ID, but by name, too. Heat have similar problem - it allows to get resource by name, but no by ID. It's incorrect and unfriendly as for me, so I suggest to allow users take resource by name and by ID both | 10:02 |
therve | Hum | 10:03 |
prazumovsky | oh, I mean, that heat tries to provide the ability to pass for all OpenStack resources not only id, but name too | 10:05 |
prazumovsky | had some mess with explanation, sorry | 10:06 |
*** zhurong has quit IRC | 10:11 | |
*** zhurong has joined #heat | 10:12 | |
*** fandi has quit IRC | 10:27 | |
*** fandi__ has joined #heat | 10:27 | |
*** code-R has joined #heat | 10:33 | |
*** code-R_ has joined #heat | 10:35 | |
*** fandi has joined #heat | 10:37 | |
*** mohankumar has joined #heat | 10:37 | |
*** code-R has quit IRC | 10:38 | |
*** fandi__ has quit IRC | 10:41 | |
*** mohankumar has quit IRC | 10:49 | |
*** fandi has quit IRC | 10:49 | |
*** code-R_ has quit IRC | 10:54 | |
*** ramishra has quit IRC | 10:59 | |
*** code-R has joined #heat | 11:01 | |
*** mohankumar has joined #heat | 11:06 | |
*** EricGonczer_ has joined #heat | 11:09 | |
*** EricGonczer_ has quit IRC | 11:10 | |
*** EricGonczer_ has joined #heat | 11:11 | |
therve | prazumovsky, One issue is that we don't expose resource id | 11:21 |
therve | We expose physical_resource_id | 11:21 |
therve | Your patch makes that mistake btw, which is at least one reason for -1 | 11:22 |
*** code-R has quit IRC | 11:23 | |
*** code-R has joined #heat | 11:26 | |
prazumovsky | therve, OK, i fix that atm | 11:41 |
*** dprince has joined #heat | 11:41 | |
*** jtomasek_ has joined #heat | 11:50 | |
*** ccamacho is now known as ccamacho|lunch | 11:55 | |
*** pradk has joined #heat | 11:56 | |
*** shardy is now known as shardy_lunch | 12:00 | |
openstackgerrit | Peter Razumovsky proposed openstack/heat: Add support resource show command by ID https://review.openstack.org/365651 | 12:04 |
*** code-R has quit IRC | 12:05 | |
*** code-R_ has joined #heat | 12:05 | |
*** bdeschenes has joined #heat | 12:06 | |
*** bdeschenes has quit IRC | 12:10 | |
*** iurygregory_ is now known as iurygregory | 12:12 | |
*** yprokule has quit IRC | 12:13 | |
*** jtomasek_ has quit IRC | 12:14 | |
*** iurygregory is now known as iury_afk | 12:20 | |
prazumovsky | therve, I updated patch https://review.openstack.org/#/c/365651/ with your comments | 12:21 |
*** jaosorior has quit IRC | 12:28 | |
*** dprince has quit IRC | 12:30 | |
*** akuznetsov has joined #heat | 12:30 | |
*** dprince has joined #heat | 12:31 | |
*** rcernin has quit IRC | 12:33 | |
*** akuznets_ has joined #heat | 12:33 | |
*** akuznetsov has quit IRC | 12:34 | |
*** akuznets_ has quit IRC | 12:37 | |
*** code-R has joined #heat | 12:42 | |
*** shardy_lunch is now known as shardy | 12:43 | |
*** code-R_ has quit IRC | 12:45 | |
*** rcernin has joined #heat | 12:49 | |
*** links has quit IRC | 12:55 | |
*** rcernin_ has joined #heat | 12:56 | |
*** akuznetsov has joined #heat | 13:00 | |
*** rcernin has quit IRC | 13:01 | |
*** ccamacho|lunch is now known as ccamacho | 13:01 | |
*** gberginc has quit IRC | 13:04 | |
*** vijendar has joined #heat | 13:05 | |
*** jcoufal has joined #heat | 13:05 | |
*** rajpatel has joined #heat | 13:08 | |
*** spzala has joined #heat | 13:14 | |
*** blues-man has quit IRC | 13:14 | |
*** spzala has quit IRC | 13:17 | |
*** sergio_nubeliu has joined #heat | 13:17 | |
*** spzala has joined #heat | 13:17 | |
*** akshai has joined #heat | 13:18 | |
*** code-R has quit IRC | 13:19 | |
*** vijendar has quit IRC | 13:24 | |
*** code-R has joined #heat | 13:25 | |
*** rajpatel1 has joined #heat | 13:27 | |
*** rajpatel has quit IRC | 13:28 | |
*** akshai has quit IRC | 13:32 | |
*** vijendar has joined #heat | 13:33 | |
*** sorantis has quit IRC | 13:40 | |
*** dyasny has quit IRC | 13:40 | |
*** gonzalo2kx has joined #heat | 13:41 | |
*** wirehead_ has quit IRC | 13:41 | |
gonzalo2kx | Good day | 13:41 |
gonzalo2kx | I have a question regarding heat. I am attempting to install a multimode openstack environment using devstack | 13:42 |
gonzalo2kx | is it possible to execute a heat script as a non root user | 13:43 |
gonzalo2kx | ??? | 13:43 |
*** vijendar has quit IRC | 13:43 | |
*** vijendar has joined #heat | 13:43 | |
*** mohankumar has quit IRC | 13:46 | |
*** wirehead_ has joined #heat | 13:46 | |
*** ramishra has joined #heat | 13:49 | |
*** ramishra_ has joined #heat | 13:50 | |
*** dyasny has joined #heat | 13:50 | |
*** vijendar has quit IRC | 13:58 | |
*** gonzalo2kx has quit IRC | 13:59 | |
*** jasond has joined #heat | 14:01 | |
*** jprovazn has quit IRC | 14:03 | |
*** ramishra has quit IRC | 14:04 | |
*** ramishra_ has quit IRC | 14:04 | |
therve | prazumovsky, Yeah I still don't feel great about it | 14:05 |
*** ramishra has joined #heat | 14:06 | |
*** randallburt has joined #heat | 14:07 | |
*** jdandrea has joined #heat | 14:08 | |
*** code-R_ has joined #heat | 14:10 | |
*** code-R has quit IRC | 14:10 | |
*** gonzalo2kx has joined #heat | 14:11 | |
*** randallburt has quit IRC | 14:11 | |
*** kirankv has quit IRC | 14:12 | |
*** ishant|away has quit IRC | 14:12 | |
*** zhurong has quit IRC | 14:13 | |
zaneb | gonzalo2kx: that's... a very confusing question. what sort of 'heat script' do you mean? | 14:13 |
*** randallburt has joined #heat | 14:15 | |
gonzalo2kx | xaneb: I have a template called master that calls another 2 named control and compute | 14:15 |
*** ishant|away has joined #heat | 14:16 | |
gonzalo2kx | inside the control and compute templates I have a bash script under user_data section that I want to install as a non-root user | 14:16 |
*** kirankv has joined #heat | 14:17 | |
*** ramishra_ has joined #heat | 14:17 | |
gonzalo2kx | xaneb: the repository is the following https://github.com/gonzalo2kx/heat-openstack/tree/updates_for_master_ip | 14:17 |
prazumovsky | therve, I want to hear your opinion, why it's not great for you | 14:20 |
*** spotz_zzz is now known as spotz | 14:21 | |
therve | prazumovsky, Because we don't have a resource ID. Because client only mentions name. Because it's an API change | 14:21 |
*** leifmadsen has quit IRC | 14:22 | |
*** DinaBelova has quit IRC | 14:22 | |
*** serverascode has quit IRC | 14:22 | |
*** ameade has quit IRC | 14:22 | |
*** amit213 has quit IRC | 14:22 | |
*** zhiyan has quit IRC | 14:22 | |
*** jreeves_` has quit IRC | 14:22 | |
*** afazekas has quit IRC | 14:22 | |
*** DinaBelova has joined #heat | 14:22 | |
*** afazekas has joined #heat | 14:22 | |
*** jreeves_afk has joined #heat | 14:22 | |
*** leifmadsen has joined #heat | 14:22 | |
*** annegentle has joined #heat | 14:22 | |
*** amit213 has joined #heat | 14:25 | |
*** ameade has joined #heat | 14:26 | |
prazumovsky | therve: resource duplicate id of what it represents, so we can allow users to get resources with this IDs. client help have description "Name or ID" (https://github.com/openstack/python-heatclient/blob/master/heatclient/osc/v1/resource.py#L46), it's minor API change, which add little functional | 14:26 |
*** zhiyan has joined #heat | 14:27 | |
therve | That client line is a bug | 14:28 |
therve | prazumovsky, https://github.com/openstack/python-heatclient/blob/master/heatclient/v1/shell.py#L980 it's not there | 14:28 |
*** serverascode has joined #heat | 14:28 | |
*** annegentle has quit IRC | 14:28 | |
prazumovsky | therve: OK for client, but why don't let users to achieve resources by ID, which they represents? | 14:29 |
prazumovsky | it's not break anything | 14:29 |
therve | prazumovsky, It's about API versioning. It may actually be one good usecase for micro versions, which I didn't really see before | 14:30 |
*** annegentle has joined #heat | 14:30 | |
therve | prazumovsky, But see that way. You make the call, and it returns not found | 14:31 |
therve | prazumovsky, Is it because heat doesn't support it, or because the resource is not there? | 14:31 |
therve | There is no way to know unless you know which version is installed | 14:31 |
*** akuznetsov has quit IRC | 14:33 | |
*** iury_afk is now known as iurygregory | 14:34 | |
zaneb | gonzalo2kx: ok, so not a question about installing Heat. that's what was confusing me | 14:36 |
zaneb | gonzalo2kx: the user_data script is executed by cloud-init | 14:37 |
prazumovsky | therve, i think, we can add specifying error for new case - something like "Resource with such name or ID not found", also add reno for that. | 14:37 |
gonzalo2kx | zaneb: hi, not a question about installing heat | 14:37 |
zaneb | gonzalo2kx: so you could create a custom cloud-init script instead, but otherwise I think it always runs it as root | 14:37 |
*** vijendar has joined #heat | 14:38 | |
gonzalo2kx | zaneb: ok i know how to do that | 14:38 |
zaneb | good, because I'm not sure I do ;) | 14:38 |
gonzalo2kx | zaneb: so instead of starting the script with #!/bin/bash I will start it with #cloud-config under user data | 14:40 |
*** vijendar1 has joined #heat | 14:40 | |
zaneb | gonzalo2kx: yes, and you'll also need to set the user_data_format property to "RAW" http://docs.openstack.org/developer/heat/template_guide/openstack.html#OS::Nova::Server-prop-user_data_format | 14:42 |
*** vijendar has quit IRC | 14:42 | |
*** code-R has joined #heat | 14:43 | |
*** mohankumar has joined #heat | 14:43 | |
gonzalo2kx | zaneb: thank you very much | 14:44 |
*** code-R_ has quit IRC | 14:46 | |
prazumovsky | therve: don't support such little features because of user mess with versions (also, if there will be reno) - it's stagnation imho. If you wish to see adding feature with full compatibility, I can follow next steps: 1. remove text bug from osc-client; 2. add resolving by id to resources_get with some new optional flag like "resolve_ids" (old clients just call it without this flag); 3. add support to osc and heat clients with calling new API and if | 14:48 |
prazumovsky | there's HTTPNotFound (old engine), then calling resource-show with previous way. | 14:48 |
therve | Yeah I don't really care that much. | 14:50 |
*** chris_hultin|AWA is now known as chris_hultin | 14:52 | |
prazumovsky | then I think, adding more specifying error and reno will be enough:) | 14:56 |
*** Drago has joined #heat | 14:58 | |
*** sdake has joined #heat | 14:59 | |
*** Drago has quit IRC | 14:59 | |
*** Drago has joined #heat | 14:59 | |
*** vishwanathj has joined #heat | 15:03 | |
*** rajpatel1 has quit IRC | 15:05 | |
therve | zaneb, I tried this very naive approach for output caching: http://paste.openstack.org/show/584857/ | 15:07 |
therve | It didn't seem to work well, but I don't know why | 15:08 |
openstackgerrit | Lars Kellogg-Stedman proposed openstack/python-heatclient: handle empty sections in environment files https://review.openstack.org/383785 | 15:08 |
zaneb | therve: you're still loading the nested stack by calling self._nested(), so they all still end up in memory | 15:09 |
therve | zaneb, Where? | 15:09 |
zaneb | therve: line 17 in that paste | 15:09 |
therve | zaneb, That's just before the reset though? | 15:10 |
*** code-R has quit IRC | 15:10 | |
openstackgerrit | Lars Kellogg-Stedman proposed openstack/python-heatclient: handle empty sections in environment files https://review.openstack.org/383785 | 15:10 |
therve | I guess it's not loaded until then | 15:11 |
zaneb | ah, ok. so that should have helped a bit | 15:11 |
*** prometheanfire has joined #heat | 15:11 | |
prometheanfire | when trying to use the heatclient (1.5.0) it errors out when trying to import this | 15:12 |
prometheanfire | upperconstraints lists keystoneclient as 3.5.0 for newton | 15:12 |
prometheanfire | from keystoneclient.openstack.common.apiclient import exceptions as ks_exc | 15:12 |
therve | zaneb, Any idea what to try? | 15:12 |
prometheanfire | it doesn't include that for import | 15:12 |
zaneb | therve: you could try getting the outputs by doing 'show stack' over RPC instead of loading self.nested() | 15:13 |
therve | Hum, yeah | 15:13 |
prometheanfire | fails in both py3 and py2 | 15:14 |
therve | prometheanfire, Got any traceback? | 15:15 |
therve | AFAIK heatclient doesn't import keystoneclient anymore anywhere | 15:15 |
prometheanfire | ya | 15:15 |
prometheanfire | https://gist.github.com/ | 15:16 |
prometheanfire | https://gist.github.com/prometheanfire/9111790ac8a860c6be92031387c8b7a2 | 15:16 |
prometheanfire | actually, I wonder if I have it installed somewhere locally... | 15:17 |
prometheanfire | yep, those paths... | 15:17 |
therve | prometheanfire, I don't know what that is, but it's not heatclient 1.5 | 15:17 |
prometheanfire | ya, it's not | 15:17 |
openstackgerrit | pawnesh kumar proposed openstack/heat: Correct invalid git URL in LogABug config https://review.openstack.org/382968 | 15:18 |
*** cwolferh has quit IRC | 15:22 | |
therve | zaneb, Regarding sharing the environment, the main trickiness resides in the registry manipulation we do | 15:26 |
therve | I guess we'd need some way to have a child registry as well | 15:26 |
zaneb | therve: the part where we filter the current type so we don't get loops? | 15:26 |
therve | zaneb, Is that why we do it? Maybe | 15:27 |
therve | The other part is removing the resources for hooks purpose | 15:27 |
*** prazumovsky has quit IRC | 15:31 | |
*** gonzalo2kx has quit IRC | 15:32 | |
*** sdake has quit IRC | 15:34 | |
*** adrian_otto has joined #heat | 15:34 | |
*** rajpatel has joined #heat | 15:39 | |
therve | zaneb, http://paste.openstack.org/show/584868/ feels like it shouldn't work, but it did | 15:55 |
therve | In particular, shouldn't we need to refresh those outputs. | 15:55 |
*** bana_k has joined #heat | 15:55 | |
therve | ? | 15:55 |
*** blomquisg_gone is now known as blomquisg | 15:57 | |
*** rcernin_ has quit IRC | 16:01 | |
therve | If it does work, it has an impressive effect | 16:01 |
*** akuznetsov has joined #heat | 16:04 | |
*** cwolferh has joined #heat | 16:08 | |
*** derekh has quit IRC | 16:13 | |
*** mohankumar has quit IRC | 16:16 | |
*** sdake has joined #heat | 16:16 | |
*** jpich has quit IRC | 16:21 | |
*** bana_k has quit IRC | 16:27 | |
*** annegentle has quit IRC | 16:27 | |
*** randallburt has quit IRC | 16:28 | |
*** annegentle has joined #heat | 16:29 | |
*** rajpatel has quit IRC | 16:29 | |
*** Zer0Byte__ has joined #heat | 16:30 | |
*** om has quit IRC | 16:30 | |
*** rajpatel has joined #heat | 16:31 | |
*** om has joined #heat | 16:34 | |
*** tanvirt has joined #heat | 16:37 | |
*** david-lyle has joined #heat | 16:37 | |
*** akuznetsov has quit IRC | 16:43 | |
*** david-lyle_ has joined #heat | 16:55 | |
*** david-lyle_ has quit IRC | 16:57 | |
*** rajpatel has quit IRC | 17:01 | |
*** sdake has quit IRC | 17:01 | |
*** vijendar1 has quit IRC | 17:03 | |
*** mohankumar has joined #heat | 17:04 | |
*** om has quit IRC | 17:04 | |
*** david-lyle_ has joined #heat | 17:06 | |
*** david-lyle_ has quit IRC | 17:07 | |
*** david-lyle_ has joined #heat | 17:08 | |
*** david-lyle has quit IRC | 17:08 | |
*** EricGonc_ has joined #heat | 17:09 | |
*** david-lyle_ is now known as david-lyle | 17:09 | |
*** EricGonczer_ has quit IRC | 17:10 | |
*** om has joined #heat | 17:14 | |
*** vijendar has joined #heat | 17:27 | |
*** shardy has quit IRC | 17:27 | |
*** swatson has quit IRC | 17:30 | |
*** bana_k has joined #heat | 17:32 | |
*** randallburt has joined #heat | 17:35 | |
*** EricGonc_ has quit IRC | 17:35 | |
*** EricGonczer_ has joined #heat | 17:35 | |
*** Zer0Byt__ has joined #heat | 17:35 | |
*** Zer0Byte__ has quit IRC | 17:36 | |
*** om has quit IRC | 17:37 | |
openstackgerrit | Thomas Herve proposed openstack/heat: Use RPC to retrieve nested stack output https://review.openstack.org/383839 | 17:37 |
*** randallburt has quit IRC | 17:39 | |
*** annegentle has quit IRC | 17:39 | |
*** jdandrea has quit IRC | 17:39 | |
*** randallburt has joined #heat | 17:43 | |
*** spzala has quit IRC | 17:43 | |
*** om has joined #heat | 17:44 | |
*** jdandrea has joined #heat | 17:50 | |
*** crose has joined #heat | 17:56 | |
*** rwsu_ has quit IRC | 17:56 | |
*** rwsu has joined #heat | 17:56 | |
*** tanvirt has quit IRC | 18:01 | |
*** bana_k has quit IRC | 18:02 | |
*** sdake has joined #heat | 18:11 | |
*** bana_k has joined #heat | 18:13 | |
*** gonzalo2kx has joined #heat | 18:14 | |
*** EricGonc_ has joined #heat | 18:15 | |
*** EricGonczer_ has quit IRC | 18:16 | |
*** annegentle has joined #heat | 18:27 | |
*** gonzalo2kx has quit IRC | 18:28 | |
openstackgerrit | Crag Wolfe proposed openstack/heat: Add resource_properties_data data migration https://review.openstack.org/361900 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: Add migration function for legacy properties data https://review.openstack.org/364710 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: Add the ResourcePropertiesData object https://review.openstack.org/361901 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: Refactor purge_deleted, operate on batches of stacks https://review.openstack.org/361570 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: One transaction per encrypt/decrypt batch https://review.openstack.org/362290 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: Refactor batch encrypt/decrpyts of params, props https://review.openstack.org/361902 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: Add resource_properties_data assoc. to resource, event objs https://review.openstack.org/362661 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: De-duplicate properties_data between events, resources https://review.openstack.org/363415 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: Minor encrypt/decrypt unittest refactor https://review.openstack.org/361898 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: Refactor, add encrypt/decrypt data dict functions to crypt https://review.openstack.org/361899 | 18:29 |
openstackgerrit | Crag Wolfe proposed openstack/heat: Lazy-load resource_properties_data for events https://review.openstack.org/368188 | 18:29 |
*** rajpatel has joined #heat | 18:35 | |
*** Guest39109 has quit IRC | 18:40 | |
*** crose has quit IRC | 18:41 | |
*** zz_dimtruck is now known as dimtruck | 18:43 | |
*** vijendar has quit IRC | 18:43 | |
*** openstackgerrit has quit IRC | 18:50 | |
*** openstackgerrit has joined #heat | 18:51 | |
*** jdandrea has quit IRC | 18:56 | |
*** david-lyle has quit IRC | 18:56 | |
*** Drago has quit IRC | 18:56 | |
*** afazekas has quit IRC | 18:56 | |
*** dyasny has quit IRC | 18:56 | |
*** d0ugal has quit IRC | 18:56 | |
*** logan- has quit IRC | 18:57 | |
*** eliqiao has quit IRC | 18:57 | |
*** jistr has quit IRC | 18:57 | |
*** brad[] has quit IRC | 18:57 | |
*** dgonzalez has quit IRC | 18:57 | |
*** shadower has quit IRC | 18:57 | |
*** xek has quit IRC | 18:57 | |
*** sgordon has quit IRC | 18:57 | |
*** dgonzalez has joined #heat | 18:57 | |
*** afazekas has joined #heat | 18:57 | |
*** sgordon has joined #heat | 18:57 | |
*** jistr has joined #heat | 18:57 | |
*** shadower has joined #heat | 18:57 | |
*** d0ugal has joined #heat | 18:57 | |
*** dyasny has joined #heat | 18:57 | |
*** Drago has joined #heat | 18:57 | |
*** david-lyle has joined #heat | 18:57 | |
*** jdandrea has joined #heat | 18:57 | |
*** logan- has joined #heat | 18:57 | |
*** brad[] has joined #heat | 18:57 | |
*** xek has joined #heat | 18:57 | |
*** eliqiao has joined #heat | 18:58 | |
*** jdandrea has quit IRC | 19:00 | |
*** om has quit IRC | 19:01 | |
*** jdandrea has joined #heat | 19:01 | |
*** om has joined #heat | 19:03 | |
*** EricGonc_ has quit IRC | 19:08 | |
*** cwolferh has quit IRC | 19:08 | |
*** zhiyan has quit IRC | 19:08 | |
*** DinaBelova has quit IRC | 19:08 | |
*** sergio_nubeliu has quit IRC | 19:08 | |
*** dprince has quit IRC | 19:08 | |
*** alex_xu has quit IRC | 19:08 | |
*** izaakk has quit IRC | 19:08 | |
*** dougwig has quit IRC | 19:08 | |
*** sshnaidm|away has quit IRC | 19:08 | |
*** gmoro has quit IRC | 19:08 | |
*** tlashchova has quit IRC | 19:08 | |
*** stevebaker has quit IRC | 19:08 | |
*** Izlots has quit IRC | 19:08 | |
*** evilt0ne has quit IRC | 19:09 | |
*** slagle has quit IRC | 19:09 | |
*** dprince has joined #heat | 19:09 | |
*** slagle has joined #heat | 19:09 | |
*** cwolferh has joined #heat | 19:09 | |
*** slagle has quit IRC | 19:09 | |
*** slagle has joined #heat | 19:09 | |
*** stevebaker has joined #heat | 19:09 | |
*** evilt0ne has joined #heat | 19:09 | |
*** Izlots has joined #heat | 19:09 | |
*** evilt0ne has quit IRC | 19:09 | |
*** evilt0ne has joined #heat | 19:09 | |
*** tlashchova has joined #heat | 19:09 | |
*** alex_xu has joined #heat | 19:09 | |
*** sergio_nubeliu has joined #heat | 19:09 | |
*** sshnaidm|away has joined #heat | 19:09 | |
*** DinaBelova has joined #heat | 19:09 | |
*** EricGonczer_ has joined #heat | 19:09 | |
*** gmoro has joined #heat | 19:09 | |
*** dsneddon is now known as dsneddon_1 | 19:09 | |
*** serverascode has quit IRC | 19:12 | |
*** izaakk has joined #heat | 19:15 | |
*** zhiyan has joined #heat | 19:16 | |
*** serverascode has joined #heat | 19:17 | |
*** dougwig has joined #heat | 19:18 | |
*** openstackgerrit has quit IRC | 19:18 | |
*** amit213 has quit IRC | 19:18 | |
*** ramishra_ has quit IRC | 19:18 | |
*** flwang1 has quit IRC | 19:19 | |
*** boris-42 has quit IRC | 19:19 | |
*** Qiming has quit IRC | 19:19 | |
*** hoonetorg has quit IRC | 19:19 | |
*** jrist has quit IRC | 19:19 | |
*** sridhar_ram has quit IRC | 19:19 | |
*** fbo has quit IRC | 19:19 | |
*** ramishra_ has joined #heat | 19:19 | |
*** flwang1 has joined #heat | 19:19 | |
*** jrist has joined #heat | 19:19 | |
*** hoonetorg has joined #heat | 19:19 | |
*** Qiming has joined #heat | 19:20 | |
*** openstackgerrit has joined #heat | 19:20 | |
*** fbo has joined #heat | 19:20 | |
*** amit213 has joined #heat | 19:23 | |
*** mohankumar has quit IRC | 19:25 | |
*** sridhar_ram has joined #heat | 19:27 | |
*** boris-42 has joined #heat | 19:29 | |
*** harlowja has quit IRC | 19:32 | |
*** annegentle has quit IRC | 19:33 | |
*** adrian_otto has quit IRC | 19:33 | |
*** vishwanathj has quit IRC | 19:33 | |
*** ameade has quit IRC | 19:33 | |
*** yuanying has quit IRC | 19:33 | |
*** zzzeek has quit IRC | 19:33 | |
*** Alexey_Abashkin has quit IRC | 19:33 | |
*** sileht has quit IRC | 19:33 | |
*** jamielennox|away has quit IRC | 19:33 | |
*** pas-ha has quit IRC | 19:33 | |
*** gaurav___ has quit IRC | 19:33 | |
*** flwang has quit IRC | 19:33 | |
*** kevinbenton has quit IRC | 19:33 | |
*** zigo has quit IRC | 19:33 | |
*** dimtruck has quit IRC | 19:33 | |
*** spotz has quit IRC | 19:33 | |
*** coreyob has quit IRC | 19:33 | |
*** zaneb has quit IRC | 19:33 | |
*** zigo has joined #heat | 19:33 | |
*** zaneb has joined #heat | 19:33 | |
*** Alexey_Abashkin has joined #heat | 19:33 | |
*** zigo is now known as Guest10079 | 19:33 | |
*** gaurav___ has joined #heat | 19:34 | |
*** vishwanathj has joined #heat | 19:34 | |
*** kevinbenton has joined #heat | 19:34 | |
*** sileht has joined #heat | 19:34 | |
*** zz_dimtruck has joined #heat | 19:34 | |
*** yuanying has joined #heat | 19:34 | |
*** zz_dimtruck is now known as dimtruck | 19:34 | |
*** flwang has joined #heat | 19:34 | |
*** adrian_otto has joined #heat | 19:35 | |
*** coreyob has joined #heat | 19:37 | |
*** spotz has joined #heat | 19:38 | |
*** prometheanfire has left #heat | 19:38 | |
*** zzzeek has joined #heat | 19:38 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/heat: Updated from global requirements https://review.openstack.org/383111 | 19:38 |
*** pas-ha has joined #heat | 19:39 | |
*** jcoufal has quit IRC | 19:41 | |
*** jamielennox|away has joined #heat | 19:42 | |
*** jamielennox|away is now known as jamielennox | 19:43 | |
*** ameade has joined #heat | 19:43 | |
*** rajpatel has quit IRC | 19:47 | |
*** bana_k has quit IRC | 19:47 | |
*** Zer0Byt__ has quit IRC | 19:47 | |
*** ramishra has quit IRC | 19:47 | |
*** jasond has quit IRC | 19:47 | |
*** pradk has quit IRC | 19:47 | |
*** ccamacho has quit IRC | 19:47 | |
*** FL1SK has quit IRC | 19:47 | |
*** dbecker has quit IRC | 19:47 | |
*** jtomasek has quit IRC | 19:47 | |
*** dsneddon_1 has quit IRC | 19:47 | |
*** lifeless has quit IRC | 19:47 | |
*** cmyster has quit IRC | 19:47 | |
*** jgrassler has quit IRC | 19:47 | |
*** rook has quit IRC | 19:47 | |
*** fedruantine_ has quit IRC | 19:48 | |
*** Hazelesque has quit IRC | 19:48 | |
*** higgins has quit IRC | 19:48 | |
*** ccard has quit IRC | 19:48 | |
*** SpamapS has quit IRC | 19:48 | |
*** sshen has quit IRC | 19:48 | |
*** EmilienM has quit IRC | 19:48 | |
*** ramishra has joined #heat | 19:48 | |
*** cmyster has joined #heat | 19:48 | |
*** Hazelesque has joined #heat | 19:48 | |
*** jtomasek has joined #heat | 19:48 | |
*** cmyster has quit IRC | 19:48 | |
*** cmyster has joined #heat | 19:48 | |
*** rajpatel has joined #heat | 19:48 | |
*** jasond has joined #heat | 19:48 | |
*** ccamacho has joined #heat | 19:48 | |
*** dbecker has joined #heat | 19:48 | |
*** jgrassler has joined #heat | 19:48 | |
*** lifeless has joined #heat | 19:48 | |
*** pradk has joined #heat | 19:48 | |
*** bana_k has joined #heat | 19:48 | |
*** cmyster has quit IRC | 19:48 | |
*** cmyster has joined #heat | 19:48 | |
*** Zer0Byte__ has joined #heat | 19:48 | |
*** cmyster has quit IRC | 19:48 | |
*** cmyster has joined #heat | 19:48 | |
*** rook has joined #heat | 19:48 | |
*** EmilienM has joined #heat | 19:48 | |
*** rook has quit IRC | 19:48 | |
*** rook has joined #heat | 19:48 | |
*** SpamapS has joined #heat | 19:48 | |
*** sshen has joined #heat | 19:48 | |
*** rook is now known as Guest2483 | 19:48 | |
*** FL1SK has joined #heat | 19:48 | |
*** higgins has joined #heat | 19:49 | |
*** ccard has joined #heat | 19:49 | |
*** dsneddon_1 has joined #heat | 19:50 | |
*** wolsen has quit IRC | 19:50 | |
*** amit213 has quit IRC | 19:50 | |
*** serverascode has quit IRC | 19:51 | |
*** fedruantine has joined #heat | 19:53 | |
*** rajpatel has quit IRC | 19:55 | |
*** yohoffman has quit IRC | 19:56 | |
*** syjulian has quit IRC | 19:56 | |
*** Dave has quit IRC | 19:56 | |
*** blomquisg has quit IRC | 19:56 | |
*** xenogear has quit IRC | 19:56 | |
*** sai has quit IRC | 19:56 | |
*** joka has quit IRC | 19:56 | |
*** stevemar has quit IRC | 19:56 | |
*** aignatov has quit IRC | 19:56 | |
*** sgran has quit IRC | 19:56 | |
*** osoriano has quit IRC | 19:56 | |
*** dhubbard has quit IRC | 19:56 | |
*** dmellado has quit IRC | 19:56 | |
*** joka^upb has joined #heat | 19:56 | |
*** osoriano has joined #heat | 19:56 | |
*** sgran has joined #heat | 19:56 | |
*** blomquisg has joined #heat | 19:56 | |
*** aignatov has joined #heat | 19:56 | |
*** sai has joined #heat | 19:56 | |
*** stevemar has joined #heat | 19:57 | |
*** dmellado has joined #heat | 19:57 | |
*** Dave has joined #heat | 19:57 | |
*** yohoffman has joined #heat | 19:57 | |
*** vijendar has joined #heat | 19:57 | |
*** dhubbard has joined #heat | 19:57 | |
*** syjulian has joined #heat | 19:59 | |
*** xenogear has joined #heat | 20:00 | |
*** Drago has quit IRC | 20:01 | |
*** rajpatel has joined #heat | 20:02 | |
*** serverascode has joined #heat | 20:03 | |
*** Drago has joined #heat | 20:04 | |
*** jcoufal has joined #heat | 20:05 | |
*** zaneb has quit IRC | 20:06 | |
*** zaneb has joined #heat | 20:06 | |
*** openstack has joined #heat | 20:23 | |
*** freyes has joined #heat | 20:23 | |
*** chris_hultin has joined #heat | 20:26 | |
*** harlowja has joined #heat | 20:30 | |
*** cmyster has quit IRC | 20:30 | |
*** cmyster has joined #heat | 20:30 | |
*** EricGonczer_ has quit IRC | 20:30 | |
*** blomquisg has quit IRC | 20:30 | |
*** blomquisg has joined #heat | 20:30 | |
*** sai has quit IRC | 20:30 | |
*** sai has joined #heat | 20:30 | |
*** dmellado has quit IRC | 20:30 | |
*** dmellado has joined #heat | 20:30 | |
*** yohoffman has quit IRC | 20:30 | |
*** yohoffman has joined #heat | 20:30 | |
*** syjulian has quit IRC | 20:30 | |
*** syjulian has joined #heat | 20:30 | |
*** xenogear has quit IRC | 20:30 | |
*** xenogear has joined #heat | 20:30 | |
*** serverascode has quit IRC | 20:30 | |
*** serverascode has joined #heat | 20:30 | |
*** psanchez has quit IRC | 20:31 | |
*** psanchez has joined #heat | 20:31 | |
*** nijaba has quit IRC | 20:33 | |
*** mkoderer__ has quit IRC | 20:33 | |
*** partner has quit IRC | 20:33 | |
*** rajpatel has quit IRC | 20:33 | |
*** xenogear has quit IRC | 20:33 | |
*** dhubbard has quit IRC | 20:33 | |
*** aignatov has quit IRC | 20:33 | |
*** osoriano has quit IRC | 20:33 | |
*** FL1SK has quit IRC | 20:33 | |
*** sshen has quit IRC | 20:33 | |
*** Zer0Byte__ has quit IRC | 20:33 | |
*** adrian_otto has quit IRC | 20:33 | |
*** flwang has quit IRC | 20:33 | |
*** vishwanathj has quit IRC | 20:33 | |
*** flwang1 has quit IRC | 20:33 | |
*** ramishra_ has quit IRC | 20:33 | |
*** sshnaidm|away has quit IRC | 20:33 | |
*** alex_xu has quit IRC | 20:33 | |
*** stevebaker has quit IRC | 20:33 | |
*** cwolferh has quit IRC | 20:33 | |
*** eliqiao has quit IRC | 20:33 | |
*** shadower has quit IRC | 20:33 | |
*** jistr has quit IRC | 20:33 | |
*** brad[] has quit IRC | 20:33 | |
*** kirankv has quit IRC | 20:33 | |
*** ishant|away has quit IRC | 20:33 | |
*** Dave has quit IRC | 20:33 | |
*** dmellado has quit IRC | 20:33 | |
*** stevemar has quit IRC | 20:33 | |
*** sai has quit IRC | 20:33 | |
*** fedruantine has quit IRC | 20:33 | |
*** lifeless has quit IRC | 20:33 | |
*** jtomasek has quit IRC | 20:33 | |
*** jamielennox has quit IRC | 20:33 | |
*** pas-ha has quit IRC | 20:33 | |
*** zzzeek has quit IRC | 20:33 | |
*** spotz has quit IRC | 20:33 | |
*** yuanying has quit IRC | 20:33 | |
*** dimtruck has quit IRC | 20:33 | |
*** gaurav___ has quit IRC | 20:33 | |
*** Guest10079 has quit IRC | 20:33 | |
*** sridhar_ram has quit IRC | 20:33 | |
*** zhiyan has quit IRC | 20:33 | |
*** izaakk has quit IRC | 20:33 | |
*** tlashchova has quit IRC | 20:33 | |
*** slagle has quit IRC | 20:33 | |
*** om has quit IRC | 20:33 | |
*** d0ugal has quit IRC | 20:33 | |
*** sgordon has quit IRC | 20:33 | |
*** clayton has quit IRC | 20:33 | |
*** mikal has quit IRC | 20:33 | |
*** vijendar has quit IRC | 20:33 | |
*** yohoffman has quit IRC | 20:33 | |
*** joka^upb has quit IRC | 20:33 | |
*** higgins has quit IRC | 20:33 | |
*** bana_k has quit IRC | 20:33 | |
*** jasond has quit IRC | 20:33 | |
*** sileht has quit IRC | 20:33 | |
*** jrist has quit IRC | 20:33 | |
*** jdandrea has quit IRC | 20:33 | |
*** logan- has quit IRC | 20:33 | |
*** mburns has quit IRC | 20:33 | |
*** kfox1111_ has quit IRC | 20:33 | |
*** Drago has quit IRC | 20:33 | |
*** syjulian has quit IRC | 20:33 | |
*** sgran has quit IRC | 20:33 | |
*** ccard has quit IRC | 20:33 | |
*** Guest2483 has quit IRC | 20:33 | |
*** dbecker has quit IRC | 20:33 | |
*** ramishra has quit IRC | 20:33 | |
*** cmyster has quit IRC | 20:33 | |
*** Hazelesque has quit IRC | 20:33 | |
*** Alexey_Abashkin has quit IRC | 20:33 | |
*** DinaBelova has quit IRC | 20:33 | |
*** dyasny has quit IRC | 20:33 | |
*** jcoufal has quit IRC | 20:33 | |
*** annegentle has quit IRC | 20:33 | |
*** jcoufal has joined #heat | 20:34 | |
*** serverascode has quit IRC | 20:37 | |
*** clayton has joined #heat | 20:38 | |
*** mikal has joined #heat | 20:38 | |
*** vijendar has joined #heat | 20:38 | |
*** yohoffman has joined #heat | 20:38 | |
*** joka^upb has joined #heat | 20:38 | |
*** higgins has joined #heat | 20:38 | |
*** bana_k has joined #heat | 20:38 | |
*** jasond has joined #heat | 20:38 | |
*** sileht has joined #heat | 20:38 | |
*** jrist has joined #heat | 20:38 | |
*** jdandrea has joined #heat | 20:38 | |
*** logan- has joined #heat | 20:38 | |
*** Dave has joined #heat | 20:39 | |
*** dmellado has joined #heat | 20:39 | |
*** stevemar has joined #heat | 20:39 | |
*** sai has joined #heat | 20:39 | |
*** fedruantine has joined #heat | 20:39 | |
*** lifeless has joined #heat | 20:39 | |
*** jtomasek has joined #heat | 20:39 | |
*** jamielennox has joined #heat | 20:39 | |
*** pas-ha has joined #heat | 20:39 | |
*** zzzeek has joined #heat | 20:39 | |
*** spotz has joined #heat | 20:39 | |
*** yuanying has joined #heat | 20:39 | |
*** dimtruck has joined #heat | 20:39 | |
*** gaurav___ has joined #heat | 20:39 | |
*** Guest10079 has joined #heat | 20:39 | |
*** sridhar_ram has joined #heat | 20:39 | |
*** izaakk has joined #heat | 20:39 | |
*** tlashchova has joined #heat | 20:39 | |
*** slagle has joined #heat | 20:39 | |
*** om has joined #heat | 20:39 | |
*** d0ugal has joined #heat | 20:39 | |
*** sgordon has joined #heat | 20:39 | |
*** nijaba has joined #heat | 20:39 | |
*** mkoderer__ has joined #heat | 20:39 | |
*** partner has joined #heat | 20:39 | |
*** rajpatel has joined #heat | 20:39 | |
*** xenogear has joined #heat | 20:39 | |
*** dhubbard has joined #heat | 20:39 | |
*** aignatov has joined #heat | 20:39 | |
*** osoriano has joined #heat | 20:39 | |
*** FL1SK has joined #heat | 20:39 | |
*** sshen has joined #heat | 20:39 | |
*** Zer0Byte__ has joined #heat | 20:39 | |
*** adrian_otto has joined #heat | 20:39 | |
*** flwang has joined #heat | 20:39 | |
*** vishwanathj has joined #heat | 20:39 | |
*** flwang1 has joined #heat | 20:39 | |
*** ramishra_ has joined #heat | 20:39 | |
*** sshnaidm|away has joined #heat | 20:39 | |
*** alex_xu has joined #heat | 20:39 | |
*** stevebaker has joined #heat | 20:39 | |
*** cwolferh has joined #heat | 20:39 | |
*** eliqiao has joined #heat | 20:39 | |
*** brad[] has joined #heat | 20:39 | |
*** shadower has joined #heat | 20:39 | |
*** jistr has joined #heat | 20:39 | |
*** kirankv has joined #heat | 20:39 | |
*** ishant|away has joined #heat | 20:39 | |
*** Drago has joined #heat | 20:39 | |
*** mburns has joined #heat | 20:40 | |
*** kfox1111_ has joined #heat | 20:40 | |
*** 7GHAAAH06 has joined #heat | 20:40 | |
*** syjulian has joined #heat | 20:40 | |
*** sgran has joined #heat | 20:40 | |
*** ccard has joined #heat | 20:40 | |
*** Guest2483 has joined #heat | 20:40 | |
*** dbecker has joined #heat | 20:40 | |
*** Hazelesque has joined #heat | 20:40 | |
*** cmyster has joined #heat | 20:40 | |
*** ramishra has joined #heat | 20:40 | |
*** Alexey_Abashkin has joined #heat | 20:40 | |
*** DinaBelova has joined #heat | 20:40 | |
*** dyasny has joined #heat | 20:40 | |
*** 7GHAAAH06 has quit IRC | 20:40 | |
*** zhiyan has joined #heat | 20:40 | |
*** zhiyan has quit IRC | 20:41 | |
*** zhiyan has joined #heat | 20:41 | |
*** randallburt has quit IRC | 20:41 | |
*** dougwig has quit IRC | 20:42 | |
*** sridhar_ram has quit IRC | 20:42 | |
*** jcoufal has quit IRC | 20:43 | |
*** jcoufal has joined #heat | 20:43 | |
*** serverascode has joined #heat | 20:54 | |
*** jcoufal has quit IRC | 20:57 | |
*** sridhar_ram has joined #heat | 20:57 | |
*** dougwig has joined #heat | 20:58 | |
*** EricGonczer_ has joined #heat | 21:11 | |
*** david-lyle has quit IRC | 21:12 | |
*** david-lyle has joined #heat | 21:12 | |
*** chris_hultin is now known as chris_hultin|AWA | 21:13 | |
*** iurygregory has quit IRC | 21:15 | |
*** EricGonczer_ has quit IRC | 21:17 | |
*** code-R has joined #heat | 21:33 | |
*** code-R_ has joined #heat | 21:36 | |
*** om has quit IRC | 21:37 | |
*** om has joined #heat | 21:37 | |
*** code-R has quit IRC | 21:39 | |
*** code-R_ has quit IRC | 21:42 | |
*** code-R has joined #heat | 21:42 | |
*** spotz is now known as spotz_zzz | 21:43 | |
*** jdandrea has quit IRC | 21:45 | |
*** Drago has quit IRC | 21:47 | |
*** jasond has quit IRC | 22:00 | |
*** code-R has quit IRC | 22:03 | |
*** code-R has joined #heat | 22:08 | |
*** jdandrea has joined #heat | 22:14 | |
*** code-R has quit IRC | 22:16 | |
*** code-R has joined #heat | 22:16 | |
*** om has quit IRC | 22:21 | |
*** code-R has quit IRC | 22:22 | |
*** vishwanathj has quit IRC | 22:26 | |
*** rajpatel has quit IRC | 22:32 | |
*** sergio_nubeliu has joined #heat | 22:39 | |
*** sdake has quit IRC | 22:46 | |
*** om has joined #heat | 22:47 | |
*** jdandrea has quit IRC | 22:50 | |
*** sergio_nubeliu has quit IRC | 22:57 | |
*** zhurong has joined #heat | 23:44 | |
*** bana_k has quit IRC | 23:49 | |
*** zhurong has quit IRC | 23:54 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!