Thursday, 2014-09-04

*** zz_gondoi has quit IRC00:03
*** jasond has quit IRC00:04
*** travisplummer has joined #heat00:06
*** sjmc7_ has joined #heat00:06
*** gondoi has joined #heat00:07
*** spzala_ has joined #heat00:08
*** therve has joined #heat00:11
*** slagle_ has joined #heat00:11
*** ifarkas_ has joined #heat00:12
*** paybackman has quit IRC00:12
*** ativelkov has quit IRC00:12
*** therve` has quit IRC00:12
*** sjmc7 has quit IRC00:12
*** xmltok_ has quit IRC00:12
*** spzala has quit IRC00:12
*** ifarkas has quit IRC00:12
*** cyli has quit IRC00:12
*** slagle has quit IRC00:12
*** cyli has joined #heat00:12
*** spzala_ is now known as spzala00:12
*** xmltok has joined #heat00:13
*** ativelkov has joined #heat00:13
*** packet has quit IRC00:18
*** sballe has quit IRC00:23
*** arbylee has joined #heat00:23
*** gokrokve has joined #heat00:24
*** dkoper has quit IRC00:26
*** elynn has joined #heat00:36
*** wpf has joined #heat00:36
*** achampion has joined #heat00:42
*** gokrokve_ has joined #heat00:43
*** gokrokve has quit IRC00:43
*** Drago has joined #heat00:49
*** elynn has quit IRC00:50
*** wpf has quit IRC00:50
*** gokrokve_ has quit IRC00:50
*** peoplemerge has quit IRC00:51
*** kebray has joined #heat00:53
*** lipinski has joined #heat00:58
lipinskiI know I've asked this before, but still having issues.  What is required on my VM image for using SoftwareDeployments?00:58
lipinskiDo note - we are not using image-builder or anything like that.  We are building our images by installing RPMs and snapshotting.00:58
asalkeldhi lipinski00:59
asalkeldhttp://docs.openstack.org/developer/heat/getting_started/jeos_building.html00:59
asalkeldif you follow the tripleO elements you can see what is needed01:00
stevebakerlipinski: you'll need to look at the source of each element to do the equivalent in your build tool. https://github.com/openstack/heat-templates/tree/master/hot/software-config/elements01:00
stevebakerlipinski: specifically elements   heat-config \01:00
stevebaker  os-collect-config \01:00
stevebaker  os-refresh-config \01:00
*** gokrokve has joined #heat01:00
stevebaker  os-apply-config \01:01
stevebaker  heat-config-cfn-init \01:01
stevebaker  heat-config-puppet \01:01
stevebaker  heat-config-salt \01:01
stevebaker  heat-config-script01:01
stevebakerlipinski: but of the last 4, you only need to do the ones for the hooks you're interested in01:01
stevebakerlipinski: the important bit will be making sure all the requires os-refresh-config scripts and os-apply-config templates are installed01:01
lipinskiHow do I know what hooks I need?01:01
lipinskiAll I am trying to do is have a SoftwareConfig resource01:01
stevebakerlipinski: what tool do you want to configure software on your servers?01:02
lipinskiAnd use a SoftwareDeployment resource to apply that Config to servers providing a differing set of input for each server01:02
lipinskiWe are using a basic shell script01:02
lipinskiAll we want to do is drop a unique piece of data on each VM.01:02
stevebakerlipinski: then all you need is heat-config-script. Ignore cfn-init, puppet, salt01:02
lipinskiI can define a single SoftwareConfig, then use a SoftwareDeployment to apply that config to each with using a different input for each01:02
lipinskido I need any os- ones?01:03
stevebakeryes01:03
stevebakerlipinski: do you need heat to be informed that your script has run?01:03
lipinskinope01:03
lipinskiWe are literally just dropping 3 different pieces of data (into 3 separate text files) on each VM.01:04
lipinski2 pieces of data is identical across all VMs, and one is unique for each01:04
*** Yanyanhu has joined #heat01:04
stevebakerlipinski: then you could always specify it as user_data_format: RAW and user_data: {get_file: your_file.sh}01:04
lipinskiDo you know what the RPM would be for heat-config-script?  We are forced to use RedHat in our VMs.01:04
stevebakerlipinski: or user_data: {get_resource: your_software_config_resource}01:05
lipinskiRight - but then I need a unique softwareconfig item for each VM01:05
lipinskiUsing user_data I lose the ability to use inputs it seems.01:05
*** randallburt has quit IRC01:05
lipinskiWe were using user_data when all VMs received the same data.  It's the unique one that then causes us to have to create a new softwareconfig for each.01:05
lipinskiif there was a way to specify softwareconfig inputs via user_Data, I would do that - then I don't need softwareDeployments (which seem to require admin rights in our IceHouse environment)01:06
stevebakerlipinski: so you already need one deployment resource per server, so why not one config resource per server, and use get_file so you're not repeating your scripts. Something like this https://review.openstack.org/#/c/118472/2/hot/Windows/ActiveDirectoryController/ActiveDirectoryDomainController.yaml01:08
*** arbylee has quit IRC01:09
lipinskistevebaker: well, I left out a bit.  I have a few SoftwareConfig resources that I'm joining with a MultipartMime.  So, taking that into consideration, Instead of having 1 SWConfig resource + x SWDeployment resources (x=#VMs), I would now have X SWConfigs + X MultipartMimes.  And, we are talking systems with many, many VMs.01:10
lipinskiPlus, that seems rather messy....  SoftwareDeployments provide a lot of cool functionality for future possibilities.01:11
lipinskiI guess I may have to go that route though.01:11
*** dkoper has joined #heat01:11
stevebakerlipinski: another option is install what you can with RPM, but do all of the other files with cloud-config resources added to your MultipartMime. All of the heat-* elements are small scripts which won't be packaged01:12
lipinskistevebaker: so you don't think the hot software-config stuff will be packaged into RPM?01:15
stevebakerlipinski: actually openstack-heat-templates is packaged, but I would strongly suggest you don't go there01:16
stevebakerlipinski: you could install os-collect-config, os-apply-config, os-refresh-config from RDO https://repos.fedorapeople.org/repos/openstack/openstack-icehouse/epel-7/01:16
*** erkules_ has joined #heat01:18
lipinskistevebaker: thanks for the help.  I'll have to discuss with our team.01:19
stevebakerlipinski: then use cloud-config to install the following on boot: heat-config, heat-config-script, plus http://git.openstack.org/cgit/openstack/tripleo-image-elements/tree/elements/os-collect-config/os-apply-config/etc/os-collect-config.conf01:19
stevebakerlipinski: feel free to raise a bug against heat-templates for a template which demonstrates this approach01:20
lipinskiok, will do.01:20
*** erkules has quit IRC01:20
*** liusheng has joined #heat01:21
lipinskiWould this be a bug to demonstrate using softwaredeployments without imagebuilder-based image?  Is that appropraite wording/title?01:21
stevebakerlipinski: yes, that would do.01:23
asalkeldstevebaker, a self building image would be super neat01:23
asalkeldand then use glance.image to upload to glance01:24
asalkeldmuch easier to help users01:24
stevebakerlipinski: when you say rpm + snapshot, do you mean in OpenStack to a cinder volume?01:24
lipinskiI mean - the image that we use to spin up VMs from is not created using any image builder or anything like that.  We have some tools that build the image on their own.01:25
stevebakerlipinski: sure, but the image is built outside of an openstack?01:25
lipinskiSpecifically, I believe my colleague spins up a VM (using like Qemu) and installs all the RPMs desired (including cloud-init, etc.), then he essentially captures a snapshot (equivalent) of the VM.  That becomed the image we put in glance.01:26
*** arbylee has joined #heat01:26
lipinskiyes - the image is built outside OpenStack.01:26
stevebakerok, ta01:26
lipinskibecause it is actually built in our software build environment, where all kinds of other stuff happens, etc.01:26
lipinskiWe have software that runs on bare metal and VM/cloud, so there is commonality in our build stuff.01:27
stevebakerlipinski: can you depend on package repos like RDO during image build?01:27
lipinskiI believe they pull packages into a local repo and then use that.  But, since this is all still fairly new, they are getting RPMs from a handful of different RedHat repos.01:27
lipinskiI Think they manually pull them into local repo, then the automated build uses that.01:28
*** AlexYang has quit IRC01:28
stevebakerok01:29
*** samstav has quit IRC01:30
*** ramishra has joined #heat01:30
lipinskiok, new question.  Somewhat related even though doesn't seem like it.01:31
lipinskiIs there a way to lookup a resource to get it's metadata using the resource ID instead of name?01:32
*** bnemec has quit IRC01:32
lipinskifor example, I can do heat resource-metadata <stack_name> <resource_nam>01:32
lipinskiBut, I can't seem to do01:32
lipinskiheat resource-metadata <stack_name> <resource_ID>01:32
*** bnemec has joined #heat01:32
stevebakerlipinski: no, but why do you need to?01:33
lipinskiwell, long story...  I have a piece of metadata associated with a server that I want to lookup (from another server).01:33
stevebakerlipinski: I think using name instead of ID was needed to avoid resource circular dependencies (or self-referencing resources)01:34
lipinskiAt the time of that lookup, I have the VMID (from cloud-init), but don't have the resource name.01:34
stevebakerlipinski: couldn't you just pass the resource name in one of the server's boot scripts?01:35
lipinskiyes, that's what I was thinking.   But, then we have to pass that resource name around - because it is a different server.01:36
lipinskiwe have multiple servers that register with one another.  They currently pass around the VMID.  The main/head server then looks up metadata bout the children servers.01:37
*** achampion has quit IRC01:38
stevebakerlipinski: another option would be to do a resource-list to get the id->name mapping (possibly your server credentials won't allow this though)01:38
lipinskiresoruce-list doesn't show the IDs...01:39
lipinskiI'd have to do resource-list to get all the resources, then go through each one.01:39
lipinskiwhich would take a good bit of time...01:39
*** spzala has quit IRC01:40
stevebakerlipinski: ideally you'd do it in a python script which uses heatclient as a lib. A single API call should give you all the info you need01:40
*** achampion has joined #heat01:41
lipinskihmm - I didn't know heatclient was a officially supported python lib API.  I thought the command-line client was all that was "officially" available01:42
*** achampion has quit IRC01:43
*** flaxburst has joined #heat01:45
*** flaxburst has quit IRC01:45
stevebakernot at all! If you're parsing pretty-table output then yr doin it wrong ;)01:46
*** achampion has joined #heat01:46
*** Murali_ has joined #heat01:47
lipinskinot parsing output at this point...01:48
lipinskiwell, we are, for heat resource-metadata and a few other non-pretty-table things01:48
lipinskiWe're not python developers, so this is new territory for us.01:49
stevebakeryep, thats ok01:49
*** achampio1 has joined #heat01:51
*** achampio1 has quit IRC01:52
*** achampion has quit IRC01:52
*** ramishra has quit IRC01:53
*** ramishra has joined #heat01:53
*** nosnos has joined #heat01:54
*** dkoper has quit IRC01:58
*** m_22 has joined #heat01:59
*** m_22 has left #heat01:59
*** Drago has quit IRC02:05
*** huangtianhua has joined #heat02:12
*** elynn has joined #heat02:15
*** elynn has quit IRC02:20
*** ramishra has quit IRC02:20
*** ramishra has joined #heat02:25
*** achampion has joined #heat02:28
*** pmyers has joined #heat02:33
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.contrib  https://review.openstack.org/10948402:35
*** vijendar has quit IRC02:37
*** hdd has quit IRC02:37
openstackgerritA change was merged to openstack/heat: Add validate function for AWS::EC2::EIPAssociation  https://review.openstack.org/11793802:42
openstackgerritA change was merged to openstack/heat: Modify the way to get 'network_id' of the port  https://review.openstack.org/11796102:43
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.api  https://review.openstack.org/10948702:47
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.common  https://review.openstack.org/10950602:50
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.contrib  https://review.openstack.org/10948402:54
*** praveenkumar has joined #heat02:55
*** KanagarajM has joined #heat02:58
*** david-lyle has joined #heat02:59
*** sgordon_ has joined #heat03:00
*** zz_naotok is now known as naotok03:04
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.contrib  https://review.openstack.org/10948403:05
openstackgerritAngus Salkeld proposed a change to openstack/heat: Add nested_depth to internal _create_stack RPC interface  https://review.openstack.org/11573203:07
openstackgerritAngus Salkeld proposed a change to openstack/heat: Unit test autoscaling._calculate_new_capacity  https://review.openstack.org/11890703:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: Move TestInstanceGroup to test_instance_group.py  https://review.openstack.org/11890603:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: Convert the autoscaling policy tests into unit tests  https://review.openstack.org/11890903:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: Add nested_depth column to stack table  https://review.openstack.org/11573003:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: engine service add nested_depth to create_stack  https://review.openstack.org/11573103:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: Move some AutoScalingGroup validation tests to a separate file  https://review.openstack.org/11890803:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: engine service add stack_user_project_id to create_stack interface  https://review.openstack.org/11813603:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: Add stack_user_project_id to _create_stack RPC interface  https://review.openstack.org/11813703:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: Add user_creds_id to _create_stack RPC interface  https://review.openstack.org/11633503:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: engine service add user_creds_id to create_stack interface  https://review.openstack.org/11633403:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: StackResource add show_deleted option to nested() accessor method  https://review.openstack.org/11633303:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: StackResource add force_reload to nested() accessor method  https://review.openstack.org/11633203:08
openstackgerritAngus Salkeld proposed a change to openstack/heat: Rewrite AutoScalingGroup adjustment tests as unit tests  https://review.openstack.org/11894803:08
cmystermorning03:09
asalkeldhi cmyster03:09
cmysterheya03:09
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.api  https://review.openstack.org/10948703:10
*** sgordon_ has quit IRC03:14
*** ajc_ has joined #heat03:14
*** sgordon_ has joined #heat03:16
openstackgerritliusheng proposed a change to openstack/heat: Log translation hint for Heat.engine  https://review.openstack.org/10951203:17
*** achampion has quit IRC03:30
*** achampion has joined #heat03:31
*** achampion has quit IRC03:32
*** asifrc has joined #heat03:37
*** arbylee has quit IRC03:38
*** achampion has joined #heat03:39
*** shardy_z has quit IRC03:40
*** david-lyle has quit IRC03:44
asalkeldstevebaker, is this important: https://review.openstack.org/#/c/110750/903:50
asalkeldheatclient auth patch03:50
asalkeld(big change)03:50
stevebakerasalkeld: v3 support is useful, I ran it locally for a while03:51
asalkeldok03:51
*** elynn has joined #heat03:52
*** Murali_ has quit IRC03:55
*** Murali_ has joined #heat03:56
*** elynn has quit IRC03:56
*** sgordon_ has quit IRC04:02
*** hdd has joined #heat04:21
*** LiJiansheng has joined #heat04:27
*** tango has joined #heat04:28
*** morganfainberg_Z is now known as morganfainberg04:29
*** nkhare has joined #heat04:39
*** Murali__ has joined #heat04:42
*** Murali_ has quit IRC04:42
*** ramishra has quit IRC04:44
*** edmund2 has joined #heat04:46
*** edmund has quit IRC04:46
*** ramishra has joined #heat04:51
*** ramishra_ has joined #heat04:56
*** ramishra has quit IRC04:57
*** ramishra_ has quit IRC04:58
*** ramishra has joined #heat04:59
*** ramishra has quit IRC04:59
*** ramishra has joined #heat05:00
*** hdd has quit IRC05:03
*** saju_m has joined #heat05:04
*** KanagarajM has quit IRC05:06
*** elynn has joined #heat05:06
*** uru-bot is now known as urulama05:10
*** elynn has quit IRC05:11
*** rakesh_hs has joined #heat05:14
*** huangtianhua has quit IRC05:21
skraynevGood morning05:27
*** Murali__ has quit IRC05:27
asalkeldhi skraynev05:30
skraynevhey asalkeld05:30
*** Murali_ has joined #heat05:32
*** killer_prince is now known as lazy_prince05:34
*** Yanyan has joined #heat05:34
*** Yanyanhu has quit IRC05:37
*** KanagarajM has joined #heat05:40
*** harlowja_at_home has joined #heat05:43
*** ishant has joined #heat05:48
*** urulama has quit IRC05:49
*** edmund2 has quit IRC05:50
*** harlowja is now known as harlowja_away05:50
*** kebray has quit IRC05:51
*** kebray has joined #heat05:57
*** achampion has quit IRC05:59
*** bmahalakshmi has joined #heat06:01
openstackgerritOpenStack Proposal Bot proposed a change to openstack/heat: Imported Translations from Transifex  https://review.openstack.org/11679606:02
*** saju_m has quit IRC06:11
*** kebray has quit IRC06:11
*** lazy_prince is now known as killer_prince06:14
*** Murali_ has quit IRC06:17
*** killer_prince is now known as lazy_prince06:17
*** jprovazn has joined #heat06:18
*** saju_m has joined #heat06:20
*** harlowja_at_home has quit IRC06:23
*** huangtianhua has joined #heat06:30
*** bvandenh has joined #heat06:33
*** pas-ha has joined #heat06:34
*** kopparam has joined #heat06:34
*** asifrc has quit IRC06:36
*** tspatzier has joined #heat06:39
pas-hamorning all06:41
asalkeldhi pas-ha06:45
*** KanagarajM has quit IRC06:48
*** saju_m has quit IRC06:49
*** tango has quit IRC06:54
*** sanjayu has joined #heat07:00
*** pasquier-s has joined #heat07:02
*** sarob has quit IRC07:03
*** stevebaker has quit IRC07:04
*** adam_g has quit IRC07:04
*** wendar has quit IRC07:04
*** wendar_ has joined #heat07:04
*** stevebaker has joined #heat07:06
*** adam_g has joined #heat07:06
*** adam_g has quit IRC07:06
*** adam_g has joined #heat07:06
skraynevhi pas-ha07:06
*** jistr has joined #heat07:09
*** saju_m has joined #heat07:12
*** sabeen has quit IRC07:14
*** sabeen has joined #heat07:14
*** saju_m has quit IRC07:16
openstackgerritA change was merged to openstack/heat: Fix a wrong argument name at Heat keystoneclient plugin  https://review.openstack.org/10783007:16
*** KanagarajM has joined #heat07:20
*** jstrachan has joined #heat07:20
*** jcoufal has joined #heat07:21
*** KanagarajM has quit IRC07:23
*** rakesh_hs2 has joined #heat07:24
*** rakesh_hs has quit IRC07:24
*** ramishra has quit IRC07:24
*** rakesh_hs2 has quit IRC07:25
*** saju_m has joined #heat07:25
*** ramishra has joined #heat07:25
*** ramishra has quit IRC07:25
*** ramishra has joined #heat07:26
*** rakesh_hs has joined #heat07:27
*** sarob has joined #heat07:27
*** rakesh_hs has quit IRC07:28
*** ishant has quit IRC07:29
*** rakesh_hs has joined #heat07:29
*** shardy has joined #heat07:30
*** Putns has joined #heat07:31
*** mspreitz has quit IRC07:40
*** elynn has joined #heat07:41
*** ramishra has quit IRC07:42
PutnsHey. I was told to ask my question here. I am creating a resource for Heat that needs to periodically run some piece of code after creation - and thus stop running it on deletion. What would be the best way of implementing this? Does Heat provide some sort of mechanism for this?07:42
*** tomek_adamczewsk has joined #heat07:42
shardyPutns: creating a resource with a handle_signal method, and having something (ceilometer?) signal it periodically is the way to go07:43
shardythere is a periodic task mechanism inside heat, but we're deprecating it (it won't work with multiple heat-engines), so please don't use that07:43
Putnshow do i get ceilometer to periodically signal my resource?07:44
shardyPutns: alternatively, have heat spin up an instance and run the code inside that via a cron job07:44
shardy(depending on whether you're creating a resource plugin or a template/provider resource)07:45
*** elynn has quit IRC07:45
Putnsresource plugin07:46
shardyPutns: you can create a ceilometer alarm with alarm criteria which always evaluate to true and specify the required evaluation period07:46
Putnsi see07:47
shardyBit of a hack really, this should probably more properly be handled by a workflow service, e.g mistral signals heat07:47
shardybut I'm not sure what the status of mistral is atm07:47
Putnsyeah, it does seem like a hack :(07:47
Putnswas hoping for some way to have it all contained within my resource07:48
Putnsoh well, this does give some ideas on how to proceed, many thanks07:49
skraynevshardy: wow. did you say, that periodic mechanism (so and autoscaling without ceilometer) does not work for multi-engines?07:49
shardyskraynev: correct, we have no way of deciding which engine should run the periodic task, so they'll all race each other07:50
shardyanyone running multiple engines must use ceilometer and not CWLiteAlarm07:50
*** Guest60909 is now known as Adri200007:50
*** Adri2000 has joined #heat07:50
*** julienvey has joined #heat07:51
skraynevshardy: Ou. You really helped me :) thanks. It's very important case for me.07:51
shardyskraynev: https://blueprints.launchpad.net/heat/+spec/deprecate-stack-watch07:51
shardybug #132212807:51
uvirtbotLaunchpad bug 1322128 in heat "watch timers can't be disabled for multiple engines" [Undecided,In progress] https://launchpad.net/bugs/132212807:51
skraynevshardy: good news according to your advice I slowly migrate to ceilometer :)07:51
skraynevshardy: thx07:52
tspatzierhi shardy07:54
shardytspatzier: hi!07:54
tspatziershardy: I look at your spec https://review.openstack.org/#/c/113296 and it looks good to me; only one little typo. Wanted to ask if you plan another iteration; otherwise I would just +A. The other comments seem resolved.07:55
shardytspatzier: Thanks - that's looking likely to be deferred to K now so I probably will do another iteration adjusting the target release07:56
tspatziershardy: alright, then I'll just let it hang around as is07:57
openstackgerrithuangtianhua proposed a change to openstack/heat: Check resource_id is None before deleting  https://review.openstack.org/11187908:04
*** sabeen has quit IRC08:11
*** derekh has joined #heat08:15
*** sorantis_ has joined #heat08:16
*** mohits has joined #heat08:18
*** ramishra has joined #heat08:23
*** ramishra has quit IRC08:23
*** ramishra has joined #heat08:24
openstackgerritPavlo Shchelokovskyy proposed a change to openstack/heat: Implement CFN CancelUpdateStack action  https://review.openstack.org/10285208:26
openstackgerritPavlo Shchelokovskyy proposed a change to openstack/heat: Add RPC API for cancel update stack  https://review.openstack.org/10285108:26
openstackgerritPavlo Shchelokovskyy proposed a change to openstack/heat: Add Heat REST API action for cancel update stack  https://review.openstack.org/11691108:26
*** Putns has left #heat08:26
*** sorantis__ has joined #heat08:27
*** sorantis_ has quit IRC08:29
pas-haguys, please review https://review.openstack.org/#/c/102851 - need your opinions on implementation (and may be splitting the change to more patches?)08:29
asalkeldshardy, https://ahsalkeld.wordpress.com/2014/09/04/how-to-profile-heat-using-osprofile/08:33
shardyasalkeld: nice, thanks! :)08:35
asalkeldnp08:35
*** stannie has joined #heat08:36
*** saju_m has quit IRC08:41
openstackgerrithuangtianhua proposed a change to openstack/heat: Help message of configurations support i18n  https://review.openstack.org/11900208:49
*** ramishra has quit IRC08:52
*** ramishra has joined #heat08:53
*** ramishra has quit IRC08:57
*** wpf has joined #heat09:01
*** elynn has joined #heat09:01
*** gokrokve_ has joined #heat09:04
*** Ng has quit IRC09:04
*** Goneri has joined #heat09:05
*** Ng_ has joined #heat09:05
*** elynn has quit IRC09:05
*** wpf has quit IRC09:06
*** che-arne has joined #heat09:07
*** gokrokve has quit IRC09:07
*** gokrokve_ has quit IRC09:08
*** mkollaro has joined #heat09:10
*** ifarkas_ has quit IRC09:15
*** ifarkas has joined #heat09:17
*** andreaf has joined #heat09:22
*** che-arne has quit IRC09:27
*** nkhare has quit IRC09:30
*** rakesh_hs has quit IRC09:30
*** rakesh_hs has joined #heat09:31
*** che-arne has joined #heat09:31
openstackgerritSteven Hardy proposed a change to openstack/heat-templates: Add a server with volumes ResourceGroup example  https://review.openstack.org/11901509:31
*** rakesh_hs has quit IRC09:31
*** rakesh_hs has joined #heat09:34
openstackgerritAngus Salkeld proposed a change to openstack/heat: Add OSprofiler integration into Heat  https://review.openstack.org/11811509:39
*** saju_m has joined #heat09:41
*** saju_m has quit IRC09:42
*** saju_m has joined #heat09:43
*** gokrokve has joined #heat09:46
*** Yanyan has quit IRC09:51
*** gokrokve has quit IRC09:52
*** sorantis__ has quit IRC10:01
*** wpf has joined #heat10:02
*** Adri2000 has quit IRC10:05
*** Adri2000 has joined #heat10:05
*** blinky_ghost has joined #heat10:06
*** Adri2000 is now known as Guest7150310:06
*** fayablazer has joined #heat10:07
*** pasquier-s has quit IRC10:07
*** wpf has quit IRC10:08
*** julienvey has quit IRC10:11
*** sorantis has joined #heat10:14
*** nosnos has quit IRC10:14
*** nosnos has joined #heat10:15
*** saju_m has quit IRC10:16
*** nosnos_ has joined #heat10:18
*** Ugallu has joined #heat10:18
*** nosnos has quit IRC10:19
*** nkhare has joined #heat10:22
*** Ugallu has quit IRC10:22
*** swygue has quit IRC10:22
*** asalkeld has quit IRC10:23
*** cdent has joined #heat10:30
*** julienvey has joined #heat10:31
*** k4n0_ has quit IRC10:33
*** k4n0 has joined #heat10:35
*** elynn has joined #heat10:36
*** Ugallu has joined #heat10:38
*** elynn has quit IRC10:41
*** naotok is now known as zz_naotok10:45
*** gokrokve has joined #heat10:46
*** elynn has joined #heat10:48
*** wpf has joined #heat10:48
*** gokrokve has quit IRC10:51
*** Guest71503 is now known as Adri2000_10:51
*** Adri2000_ has joined #heat10:51
*** ramishra has joined #heat10:53
*** ramishra has quit IRC10:59
*** Ng_ is now known as Ng11:01
*** bmahalakshmi has quit IRC11:05
*** bmahalakshmi has joined #heat11:08
*** lipinski has quit IRC11:18
*** saju_m has joined #heat11:19
*** ramishra has joined #heat11:22
*** ajc_ has quit IRC11:25
*** jdob has joined #heat11:27
*** ramishra has quit IRC11:27
*** jprovazn has quit IRC11:28
*** bmahalakshmi has quit IRC11:29
*** sorantis has quit IRC11:34
*** gokrokve has joined #heat11:46
*** jprovazn has joined #heat11:47
*** jdandrea_ has joined #heat11:47
*** tomek_adamczewsk has quit IRC11:48
*** tomek_adamczewsk has joined #heat11:49
*** gonery has joined #heat11:50
*** jasond`` has joined #heat11:50
*** OMCK_ has joined #heat11:50
*** greghayn1 has joined #heat11:50
*** jdandrea has quit IRC11:50
*** greghaynes has quit IRC11:50
*** jasond` has quit IRC11:51
*** OMCK has quit IRC11:51
*** Goneri has quit IRC11:51
*** jdandrea_ is now known as jdandrea11:51
*** OMCK_ is now known as OMCK11:51
*** gokrokve has quit IRC11:51
*** sgordon_ has joined #heat11:52
*** sorantis_ has joined #heat11:52
*** huangtianhua has quit IRC11:53
*** justin-8 has quit IRC11:54
*** justin-8 has joined #heat11:55
*** nkhare has quit IRC11:58
*** nkhare has joined #heat12:01
*** achampion has joined #heat12:02
*** jprovazn has quit IRC12:07
*** aweiteka has joined #heat12:07
*** achampion has quit IRC12:09
*** swygue has joined #heat12:12
*** nkhare_ has joined #heat12:14
*** pasquier-s has joined #heat12:15
*** rpothier has joined #heat12:26
*** justin-8_ has joined #heat12:26
*** erkules_ is now known as erkules12:29
*** justin-8 has quit IRC12:29
*** Drago has joined #heat12:32
*** Adri2000_ is now known as Adri200012:33
*** lee_ has joined #heat12:39
*** saju_m has quit IRC12:40
*** LiJiansheng has quit IRC12:41
*** gokrokve has joined #heat12:46
*** tonisbones has joined #heat12:49
*** jprovazn has joined #heat12:49
*** gokrokve has quit IRC12:51
*** kopparam has quit IRC12:55
*** blues-man has joined #heat12:55
*** radez_g0n3 is now known as radez13:02
*** Drago has quit IRC13:02
*** achampion has joined #heat13:04
*** jcoufal has quit IRC13:08
*** jcoufal has joined #heat13:11
*** k4n0 has quit IRC13:12
*** nkhare_ has quit IRC13:14
*** nkhare has quit IRC13:14
openstackgerritGauvain Pocentek proposed a change to openstack/heat: doc: Improve use of the support_status attribute  https://review.openstack.org/11644313:20
*** bvandenh has quit IRC13:23
*** bvandenh has joined #heat13:23
*** swygue has quit IRC13:24
*** Murali has joined #heat13:27
*** lazy_prince is now known as killer_prince13:28
*** sorantis__ has joined #heat13:28
*** ramishra has joined #heat13:29
*** sorantis_ has quit IRC13:30
*** Murali has quit IRC13:33
*** lipinski has joined #heat13:33
*** sanjayu has quit IRC13:34
*** jmckind has joined #heat13:34
*** ramishra has quit IRC13:34
*** ramishra has joined #heat13:34
*** Qiming has joined #heat13:37
*** Drago has joined #heat13:39
*** edmund2 has joined #heat13:40
*** tango has joined #heat13:42
*** ramishra has quit IRC13:42
*** ramishra has joined #heat13:43
*** mohits has quit IRC13:45
*** DaveJ__ has joined #heat13:45
*** gokrokve has joined #heat13:46
*** sjmc7_ is now known as sjmc713:47
*** Murali_ has joined #heat13:48
*** alexpilotti has joined #heat13:48
*** nosnos_ has quit IRC13:50
*** gokrokve has quit IRC13:51
*** nosnos has joined #heat13:51
*** Murali_ has quit IRC13:52
*** sballe has joined #heat13:55
*** nosnos has quit IRC13:55
*** Murali_ has joined #heat13:56
*** radez is now known as radez_g0n314:00
*** killer_prince is now known as lazy_prince14:00
*** tims has joined #heat14:03
*** praveenkumar has quit IRC14:04
*** tspatzier__ has joined #heat14:05
*** arbylee has joined #heat14:05
*** pasquier-s_ has joined #heat14:05
*** arbylee has quit IRC14:06
*** daneyon_ has joined #heat14:06
*** aweiteka has quit IRC14:06
*** edmund3 has joined #heat14:06
*** ramishra_ has joined #heat14:07
*** edmund3 has quit IRC14:09
*** sorantis__ has quit IRC14:10
jdandreaReality check: I often see a bunch of "urllib3.connectionpool [-] Starting new HTTP connection (1)" messages. Is that typically heat polling for status? (Don't want to assume, but I want to at least know if that's common enough of a thing.)14:13
jdandrea... about one per second.14:14
*** sorantis_ has joined #heat14:14
larsksjdandrea: that's entirely common, and happens any times Heat makes a connection to another api service.  Looking at my log right now, I see three in the past minute.14:14
jdandreathree in a minute, sure. 60? :)14:15
larsksjdandrea: how many stacks do you have deployed right now?14:15
jdandrealarsks: One. :)14:15
larsksHmm, me too.  Is it big and complicated, or relatively simple?14:16
jdandrea12 VMs, 12 Cinder volumes, 12 volume attachments.14:16
jdandrea... and the related ports, floating IPs ...14:16
*** ramishra has quit IRC14:17
*** edmund2 has quit IRC14:17
*** pasquier-s has quit IRC14:17
*** elynn has quit IRC14:17
*** Ugallu has quit IRC14:17
*** blinky_ghost has quit IRC14:17
*** mkollaro has quit IRC14:17
*** tspatzier has quit IRC14:17
*** daneyon has quit IRC14:17
*** jpeeler has quit IRC14:17
*** lsmola has quit IRC14:17
*** harlowja_away has quit IRC14:17
larsksI wonder if the amount of polling is related to the number of resources?  I have a two vms and no volumes...14:17
jdandreaWhat I'm seeing is that Cinder is taking a really long time to create volumes.14:17
jdandreaI'm wondering that as well. Yeah.14:17
larsksYou could probably investigate exactly what it's checking using tcpdump.14:17
jdandreaYes. Yes we can. Hehe. :)14:18
*** aweiteka has joined #heat14:18
jdandreaI think the polling is "mostly harmless" but worth reality checking. I'm now wondering what's up with Cinder. I changed each volume to depend on another, in a chain. It's taking *one* volume a while to be created. (This now becomes a cinder question though.)14:19
*** Drago has quit IRC14:20
*** asifrc has joined #heat14:20
*** elynn has joined #heat14:22
*** jpeeler has joined #heat14:22
*** jpeeler has joined #heat14:22
*** asifrc has quit IRC14:23
*** arbylee has joined #heat14:24
*** blinky_ghost has joined #heat14:24
*** mkollaro has joined #heat14:25
*** lsmola has joined #heat14:25
*** jistr has quit IRC14:27
*** andreaf has quit IRC14:28
*** andreaf has joined #heat14:28
*** andreaf is now known as andreaf_14:28
*** jistr has joined #heat14:29
*** david-lyle has joined #heat14:31
*** gokrokve has joined #heat14:32
*** lsmola is now known as 18VAAT2X414:33
*** hdd has joined #heat14:33
*** ramishra has joined #heat14:33
*** pasquier-s has joined #heat14:33
*** 17SAA4I1B has joined #heat14:33
*** Ugallu has joined #heat14:33
*** 17SAA4IGS has joined #heat14:33
*** tspatzier has joined #heat14:33
*** daneyon has joined #heat14:33
*** 17SAA3Z2C has joined #heat14:33
*** lsmola has joined #heat14:33
*** ramishra has quit IRC14:33
*** pasquier-s has quit IRC14:33
*** 17SAA4I1B has quit IRC14:33
*** 17SAA4IGS has quit IRC14:33
*** tspatzier has quit IRC14:33
*** daneyon has quit IRC14:34
*** 17SAA3Z2C has quit IRC14:34
*** lsmola has quit IRC14:34
*** jprovazn has quit IRC14:34
*** EricGonczer_ has joined #heat14:35
*** DaveJ__ has quit IRC14:36
*** lee_ has quit IRC14:37
*** DaveJ__ has joined #heat14:37
*** jistr has quit IRC14:39
*** jistr has joined #heat14:39
*** jistr has quit IRC14:39
*** jistr has joined #heat14:40
*** radez_g0n3 is now known as radez14:40
*** ifarkas has quit IRC14:42
*** asifrc has joined #heat14:42
*** asifrc has quit IRC14:44
*** tspatzier__ is now known as tspatzier14:47
*** kopparam has joined #heat14:48
*** rakesh_hs has quit IRC14:49
*** Drago has joined #heat14:50
*** Qiming has quit IRC14:51
*** kopparam has quit IRC14:51
*** edmund2 has joined #heat14:53
*** kopparam has joined #heat14:54
*** andersonvom has joined #heat14:54
*** andersonvom has quit IRC14:55
*** andersonvom has joined #heat14:56
*** jcoufal has quit IRC15:01
*** tspatzier has quit IRC15:09
*** pasquier-s__ has joined #heat15:12
*** praveenkumar has joined #heat15:13
*** vijendar has joined #heat15:13
*** rpothier has quit IRC15:13
*** arbylee1 has joined #heat15:14
*** arbylee1 has quit IRC15:15
*** arbylee1 has joined #heat15:15
*** arbylee has quit IRC15:15
*** pasquier-s_ has quit IRC15:16
*** travisplummer has quit IRC15:20
*** pas-ha has quit IRC15:26
*** swygue has joined #heat15:26
*** ramishra_ has quit IRC15:26
*** praveenkumar has quit IRC15:27
*** crose has joined #heat15:32
*** Drago1 has joined #heat15:37
*** Drago has quit IRC15:38
*** praveenkumar has joined #heat15:38
*** jistr has quit IRC15:41
*** randallburt has joined #heat15:44
*** julienvey has quit IRC15:45
*** packet has joined #heat15:53
*** praveenkumar has quit IRC15:55
*** Drago1 has quit IRC15:56
*** sorantis_ has quit IRC15:56
*** tspatzier has joined #heat15:57
*** sorantis_ has joined #heat15:57
*** Drago1 has joined #heat16:00
*** tango has quit IRC16:03
*** asifrc has joined #heat16:05
openstackgerritGauvain Pocentek proposed a change to openstack/heat: Provide support status info for some resources  https://review.openstack.org/11911016:11
*** aweiteka has quit IRC16:11
*** sballe has quit IRC16:12
*** praveenkumar has joined #heat16:15
*** julienvey has joined #heat16:21
*** kebray has joined #heat16:21
*** aweiteka has joined #heat16:23
*** pasquier-s__ has quit IRC16:27
*** jergerber has joined #heat16:32
*** blues-man has quit IRC16:32
*** greghayn1 is now known as greghaynes16:33
*** radez is now known as radez_g0n316:34
*** radez_g0n3 is now known as radez16:38
*** randallburt has quit IRC16:39
*** julienvey has quit IRC16:42
openstackgerritSteven Hardy proposed a change to openstack/heat: Rework test_instance_group to be less coupled  https://review.openstack.org/11912716:45
*** sballe has joined #heat16:45
*** derekh has quit IRC16:51
*** sorantis_ has quit IRC16:54
*** tomek_adamczewsk has quit IRC16:54
*** kopparam has quit IRC16:56
*** mohits has joined #heat16:57
*** kopparam has joined #heat16:57
*** uru_ has joined #heat16:57
*** uru_ is now known as urulama_afk16:58
*** randallburt has joined #heat17:00
*** mohits has quit IRC17:06
*** lazy_prince is now known as killer_prince17:06
*** richa has joined #heat17:10
*** kopparam has quit IRC17:10
*** bvandenh has quit IRC17:10
*** kopparam has joined #heat17:11
*** alexheneveld has quit IRC17:13
*** kopparam has quit IRC17:15
*** alexheneveld has joined #heat17:16
*** swygue has quit IRC17:17
*** hdd has quit IRC17:19
*** harlowja has joined #heat17:20
*** jstrachan has quit IRC17:21
*** john-n-s| has quit IRC17:22
*** praveenkumar has quit IRC17:23
*** gokrokve has quit IRC17:26
*** reed has joined #heat17:30
*** blinky_ghost has quit IRC17:30
*** dsneddon has joined #heat17:34
*** john-n-seattle has joined #heat17:34
*** Drago1 has quit IRC17:36
*** Drago1 has joined #heat17:37
*** asifrc has quit IRC17:37
*** Drago has joined #heat17:37
*** gokrokve has joined #heat17:38
*** fayablazer has quit IRC17:40
*** alexheneveld has quit IRC17:42
*** packet has quit IRC17:45
*** Drago has quit IRC17:45
*** packet has joined #heat17:46
*** Drago1 has quit IRC17:47
*** tango has joined #heat17:47
*** Drago1 has joined #heat17:48
openstackgerritOpenStack Proposal Bot proposed a change to openstack/heat: Updated from global requirements  https://review.openstack.org/10516617:49
*** asifrc has joined #heat17:51
*** achampion has quit IRC17:51
*** Drago1 has quit IRC17:53
*** richa has quit IRC17:56
*** vijendar has quit IRC18:05
tangostevebaker: Pinging Steve ...18:09
*** che-arne has quit IRC18:13
*** randallburt has quit IRC18:15
*** Drago1 has joined #heat18:15
*** Drago1 has quit IRC18:19
*** Drago has joined #heat18:20
*** crose has quit IRC18:21
*** lipinski has quit IRC18:22
*** crose has joined #heat18:22
*** jpeeler has quit IRC18:25
*** tspatzier has quit IRC18:25
*** mkollaro has quit IRC18:36
*** randallburt has joined #heat18:39
*** randallburt has quit IRC18:40
*** randallburt has joined #heat18:40
*** Murali_ has quit IRC18:42
*** Murali__ has joined #heat18:42
*** lipinski has joined #heat18:43
*** Murali__ has quit IRC18:44
*** Drago1 has joined #heat18:46
*** Murali_ has joined #heat18:46
*** Murali_ has quit IRC18:46
*** Murali_ has joined #heat18:46
*** Drago has quit IRC18:46
*** Drago1 has quit IRC18:47
*** asifrc has quit IRC18:47
*** lipinski has quit IRC18:47
*** DaveJ__ has quit IRC18:48
openstackgerritA change was merged to openstack/heat: Improve docker resource deletion  https://review.openstack.org/11337118:48
Murali_is there any wiki avilable for writing custom software config / software deploy18:50
Murali_for hot yaml templates ?18:50
*** sdake has quit IRC18:51
*** dekozo has joined #heat18:51
*** crose has quit IRC18:56
*** jpeeler has joined #heat18:57
*** hdd has joined #heat18:57
*** asifrc has joined #heat19:00
stevebakerMurali_, I'll be writing something for that very soon (starting today)19:06
Murali_stevebaker : cool.. is there any sample hot yaml template available bootstrapping the agent19:08
*** kebray has quit IRC19:08
*** sgordon_ has quit IRC19:10
*** asifrc has quit IRC19:10
Murali_ i m thinking of to write custom resource type  for puppet agent bootstraping (all linux versions)19:10
Murali_do you believe is it achievable step19:11
*** asifrc has joined #heat19:11
*** vijendar has joined #heat19:13
stevebakerMurali_, what do you mean by bootstrapping? Installing everything required at boot time on a vanilla image?19:15
Murali_yes exactly19:15
Murali_i want to install puppet white boot time itself19:15
stevebakerMurali_, It might be possible, I started working on some cloud-config to do it yesterday.19:16
stevebakerMurali_, what distro do you want to run?19:17
Murali_stevebaker: but my doubt is how instance will reach  internet to install anything while boot time19:18
Murali_do we need to pass all proxy information  using user data section in the nova server ?19:19
Murali_i m not sure how we going to achieve that ... i m just wondering possibilities19:19
Murali_stevebaker : its ubuntu19:22
*** packet has quit IRC19:24
stevebakerMurali_, yes, you'll need to bring up a server which can access the internet19:30
stevebakerMurali_, ubuntu might make things harder, I don't think os-collect-config is packaged19:30
Murali_ok19:30
*** randallburt has quit IRC19:31
stevebakerMurali_, is there a reason you can't build an image to prep the agent? https://github.com/openstack/heat-templates/tree/master/hot/software-config/elements19:31
Murali_but by default new open stack instant cannon access internet right... SO can i export http proxies with in user data19:31
Murali_ok  i will ch k19:32
Murali_Stevebaker : sorry for buying ur time... just trying to understand better :)19:32
*** randallburt has joined #heat19:32
*** lipinski has joined #heat19:39
*** sgordon_ has joined #heat19:48
*** asifrc has quit IRC19:51
*** asifrc has joined #heat19:58
*** liusheng has quit IRC20:01
*** liusheng has joined #heat20:01
*** liusheng has quit IRC20:02
*** tonisbones has quit IRC20:05
stevebakertango: pong20:07
*** kebray has joined #heat20:08
*** alexheneveld has joined #heat20:11
*** sgordon_ has quit IRC20:13
*** randallburt has quit IRC20:20
*** david-lyle is now known as david-lyle_afk20:22
*** david-lyle_afk has quit IRC20:23
*** hdd has quit IRC20:25
*** randallburt has joined #heat20:27
*** david-lyle_afk has joined #heat20:28
*** lpmulligan has joined #heat20:28
*** david-lyle_afk has quit IRC20:29
*** Drago1 has joined #heat20:30
*** david-lyle_afk has joined #heat20:30
*** david-lyle_afk has quit IRC20:30
*** david-lyle_afk has joined #heat20:30
*** david-lyle has joined #heat20:32
*** david-lyle_afk has quit IRC20:32
*** asifrc has quit IRC20:37
*** asifrc has joined #heat20:39
tangostevebaker: Hi Steve, I uploaded new patches with minor tweaks from your and Angus' suggestions, wondering if you can take a quick look:20:46
*** ativelkov has left #heat20:46
tangostevebaker: https://review.openstack.org/#/c/10904220:46
tangostevebaker: https://review.openstack.org/#/c/10928420:46
tangostevebaker: https://review.openstack.org/#/c/10910520:47
tangostevebaker: https://review.openstack.org/#/c/10946520:47
tangostevebaker: Took the whole day yesterday to pass Jenkins20:47
stevebakertango: OK. I think we'll apply for a FFE for that blueprint20:48
tangostevebaker: Thanks20:48
*** mkollaro has joined #heat20:54
*** Drago1 has quit IRC20:56
*** jdob has quit IRC20:57
*** david-lyle has quit IRC20:58
*** david-lyle has joined #heat20:58
*** mkollaro has quit IRC21:00
*** gokrokve has quit IRC21:00
*** gokrokve has joined #heat21:01
openstackgerritSirushti Murugesan proposed a change to openstack/heat: Adds a new INIT_COMPLETE state for a stack  https://review.openstack.org/11920721:03
*** gokrokve has quit IRC21:04
*** gokrokve has joined #heat21:04
*** gokrokve has quit IRC21:04
*** gokrokve has joined #heat21:05
*** jmckind has quit IRC21:10
*** che-arne has joined #heat21:11
*** cdent has quit IRC21:16
openstackgerritSteven Hardy proposed a change to openstack/heat: Only delete stack user project from correct domain  https://review.openstack.org/11921221:19
*** gokrokve has quit IRC21:21
*** Drago1 has joined #heat21:25
*** ajc_ has joined #heat21:29
*** skyler has quit IRC21:29
*** Drago1 has quit IRC21:33
*** david-lyle has quit IRC21:34
*** asalkeld has joined #heat21:38
*** david-lyle has joined #heat21:40
*** sdake has joined #heat21:41
*** sdake has quit IRC21:44
*** sdake has joined #heat21:44
*** aweiteka has quit IRC21:47
*** Murali_ has quit IRC21:58
*** vijendar has quit IRC21:58
*** vijendar has joined #heat21:59
*** julienvey has joined #heat22:04
*** gokrokve has joined #heat22:04
*** asalkeld has quit IRC22:09
*** Drago1 has joined #heat22:12
*** gondoi is now known as zz_gondoi22:13
*** edmund2 has quit IRC22:15
*** sjmc7 has quit IRC22:16
*** gokrokve has quit IRC22:19
*** gokrokve has joined #heat22:19
*** gokrokve has quit IRC22:23
*** alexpilotti has quit IRC22:25
*** asalkeld has joined #heat22:26
*** david-lyle has quit IRC22:27
*** Drago1 has quit IRC22:30
*** EricGonczer_ has quit IRC22:31
*** achampion has joined #heat22:33
*** gokrokve has joined #heat22:37
*** gokrokve has quit IRC22:38
*** gokrokve has joined #heat22:39
*** cloutedcanine has joined #heat22:39
*** sarob has quit IRC22:42
*** julienvey has quit IRC22:42
*** alexheneveld has quit IRC22:45
*** tims has quit IRC22:53
*** cloutedcanine has quit IRC22:54
*** dkoper has joined #heat23:02
*** andersonvom has quit IRC23:06
*** ajc__ has joined #heat23:10
*** ajc_ has quit IRC23:13
*** asifrc has quit IRC23:14
*** randallburt has quit IRC23:16
*** kebray has quit IRC23:17
*** arbylee1 has quit IRC23:17
*** arbylee has joined #heat23:18
*** arbylee has quit IRC23:18
*** vijendar has quit IRC23:22
*** tango has quit IRC23:23
*** andersonvom has joined #heat23:38
*** andersonvom has quit IRC23:38
*** Drago has joined #heat23:43
*** sdake has quit IRC23:57

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