*** zz_gondoi has quit IRC | 00:03 | |
*** jasond has quit IRC | 00:04 | |
*** travisplummer has joined #heat | 00:06 | |
*** sjmc7_ has joined #heat | 00:06 | |
*** gondoi has joined #heat | 00:07 | |
*** spzala_ has joined #heat | 00:08 | |
*** therve has joined #heat | 00:11 | |
*** slagle_ has joined #heat | 00:11 | |
*** ifarkas_ has joined #heat | 00:12 | |
*** paybackman has quit IRC | 00:12 | |
*** ativelkov has quit IRC | 00:12 | |
*** therve` has quit IRC | 00:12 | |
*** sjmc7 has quit IRC | 00:12 | |
*** xmltok_ has quit IRC | 00:12 | |
*** spzala has quit IRC | 00:12 | |
*** ifarkas has quit IRC | 00:12 | |
*** cyli has quit IRC | 00:12 | |
*** slagle has quit IRC | 00:12 | |
*** cyli has joined #heat | 00:12 | |
*** spzala_ is now known as spzala | 00:12 | |
*** xmltok has joined #heat | 00:13 | |
*** ativelkov has joined #heat | 00:13 | |
*** packet has quit IRC | 00:18 | |
*** sballe has quit IRC | 00:23 | |
*** arbylee has joined #heat | 00:23 | |
*** gokrokve has joined #heat | 00:24 | |
*** dkoper has quit IRC | 00:26 | |
*** elynn has joined #heat | 00:36 | |
*** wpf has joined #heat | 00:36 | |
*** achampion has joined #heat | 00:42 | |
*** gokrokve_ has joined #heat | 00:43 | |
*** gokrokve has quit IRC | 00:43 | |
*** Drago has joined #heat | 00:49 | |
*** elynn has quit IRC | 00:50 | |
*** wpf has quit IRC | 00:50 | |
*** gokrokve_ has quit IRC | 00:50 | |
*** peoplemerge has quit IRC | 00:51 | |
*** kebray has joined #heat | 00:53 | |
*** lipinski has joined #heat | 00:58 | |
lipinski | I know I've asked this before, but still having issues. What is required on my VM image for using SoftwareDeployments? | 00:58 |
---|---|---|
lipinski | Do note - we are not using image-builder or anything like that. We are building our images by installing RPMs and snapshotting. | 00:58 |
asalkeld | hi lipinski | 00:59 |
asalkeld | http://docs.openstack.org/developer/heat/getting_started/jeos_building.html | 00:59 |
asalkeld | if you follow the tripleO elements you can see what is needed | 01:00 |
stevebaker | lipinski: 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/elements | 01:00 |
stevebaker | lipinski: specifically elements heat-config \ | 01:00 |
stevebaker | os-collect-config \ | 01:00 |
stevebaker | os-refresh-config \ | 01:00 |
*** gokrokve has joined #heat | 01: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-script | 01:01 |
stevebaker | lipinski: but of the last 4, you only need to do the ones for the hooks you're interested in | 01:01 |
stevebaker | lipinski: the important bit will be making sure all the requires os-refresh-config scripts and os-apply-config templates are installed | 01:01 |
lipinski | How do I know what hooks I need? | 01:01 |
lipinski | All I am trying to do is have a SoftwareConfig resource | 01:01 |
stevebaker | lipinski: what tool do you want to configure software on your servers? | 01:02 |
lipinski | And use a SoftwareDeployment resource to apply that Config to servers providing a differing set of input for each server | 01:02 |
lipinski | We are using a basic shell script | 01:02 |
lipinski | All we want to do is drop a unique piece of data on each VM. | 01:02 |
stevebaker | lipinski: then all you need is heat-config-script. Ignore cfn-init, puppet, salt | 01:02 |
lipinski | I can define a single SoftwareConfig, then use a SoftwareDeployment to apply that config to each with using a different input for each | 01:02 |
lipinski | do I need any os- ones? | 01:03 |
stevebaker | yes | 01:03 |
stevebaker | lipinski: do you need heat to be informed that your script has run? | 01:03 |
lipinski | nope | 01:03 |
lipinski | We are literally just dropping 3 different pieces of data (into 3 separate text files) on each VM. | 01:04 |
lipinski | 2 pieces of data is identical across all VMs, and one is unique for each | 01:04 |
*** Yanyanhu has joined #heat | 01:04 | |
stevebaker | lipinski: then you could always specify it as user_data_format: RAW and user_data: {get_file: your_file.sh} | 01:04 |
lipinski | Do you know what the RPM would be for heat-config-script? We are forced to use RedHat in our VMs. | 01:04 |
stevebaker | lipinski: or user_data: {get_resource: your_software_config_resource} | 01:05 |
lipinski | Right - but then I need a unique softwareconfig item for each VM | 01:05 |
lipinski | Using user_data I lose the ability to use inputs it seems. | 01:05 |
*** randallburt has quit IRC | 01:05 | |
lipinski | We 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 |
lipinski | if 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 |
stevebaker | lipinski: 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.yaml | 01:08 |
*** arbylee has quit IRC | 01:09 | |
lipinski | stevebaker: 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 |
lipinski | Plus, that seems rather messy.... SoftwareDeployments provide a lot of cool functionality for future possibilities. | 01:11 |
lipinski | I guess I may have to go that route though. | 01:11 |
*** dkoper has joined #heat | 01:11 | |
stevebaker | lipinski: 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 packaged | 01:12 |
lipinski | stevebaker: so you don't think the hot software-config stuff will be packaged into RPM? | 01:15 |
stevebaker | lipinski: actually openstack-heat-templates is packaged, but I would strongly suggest you don't go there | 01:16 |
stevebaker | lipinski: 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 #heat | 01:18 | |
lipinski | stevebaker: thanks for the help. I'll have to discuss with our team. | 01:19 |
stevebaker | lipinski: 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.conf | 01:19 |
stevebaker | lipinski: feel free to raise a bug against heat-templates for a template which demonstrates this approach | 01:20 |
lipinski | ok, will do. | 01:20 |
*** erkules has quit IRC | 01:20 | |
*** liusheng has joined #heat | 01:21 | |
lipinski | Would this be a bug to demonstrate using softwaredeployments without imagebuilder-based image? Is that appropraite wording/title? | 01:21 |
stevebaker | lipinski: yes, that would do. | 01:23 |
asalkeld | stevebaker, a self building image would be super neat | 01:23 |
asalkeld | and then use glance.image to upload to glance | 01:24 |
asalkeld | much easier to help users | 01:24 |
stevebaker | lipinski: when you say rpm + snapshot, do you mean in OpenStack to a cinder volume? | 01:24 |
lipinski | I 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 |
stevebaker | lipinski: sure, but the image is built outside of an openstack? | 01:25 |
lipinski | Specifically, 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 #heat | 01:26 | |
lipinski | yes - the image is built outside OpenStack. | 01:26 |
stevebaker | ok, ta | 01:26 |
lipinski | because it is actually built in our software build environment, where all kinds of other stuff happens, etc. | 01:26 |
lipinski | We have software that runs on bare metal and VM/cloud, so there is commonality in our build stuff. | 01:27 |
stevebaker | lipinski: can you depend on package repos like RDO during image build? | 01:27 |
lipinski | I 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 |
lipinski | I Think they manually pull them into local repo, then the automated build uses that. | 01:28 |
*** AlexYang has quit IRC | 01:28 | |
stevebaker | ok | 01:29 |
*** samstav has quit IRC | 01:30 | |
*** ramishra has joined #heat | 01:30 | |
lipinski | ok, new question. Somewhat related even though doesn't seem like it. | 01:31 |
lipinski | Is there a way to lookup a resource to get it's metadata using the resource ID instead of name? | 01:32 |
*** bnemec has quit IRC | 01:32 | |
lipinski | for example, I can do heat resource-metadata <stack_name> <resource_nam> | 01:32 |
lipinski | But, I can't seem to do | 01:32 |
lipinski | heat resource-metadata <stack_name> <resource_ID> | 01:32 |
*** bnemec has joined #heat | 01:32 | |
stevebaker | lipinski: no, but why do you need to? | 01:33 |
lipinski | well, long story... I have a piece of metadata associated with a server that I want to lookup (from another server). | 01:33 |
stevebaker | lipinski: I think using name instead of ID was needed to avoid resource circular dependencies (or self-referencing resources) | 01:34 |
lipinski | At the time of that lookup, I have the VMID (from cloud-init), but don't have the resource name. | 01:34 |
stevebaker | lipinski: couldn't you just pass the resource name in one of the server's boot scripts? | 01:35 |
lipinski | yes, that's what I was thinking. But, then we have to pass that resource name around - because it is a different server. | 01:36 |
lipinski | we 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 IRC | 01:38 | |
stevebaker | lipinski: 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 |
lipinski | resoruce-list doesn't show the IDs... | 01:39 |
lipinski | I'd have to do resource-list to get all the resources, then go through each one. | 01:39 |
lipinski | which would take a good bit of time... | 01:39 |
*** spzala has quit IRC | 01:40 | |
stevebaker | lipinski: 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 need | 01:40 |
*** achampion has joined #heat | 01:41 | |
lipinski | hmm - I didn't know heatclient was a officially supported python lib API. I thought the command-line client was all that was "officially" available | 01:42 |
*** achampion has quit IRC | 01:43 | |
*** flaxburst has joined #heat | 01:45 | |
*** flaxburst has quit IRC | 01:45 | |
stevebaker | not at all! If you're parsing pretty-table output then yr doin it wrong ;) | 01:46 |
*** achampion has joined #heat | 01:46 | |
*** Murali_ has joined #heat | 01:47 | |
lipinski | not parsing output at this point... | 01:48 |
lipinski | well, we are, for heat resource-metadata and a few other non-pretty-table things | 01:48 |
lipinski | We're not python developers, so this is new territory for us. | 01:49 |
stevebaker | yep, thats ok | 01:49 |
*** achampio1 has joined #heat | 01:51 | |
*** achampio1 has quit IRC | 01:52 | |
*** achampion has quit IRC | 01:52 | |
*** ramishra has quit IRC | 01:53 | |
*** ramishra has joined #heat | 01:53 | |
*** nosnos has joined #heat | 01:54 | |
*** dkoper has quit IRC | 01:58 | |
*** m_22 has joined #heat | 01:59 | |
*** m_22 has left #heat | 01:59 | |
*** Drago has quit IRC | 02:05 | |
*** huangtianhua has joined #heat | 02:12 | |
*** elynn has joined #heat | 02:15 | |
*** elynn has quit IRC | 02:20 | |
*** ramishra has quit IRC | 02:20 | |
*** ramishra has joined #heat | 02:25 | |
*** achampion has joined #heat | 02:28 | |
*** pmyers has joined #heat | 02:33 | |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.contrib https://review.openstack.org/109484 | 02:35 |
*** vijendar has quit IRC | 02:37 | |
*** hdd has quit IRC | 02:37 | |
openstackgerrit | A change was merged to openstack/heat: Add validate function for AWS::EC2::EIPAssociation https://review.openstack.org/117938 | 02:42 |
openstackgerrit | A change was merged to openstack/heat: Modify the way to get 'network_id' of the port https://review.openstack.org/117961 | 02:43 |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.api https://review.openstack.org/109487 | 02:47 |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.common https://review.openstack.org/109506 | 02:50 |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.contrib https://review.openstack.org/109484 | 02:54 |
*** praveenkumar has joined #heat | 02:55 | |
*** KanagarajM has joined #heat | 02:58 | |
*** david-lyle has joined #heat | 02:59 | |
*** sgordon_ has joined #heat | 03:00 | |
*** zz_naotok is now known as naotok | 03:04 | |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.contrib https://review.openstack.org/109484 | 03:05 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Add nested_depth to internal _create_stack RPC interface https://review.openstack.org/115732 | 03:07 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Unit test autoscaling._calculate_new_capacity https://review.openstack.org/118907 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Move TestInstanceGroup to test_instance_group.py https://review.openstack.org/118906 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Convert the autoscaling policy tests into unit tests https://review.openstack.org/118909 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Add nested_depth column to stack table https://review.openstack.org/115730 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: engine service add nested_depth to create_stack https://review.openstack.org/115731 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Move some AutoScalingGroup validation tests to a separate file https://review.openstack.org/118908 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: engine service add stack_user_project_id to create_stack interface https://review.openstack.org/118136 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Add stack_user_project_id to _create_stack RPC interface https://review.openstack.org/118137 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Add user_creds_id to _create_stack RPC interface https://review.openstack.org/116335 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: engine service add user_creds_id to create_stack interface https://review.openstack.org/116334 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: StackResource add show_deleted option to nested() accessor method https://review.openstack.org/116333 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: StackResource add force_reload to nested() accessor method https://review.openstack.org/116332 | 03:08 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Rewrite AutoScalingGroup adjustment tests as unit tests https://review.openstack.org/118948 | 03:08 |
cmyster | morning | 03:09 |
asalkeld | hi cmyster | 03:09 |
cmyster | heya | 03:09 |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.api https://review.openstack.org/109487 | 03:10 |
*** sgordon_ has quit IRC | 03:14 | |
*** ajc_ has joined #heat | 03:14 | |
*** sgordon_ has joined #heat | 03:16 | |
openstackgerrit | liusheng proposed a change to openstack/heat: Log translation hint for Heat.engine https://review.openstack.org/109512 | 03:17 |
*** achampion has quit IRC | 03:30 | |
*** achampion has joined #heat | 03:31 | |
*** achampion has quit IRC | 03:32 | |
*** asifrc has joined #heat | 03:37 | |
*** arbylee has quit IRC | 03:38 | |
*** achampion has joined #heat | 03:39 | |
*** shardy_z has quit IRC | 03:40 | |
*** david-lyle has quit IRC | 03:44 | |
asalkeld | stevebaker, is this important: https://review.openstack.org/#/c/110750/9 | 03:50 |
asalkeld | heatclient auth patch | 03:50 |
asalkeld | (big change) | 03:50 |
stevebaker | asalkeld: v3 support is useful, I ran it locally for a while | 03:51 |
asalkeld | ok | 03:51 |
*** elynn has joined #heat | 03:52 | |
*** Murali_ has quit IRC | 03:55 | |
*** Murali_ has joined #heat | 03:56 | |
*** elynn has quit IRC | 03:56 | |
*** sgordon_ has quit IRC | 04:02 | |
*** hdd has joined #heat | 04:21 | |
*** LiJiansheng has joined #heat | 04:27 | |
*** tango has joined #heat | 04:28 | |
*** morganfainberg_Z is now known as morganfainberg | 04:29 | |
*** nkhare has joined #heat | 04:39 | |
*** Murali__ has joined #heat | 04:42 | |
*** Murali_ has quit IRC | 04:42 | |
*** ramishra has quit IRC | 04:44 | |
*** edmund2 has joined #heat | 04:46 | |
*** edmund has quit IRC | 04:46 | |
*** ramishra has joined #heat | 04:51 | |
*** ramishra_ has joined #heat | 04:56 | |
*** ramishra has quit IRC | 04:57 | |
*** ramishra_ has quit IRC | 04:58 | |
*** ramishra has joined #heat | 04:59 | |
*** ramishra has quit IRC | 04:59 | |
*** ramishra has joined #heat | 05:00 | |
*** hdd has quit IRC | 05:03 | |
*** saju_m has joined #heat | 05:04 | |
*** KanagarajM has quit IRC | 05:06 | |
*** elynn has joined #heat | 05:06 | |
*** uru-bot is now known as urulama | 05:10 | |
*** elynn has quit IRC | 05:11 | |
*** rakesh_hs has joined #heat | 05:14 | |
*** huangtianhua has quit IRC | 05:21 | |
skraynev | Good morning | 05:27 |
*** Murali__ has quit IRC | 05:27 | |
asalkeld | hi skraynev | 05:30 |
skraynev | hey asalkeld | 05:30 |
*** Murali_ has joined #heat | 05:32 | |
*** killer_prince is now known as lazy_prince | 05:34 | |
*** Yanyan has joined #heat | 05:34 | |
*** Yanyanhu has quit IRC | 05:37 | |
*** KanagarajM has joined #heat | 05:40 | |
*** harlowja_at_home has joined #heat | 05:43 | |
*** ishant has joined #heat | 05:48 | |
*** urulama has quit IRC | 05:49 | |
*** edmund2 has quit IRC | 05:50 | |
*** harlowja is now known as harlowja_away | 05:50 | |
*** kebray has quit IRC | 05:51 | |
*** kebray has joined #heat | 05:57 | |
*** achampion has quit IRC | 05:59 | |
*** bmahalakshmi has joined #heat | 06:01 | |
openstackgerrit | OpenStack Proposal Bot proposed a change to openstack/heat: Imported Translations from Transifex https://review.openstack.org/116796 | 06:02 |
*** saju_m has quit IRC | 06:11 | |
*** kebray has quit IRC | 06:11 | |
*** lazy_prince is now known as killer_prince | 06:14 | |
*** Murali_ has quit IRC | 06:17 | |
*** killer_prince is now known as lazy_prince | 06:17 | |
*** jprovazn has joined #heat | 06:18 | |
*** saju_m has joined #heat | 06:20 | |
*** harlowja_at_home has quit IRC | 06:23 | |
*** huangtianhua has joined #heat | 06:30 | |
*** bvandenh has joined #heat | 06:33 | |
*** pas-ha has joined #heat | 06:34 | |
*** kopparam has joined #heat | 06:34 | |
*** asifrc has quit IRC | 06:36 | |
*** tspatzier has joined #heat | 06:39 | |
pas-ha | morning all | 06:41 |
asalkeld | hi pas-ha | 06:45 |
*** KanagarajM has quit IRC | 06:48 | |
*** saju_m has quit IRC | 06:49 | |
*** tango has quit IRC | 06:54 | |
*** sanjayu has joined #heat | 07:00 | |
*** pasquier-s has joined #heat | 07:02 | |
*** sarob has quit IRC | 07:03 | |
*** stevebaker has quit IRC | 07:04 | |
*** adam_g has quit IRC | 07:04 | |
*** wendar has quit IRC | 07:04 | |
*** wendar_ has joined #heat | 07:04 | |
*** stevebaker has joined #heat | 07:06 | |
*** adam_g has joined #heat | 07:06 | |
*** adam_g has quit IRC | 07:06 | |
*** adam_g has joined #heat | 07:06 | |
skraynev | hi pas-ha | 07:06 |
*** jistr has joined #heat | 07:09 | |
*** saju_m has joined #heat | 07:12 | |
*** sabeen has quit IRC | 07:14 | |
*** sabeen has joined #heat | 07:14 | |
*** saju_m has quit IRC | 07:16 | |
openstackgerrit | A change was merged to openstack/heat: Fix a wrong argument name at Heat keystoneclient plugin https://review.openstack.org/107830 | 07:16 |
*** KanagarajM has joined #heat | 07:20 | |
*** jstrachan has joined #heat | 07:20 | |
*** jcoufal has joined #heat | 07:21 | |
*** KanagarajM has quit IRC | 07:23 | |
*** rakesh_hs2 has joined #heat | 07:24 | |
*** rakesh_hs has quit IRC | 07:24 | |
*** ramishra has quit IRC | 07:24 | |
*** rakesh_hs2 has quit IRC | 07:25 | |
*** saju_m has joined #heat | 07:25 | |
*** ramishra has joined #heat | 07:25 | |
*** ramishra has quit IRC | 07:25 | |
*** ramishra has joined #heat | 07:26 | |
*** rakesh_hs has joined #heat | 07:27 | |
*** sarob has joined #heat | 07:27 | |
*** rakesh_hs has quit IRC | 07:28 | |
*** ishant has quit IRC | 07:29 | |
*** rakesh_hs has joined #heat | 07:29 | |
*** shardy has joined #heat | 07:30 | |
*** Putns has joined #heat | 07:31 | |
*** mspreitz has quit IRC | 07:40 | |
*** elynn has joined #heat | 07:41 | |
*** ramishra has quit IRC | 07:42 | |
Putns | Hey. 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 #heat | 07:42 | |
shardy | Putns: creating a resource with a handle_signal method, and having something (ceilometer?) signal it periodically is the way to go | 07:43 |
shardy | there 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 that | 07:43 |
Putns | how do i get ceilometer to periodically signal my resource? | 07:44 |
shardy | Putns: alternatively, have heat spin up an instance and run the code inside that via a cron job | 07:44 |
shardy | (depending on whether you're creating a resource plugin or a template/provider resource) | 07:45 |
*** elynn has quit IRC | 07:45 | |
Putns | resource plugin | 07:46 |
shardy | Putns: you can create a ceilometer alarm with alarm criteria which always evaluate to true and specify the required evaluation period | 07:46 |
Putns | i see | 07:47 |
shardy | Bit of a hack really, this should probably more properly be handled by a workflow service, e.g mistral signals heat | 07:47 |
shardy | but I'm not sure what the status of mistral is atm | 07:47 |
Putns | yeah, it does seem like a hack :( | 07:47 |
Putns | was hoping for some way to have it all contained within my resource | 07:48 |
Putns | oh well, this does give some ideas on how to proceed, many thanks | 07:49 |
skraynev | shardy: wow. did you say, that periodic mechanism (so and autoscaling without ceilometer) does not work for multi-engines? | 07:49 |
shardy | skraynev: correct, we have no way of deciding which engine should run the periodic task, so they'll all race each other | 07:50 |
shardy | anyone running multiple engines must use ceilometer and not CWLiteAlarm | 07:50 |
*** Guest60909 is now known as Adri2000 | 07:50 | |
*** Adri2000 has joined #heat | 07:50 | |
*** julienvey has joined #heat | 07:51 | |
skraynev | shardy: Ou. You really helped me :) thanks. It's very important case for me. | 07:51 |
shardy | skraynev: https://blueprints.launchpad.net/heat/+spec/deprecate-stack-watch | 07:51 |
shardy | bug #1322128 | 07:51 |
uvirtbot | Launchpad bug 1322128 in heat "watch timers can't be disabled for multiple engines" [Undecided,In progress] https://launchpad.net/bugs/1322128 | 07:51 |
skraynev | shardy: good news according to your advice I slowly migrate to ceilometer :) | 07:51 |
skraynev | shardy: thx | 07:52 |
tspatzier | hi shardy | 07:54 |
shardy | tspatzier: hi! | 07:54 |
tspatzier | shardy: 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 |
shardy | tspatzier: Thanks - that's looking likely to be deferred to K now so I probably will do another iteration adjusting the target release | 07:56 |
tspatzier | shardy: alright, then I'll just let it hang around as is | 07:57 |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Check resource_id is None before deleting https://review.openstack.org/111879 | 08:04 |
*** sabeen has quit IRC | 08:11 | |
*** derekh has joined #heat | 08:15 | |
*** sorantis_ has joined #heat | 08:16 | |
*** mohits has joined #heat | 08:18 | |
*** ramishra has joined #heat | 08:23 | |
*** ramishra has quit IRC | 08:23 | |
*** ramishra has joined #heat | 08:24 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Implement CFN CancelUpdateStack action https://review.openstack.org/102852 | 08:26 |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Add RPC API for cancel update stack https://review.openstack.org/102851 | 08:26 |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Add Heat REST API action for cancel update stack https://review.openstack.org/116911 | 08:26 |
*** Putns has left #heat | 08:26 | |
*** sorantis__ has joined #heat | 08:27 | |
*** sorantis_ has quit IRC | 08:29 | |
pas-ha | guys, please review https://review.openstack.org/#/c/102851 - need your opinions on implementation (and may be splitting the change to more patches?) | 08:29 |
asalkeld | shardy, https://ahsalkeld.wordpress.com/2014/09/04/how-to-profile-heat-using-osprofile/ | 08:33 |
shardy | asalkeld: nice, thanks! :) | 08:35 |
asalkeld | np | 08:35 |
*** stannie has joined #heat | 08:36 | |
*** saju_m has quit IRC | 08:41 | |
openstackgerrit | huangtianhua proposed a change to openstack/heat: Help message of configurations support i18n https://review.openstack.org/119002 | 08:49 |
*** ramishra has quit IRC | 08:52 | |
*** ramishra has joined #heat | 08:53 | |
*** ramishra has quit IRC | 08:57 | |
*** wpf has joined #heat | 09:01 | |
*** elynn has joined #heat | 09:01 | |
*** gokrokve_ has joined #heat | 09:04 | |
*** Ng has quit IRC | 09:04 | |
*** Goneri has joined #heat | 09:05 | |
*** Ng_ has joined #heat | 09:05 | |
*** elynn has quit IRC | 09:05 | |
*** wpf has quit IRC | 09:06 | |
*** che-arne has joined #heat | 09:07 | |
*** gokrokve has quit IRC | 09:07 | |
*** gokrokve_ has quit IRC | 09:08 | |
*** mkollaro has joined #heat | 09:10 | |
*** ifarkas_ has quit IRC | 09:15 | |
*** ifarkas has joined #heat | 09:17 | |
*** andreaf has joined #heat | 09:22 | |
*** che-arne has quit IRC | 09:27 | |
*** nkhare has quit IRC | 09:30 | |
*** rakesh_hs has quit IRC | 09:30 | |
*** rakesh_hs has joined #heat | 09:31 | |
*** che-arne has joined #heat | 09:31 | |
openstackgerrit | Steven Hardy proposed a change to openstack/heat-templates: Add a server with volumes ResourceGroup example https://review.openstack.org/119015 | 09:31 |
*** rakesh_hs has quit IRC | 09:31 | |
*** rakesh_hs has joined #heat | 09:34 | |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Add OSprofiler integration into Heat https://review.openstack.org/118115 | 09:39 |
*** saju_m has joined #heat | 09:41 | |
*** saju_m has quit IRC | 09:42 | |
*** saju_m has joined #heat | 09:43 | |
*** gokrokve has joined #heat | 09:46 | |
*** Yanyan has quit IRC | 09:51 | |
*** gokrokve has quit IRC | 09:52 | |
*** sorantis__ has quit IRC | 10:01 | |
*** wpf has joined #heat | 10:02 | |
*** Adri2000 has quit IRC | 10:05 | |
*** Adri2000 has joined #heat | 10:05 | |
*** blinky_ghost has joined #heat | 10:06 | |
*** Adri2000 is now known as Guest71503 | 10:06 | |
*** fayablazer has joined #heat | 10:07 | |
*** pasquier-s has quit IRC | 10:07 | |
*** wpf has quit IRC | 10:08 | |
*** julienvey has quit IRC | 10:11 | |
*** sorantis has joined #heat | 10:14 | |
*** nosnos has quit IRC | 10:14 | |
*** nosnos has joined #heat | 10:15 | |
*** saju_m has quit IRC | 10:16 | |
*** nosnos_ has joined #heat | 10:18 | |
*** Ugallu has joined #heat | 10:18 | |
*** nosnos has quit IRC | 10:19 | |
*** nkhare has joined #heat | 10:22 | |
*** Ugallu has quit IRC | 10:22 | |
*** swygue has quit IRC | 10:22 | |
*** asalkeld has quit IRC | 10:23 | |
*** cdent has joined #heat | 10:30 | |
*** julienvey has joined #heat | 10:31 | |
*** k4n0_ has quit IRC | 10:33 | |
*** k4n0 has joined #heat | 10:35 | |
*** elynn has joined #heat | 10:36 | |
*** Ugallu has joined #heat | 10:38 | |
*** elynn has quit IRC | 10:41 | |
*** naotok is now known as zz_naotok | 10:45 | |
*** gokrokve has joined #heat | 10:46 | |
*** elynn has joined #heat | 10:48 | |
*** wpf has joined #heat | 10:48 | |
*** gokrokve has quit IRC | 10:51 | |
*** Guest71503 is now known as Adri2000_ | 10:51 | |
*** Adri2000_ has joined #heat | 10:51 | |
*** ramishra has joined #heat | 10:53 | |
*** ramishra has quit IRC | 10:59 | |
*** Ng_ is now known as Ng | 11:01 | |
*** bmahalakshmi has quit IRC | 11:05 | |
*** bmahalakshmi has joined #heat | 11:08 | |
*** lipinski has quit IRC | 11:18 | |
*** saju_m has joined #heat | 11:19 | |
*** ramishra has joined #heat | 11:22 | |
*** ajc_ has quit IRC | 11:25 | |
*** jdob has joined #heat | 11:27 | |
*** ramishra has quit IRC | 11:27 | |
*** jprovazn has quit IRC | 11:28 | |
*** bmahalakshmi has quit IRC | 11:29 | |
*** sorantis has quit IRC | 11:34 | |
*** gokrokve has joined #heat | 11:46 | |
*** jprovazn has joined #heat | 11:47 | |
*** jdandrea_ has joined #heat | 11:47 | |
*** tomek_adamczewsk has quit IRC | 11:48 | |
*** tomek_adamczewsk has joined #heat | 11:49 | |
*** gonery has joined #heat | 11:50 | |
*** jasond`` has joined #heat | 11:50 | |
*** OMCK_ has joined #heat | 11:50 | |
*** greghayn1 has joined #heat | 11:50 | |
*** jdandrea has quit IRC | 11:50 | |
*** greghaynes has quit IRC | 11:50 | |
*** jasond` has quit IRC | 11:51 | |
*** OMCK has quit IRC | 11:51 | |
*** Goneri has quit IRC | 11:51 | |
*** jdandrea_ is now known as jdandrea | 11:51 | |
*** OMCK_ is now known as OMCK | 11:51 | |
*** gokrokve has quit IRC | 11:51 | |
*** sgordon_ has joined #heat | 11:52 | |
*** sorantis_ has joined #heat | 11:52 | |
*** huangtianhua has quit IRC | 11:53 | |
*** justin-8 has quit IRC | 11:54 | |
*** justin-8 has joined #heat | 11:55 | |
*** nkhare has quit IRC | 11:58 | |
*** nkhare has joined #heat | 12:01 | |
*** achampion has joined #heat | 12:02 | |
*** jprovazn has quit IRC | 12:07 | |
*** aweiteka has joined #heat | 12:07 | |
*** achampion has quit IRC | 12:09 | |
*** swygue has joined #heat | 12:12 | |
*** nkhare_ has joined #heat | 12:14 | |
*** pasquier-s has joined #heat | 12:15 | |
*** rpothier has joined #heat | 12:26 | |
*** justin-8_ has joined #heat | 12:26 | |
*** erkules_ is now known as erkules | 12:29 | |
*** justin-8 has quit IRC | 12:29 | |
*** Drago has joined #heat | 12:32 | |
*** Adri2000_ is now known as Adri2000 | 12:33 | |
*** lee_ has joined #heat | 12:39 | |
*** saju_m has quit IRC | 12:40 | |
*** LiJiansheng has quit IRC | 12:41 | |
*** gokrokve has joined #heat | 12:46 | |
*** tonisbones has joined #heat | 12:49 | |
*** jprovazn has joined #heat | 12:49 | |
*** gokrokve has quit IRC | 12:51 | |
*** kopparam has quit IRC | 12:55 | |
*** blues-man has joined #heat | 12:55 | |
*** radez_g0n3 is now known as radez | 13:02 | |
*** Drago has quit IRC | 13:02 | |
*** achampion has joined #heat | 13:04 | |
*** jcoufal has quit IRC | 13:08 | |
*** jcoufal has joined #heat | 13:11 | |
*** k4n0 has quit IRC | 13:12 | |
*** nkhare_ has quit IRC | 13:14 | |
*** nkhare has quit IRC | 13:14 | |
openstackgerrit | Gauvain Pocentek proposed a change to openstack/heat: doc: Improve use of the support_status attribute https://review.openstack.org/116443 | 13:20 |
*** bvandenh has quit IRC | 13:23 | |
*** bvandenh has joined #heat | 13:23 | |
*** swygue has quit IRC | 13:24 | |
*** Murali has joined #heat | 13:27 | |
*** lazy_prince is now known as killer_prince | 13:28 | |
*** sorantis__ has joined #heat | 13:28 | |
*** ramishra has joined #heat | 13:29 | |
*** sorantis_ has quit IRC | 13:30 | |
*** Murali has quit IRC | 13:33 | |
*** lipinski has joined #heat | 13:33 | |
*** sanjayu has quit IRC | 13:34 | |
*** jmckind has joined #heat | 13:34 | |
*** ramishra has quit IRC | 13:34 | |
*** ramishra has joined #heat | 13:34 | |
*** Qiming has joined #heat | 13:37 | |
*** Drago has joined #heat | 13:39 | |
*** edmund2 has joined #heat | 13:40 | |
*** tango has joined #heat | 13:42 | |
*** ramishra has quit IRC | 13:42 | |
*** ramishra has joined #heat | 13:43 | |
*** mohits has quit IRC | 13:45 | |
*** DaveJ__ has joined #heat | 13:45 | |
*** gokrokve has joined #heat | 13:46 | |
*** sjmc7_ is now known as sjmc7 | 13:47 | |
*** Murali_ has joined #heat | 13:48 | |
*** alexpilotti has joined #heat | 13:48 | |
*** nosnos_ has quit IRC | 13:50 | |
*** gokrokve has quit IRC | 13:51 | |
*** nosnos has joined #heat | 13:51 | |
*** Murali_ has quit IRC | 13:52 | |
*** sballe has joined #heat | 13:55 | |
*** nosnos has quit IRC | 13:55 | |
*** Murali_ has joined #heat | 13:56 | |
*** radez is now known as radez_g0n3 | 14:00 | |
*** killer_prince is now known as lazy_prince | 14:00 | |
*** tims has joined #heat | 14:03 | |
*** praveenkumar has quit IRC | 14:04 | |
*** tspatzier__ has joined #heat | 14:05 | |
*** arbylee has joined #heat | 14:05 | |
*** pasquier-s_ has joined #heat | 14:05 | |
*** arbylee has quit IRC | 14:06 | |
*** daneyon_ has joined #heat | 14:06 | |
*** aweiteka has quit IRC | 14:06 | |
*** edmund3 has joined #heat | 14:06 | |
*** ramishra_ has joined #heat | 14:07 | |
*** edmund3 has quit IRC | 14:09 | |
*** sorantis__ has quit IRC | 14:10 | |
jdandrea | Reality 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 #heat | 14:14 | |
larsks | jdandrea: 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 |
jdandrea | three in a minute, sure. 60? :) | 14:15 |
larsks | jdandrea: how many stacks do you have deployed right now? | 14:15 |
jdandrea | larsks: One. :) | 14:15 |
larsks | Hmm, me too. Is it big and complicated, or relatively simple? | 14:16 |
jdandrea | 12 VMs, 12 Cinder volumes, 12 volume attachments. | 14:16 |
jdandrea | ... and the related ports, floating IPs ... | 14:16 |
*** ramishra has quit IRC | 14:17 | |
*** edmund2 has quit IRC | 14:17 | |
*** pasquier-s has quit IRC | 14:17 | |
*** elynn has quit IRC | 14:17 | |
*** Ugallu has quit IRC | 14:17 | |
*** blinky_ghost has quit IRC | 14:17 | |
*** mkollaro has quit IRC | 14:17 | |
*** tspatzier has quit IRC | 14:17 | |
*** daneyon has quit IRC | 14:17 | |
*** jpeeler has quit IRC | 14:17 | |
*** lsmola has quit IRC | 14:17 | |
*** harlowja_away has quit IRC | 14:17 | |
larsks | I wonder if the amount of polling is related to the number of resources? I have a two vms and no volumes... | 14:17 |
jdandrea | What I'm seeing is that Cinder is taking a really long time to create volumes. | 14:17 |
jdandrea | I'm wondering that as well. Yeah. | 14:17 |
larsks | You could probably investigate exactly what it's checking using tcpdump. | 14:17 |
jdandrea | Yes. Yes we can. Hehe. :) | 14:18 |
*** aweiteka has joined #heat | 14:18 | |
jdandrea | I 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 IRC | 14:20 | |
*** asifrc has joined #heat | 14:20 | |
*** elynn has joined #heat | 14:22 | |
*** jpeeler has joined #heat | 14:22 | |
*** jpeeler has joined #heat | 14:22 | |
*** asifrc has quit IRC | 14:23 | |
*** arbylee has joined #heat | 14:24 | |
*** blinky_ghost has joined #heat | 14:24 | |
*** mkollaro has joined #heat | 14:25 | |
*** lsmola has joined #heat | 14:25 | |
*** jistr has quit IRC | 14:27 | |
*** andreaf has quit IRC | 14:28 | |
*** andreaf has joined #heat | 14:28 | |
*** andreaf is now known as andreaf_ | 14:28 | |
*** jistr has joined #heat | 14:29 | |
*** david-lyle has joined #heat | 14:31 | |
*** gokrokve has joined #heat | 14:32 | |
*** lsmola is now known as 18VAAT2X4 | 14:33 | |
*** hdd has joined #heat | 14:33 | |
*** ramishra has joined #heat | 14:33 | |
*** pasquier-s has joined #heat | 14:33 | |
*** 17SAA4I1B has joined #heat | 14:33 | |
*** Ugallu has joined #heat | 14:33 | |
*** 17SAA4IGS has joined #heat | 14:33 | |
*** tspatzier has joined #heat | 14:33 | |
*** daneyon has joined #heat | 14:33 | |
*** 17SAA3Z2C has joined #heat | 14:33 | |
*** lsmola has joined #heat | 14:33 | |
*** ramishra has quit IRC | 14:33 | |
*** pasquier-s has quit IRC | 14:33 | |
*** 17SAA4I1B has quit IRC | 14:33 | |
*** 17SAA4IGS has quit IRC | 14:33 | |
*** tspatzier has quit IRC | 14:33 | |
*** daneyon has quit IRC | 14:34 | |
*** 17SAA3Z2C has quit IRC | 14:34 | |
*** lsmola has quit IRC | 14:34 | |
*** jprovazn has quit IRC | 14:34 | |
*** EricGonczer_ has joined #heat | 14:35 | |
*** DaveJ__ has quit IRC | 14:36 | |
*** lee_ has quit IRC | 14:37 | |
*** DaveJ__ has joined #heat | 14:37 | |
*** jistr has quit IRC | 14:39 | |
*** jistr has joined #heat | 14:39 | |
*** jistr has quit IRC | 14:39 | |
*** jistr has joined #heat | 14:40 | |
*** radez_g0n3 is now known as radez | 14:40 | |
*** ifarkas has quit IRC | 14:42 | |
*** asifrc has joined #heat | 14:42 | |
*** asifrc has quit IRC | 14:44 | |
*** tspatzier__ is now known as tspatzier | 14:47 | |
*** kopparam has joined #heat | 14:48 | |
*** rakesh_hs has quit IRC | 14:49 | |
*** Drago has joined #heat | 14:50 | |
*** Qiming has quit IRC | 14:51 | |
*** kopparam has quit IRC | 14:51 | |
*** edmund2 has joined #heat | 14:53 | |
*** kopparam has joined #heat | 14:54 | |
*** andersonvom has joined #heat | 14:54 | |
*** andersonvom has quit IRC | 14:55 | |
*** andersonvom has joined #heat | 14:56 | |
*** jcoufal has quit IRC | 15:01 | |
*** tspatzier has quit IRC | 15:09 | |
*** pasquier-s__ has joined #heat | 15:12 | |
*** praveenkumar has joined #heat | 15:13 | |
*** vijendar has joined #heat | 15:13 | |
*** rpothier has quit IRC | 15:13 | |
*** arbylee1 has joined #heat | 15:14 | |
*** arbylee1 has quit IRC | 15:15 | |
*** arbylee1 has joined #heat | 15:15 | |
*** arbylee has quit IRC | 15:15 | |
*** pasquier-s_ has quit IRC | 15:16 | |
*** travisplummer has quit IRC | 15:20 | |
*** pas-ha has quit IRC | 15:26 | |
*** swygue has joined #heat | 15:26 | |
*** ramishra_ has quit IRC | 15:26 | |
*** praveenkumar has quit IRC | 15:27 | |
*** crose has joined #heat | 15:32 | |
*** Drago1 has joined #heat | 15:37 | |
*** Drago has quit IRC | 15:38 | |
*** praveenkumar has joined #heat | 15:38 | |
*** jistr has quit IRC | 15:41 | |
*** randallburt has joined #heat | 15:44 | |
*** julienvey has quit IRC | 15:45 | |
*** packet has joined #heat | 15:53 | |
*** praveenkumar has quit IRC | 15:55 | |
*** Drago1 has quit IRC | 15:56 | |
*** sorantis_ has quit IRC | 15:56 | |
*** tspatzier has joined #heat | 15:57 | |
*** sorantis_ has joined #heat | 15:57 | |
*** Drago1 has joined #heat | 16:00 | |
*** tango has quit IRC | 16:03 | |
*** asifrc has joined #heat | 16:05 | |
openstackgerrit | Gauvain Pocentek proposed a change to openstack/heat: Provide support status info for some resources https://review.openstack.org/119110 | 16:11 |
*** aweiteka has quit IRC | 16:11 | |
*** sballe has quit IRC | 16:12 | |
*** praveenkumar has joined #heat | 16:15 | |
*** julienvey has joined #heat | 16:21 | |
*** kebray has joined #heat | 16:21 | |
*** aweiteka has joined #heat | 16:23 | |
*** pasquier-s__ has quit IRC | 16:27 | |
*** jergerber has joined #heat | 16:32 | |
*** blues-man has quit IRC | 16:32 | |
*** greghayn1 is now known as greghaynes | 16:33 | |
*** radez is now known as radez_g0n3 | 16:34 | |
*** radez_g0n3 is now known as radez | 16:38 | |
*** randallburt has quit IRC | 16:39 | |
*** julienvey has quit IRC | 16:42 | |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: Rework test_instance_group to be less coupled https://review.openstack.org/119127 | 16:45 |
*** sballe has joined #heat | 16:45 | |
*** derekh has quit IRC | 16:51 | |
*** sorantis_ has quit IRC | 16:54 | |
*** tomek_adamczewsk has quit IRC | 16:54 | |
*** kopparam has quit IRC | 16:56 | |
*** mohits has joined #heat | 16:57 | |
*** kopparam has joined #heat | 16:57 | |
*** uru_ has joined #heat | 16:57 | |
*** uru_ is now known as urulama_afk | 16:58 | |
*** randallburt has joined #heat | 17:00 | |
*** mohits has quit IRC | 17:06 | |
*** lazy_prince is now known as killer_prince | 17:06 | |
*** richa has joined #heat | 17:10 | |
*** kopparam has quit IRC | 17:10 | |
*** bvandenh has quit IRC | 17:10 | |
*** kopparam has joined #heat | 17:11 | |
*** alexheneveld has quit IRC | 17:13 | |
*** kopparam has quit IRC | 17:15 | |
*** alexheneveld has joined #heat | 17:16 | |
*** swygue has quit IRC | 17:17 | |
*** hdd has quit IRC | 17:19 | |
*** harlowja has joined #heat | 17:20 | |
*** jstrachan has quit IRC | 17:21 | |
*** john-n-s| has quit IRC | 17:22 | |
*** praveenkumar has quit IRC | 17:23 | |
*** gokrokve has quit IRC | 17:26 | |
*** reed has joined #heat | 17:30 | |
*** blinky_ghost has quit IRC | 17:30 | |
*** dsneddon has joined #heat | 17:34 | |
*** john-n-seattle has joined #heat | 17:34 | |
*** Drago1 has quit IRC | 17:36 | |
*** Drago1 has joined #heat | 17:37 | |
*** asifrc has quit IRC | 17:37 | |
*** Drago has joined #heat | 17:37 | |
*** gokrokve has joined #heat | 17:38 | |
*** fayablazer has quit IRC | 17:40 | |
*** alexheneveld has quit IRC | 17:42 | |
*** packet has quit IRC | 17:45 | |
*** Drago has quit IRC | 17:45 | |
*** packet has joined #heat | 17:46 | |
*** Drago1 has quit IRC | 17:47 | |
*** tango has joined #heat | 17:47 | |
*** Drago1 has joined #heat | 17:48 | |
openstackgerrit | OpenStack Proposal Bot proposed a change to openstack/heat: Updated from global requirements https://review.openstack.org/105166 | 17:49 |
*** asifrc has joined #heat | 17:51 | |
*** achampion has quit IRC | 17:51 | |
*** Drago1 has quit IRC | 17:53 | |
*** richa has quit IRC | 17:56 | |
*** vijendar has quit IRC | 18:05 | |
tango | stevebaker: Pinging Steve ... | 18:09 |
*** che-arne has quit IRC | 18:13 | |
*** randallburt has quit IRC | 18:15 | |
*** Drago1 has joined #heat | 18:15 | |
*** Drago1 has quit IRC | 18:19 | |
*** Drago has joined #heat | 18:20 | |
*** crose has quit IRC | 18:21 | |
*** lipinski has quit IRC | 18:22 | |
*** crose has joined #heat | 18:22 | |
*** jpeeler has quit IRC | 18:25 | |
*** tspatzier has quit IRC | 18:25 | |
*** mkollaro has quit IRC | 18:36 | |
*** randallburt has joined #heat | 18:39 | |
*** randallburt has quit IRC | 18:40 | |
*** randallburt has joined #heat | 18:40 | |
*** Murali_ has quit IRC | 18:42 | |
*** Murali__ has joined #heat | 18:42 | |
*** lipinski has joined #heat | 18:43 | |
*** Murali__ has quit IRC | 18:44 | |
*** Drago1 has joined #heat | 18:46 | |
*** Murali_ has joined #heat | 18:46 | |
*** Murali_ has quit IRC | 18:46 | |
*** Murali_ has joined #heat | 18:46 | |
*** Drago has quit IRC | 18:46 | |
*** Drago1 has quit IRC | 18:47 | |
*** asifrc has quit IRC | 18:47 | |
*** lipinski has quit IRC | 18:47 | |
*** DaveJ__ has quit IRC | 18:48 | |
openstackgerrit | A change was merged to openstack/heat: Improve docker resource deletion https://review.openstack.org/113371 | 18:48 |
Murali_ | is there any wiki avilable for writing custom software config / software deploy | 18:50 |
Murali_ | for hot yaml templates ? | 18:50 |
*** sdake has quit IRC | 18:51 | |
*** dekozo has joined #heat | 18:51 | |
*** crose has quit IRC | 18:56 | |
*** jpeeler has joined #heat | 18:57 | |
*** hdd has joined #heat | 18:57 | |
*** asifrc has joined #heat | 19:00 | |
stevebaker | Murali_, 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 agent | 19:08 |
*** kebray has quit IRC | 19:08 | |
*** sgordon_ has quit IRC | 19:10 | |
*** asifrc has quit IRC | 19: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 step | 19:11 |
*** asifrc has joined #heat | 19:11 | |
*** vijendar has joined #heat | 19:13 | |
stevebaker | Murali_, what do you mean by bootstrapping? Installing everything required at boot time on a vanilla image? | 19:15 |
Murali_ | yes exactly | 19:15 |
Murali_ | i want to install puppet white boot time itself | 19:15 |
stevebaker | Murali_, It might be possible, I started working on some cloud-config to do it yesterday. | 19:16 |
stevebaker | Murali_, 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 time | 19: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 possibilities | 19:19 |
Murali_ | stevebaker : its ubuntu | 19:22 |
*** packet has quit IRC | 19:24 | |
stevebaker | Murali_, yes, you'll need to bring up a server which can access the internet | 19:30 |
stevebaker | Murali_, ubuntu might make things harder, I don't think os-collect-config is packaged | 19:30 |
Murali_ | ok | 19:30 |
*** randallburt has quit IRC | 19:31 | |
stevebaker | Murali_, 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/elements | 19:31 |
Murali_ | but by default new open stack instant cannon access internet right... SO can i export http proxies with in user data | 19:31 |
Murali_ | ok i will ch k | 19:32 |
Murali_ | Stevebaker : sorry for buying ur time... just trying to understand better :) | 19:32 |
*** randallburt has joined #heat | 19:32 | |
*** lipinski has joined #heat | 19:39 | |
*** sgordon_ has joined #heat | 19:48 | |
*** asifrc has quit IRC | 19:51 | |
*** asifrc has joined #heat | 19:58 | |
*** liusheng has quit IRC | 20:01 | |
*** liusheng has joined #heat | 20:01 | |
*** liusheng has quit IRC | 20:02 | |
*** tonisbones has quit IRC | 20:05 | |
stevebaker | tango: pong | 20:07 |
*** kebray has joined #heat | 20:08 | |
*** alexheneveld has joined #heat | 20:11 | |
*** sgordon_ has quit IRC | 20:13 | |
*** randallburt has quit IRC | 20:20 | |
*** david-lyle is now known as david-lyle_afk | 20:22 | |
*** david-lyle_afk has quit IRC | 20:23 | |
*** hdd has quit IRC | 20:25 | |
*** randallburt has joined #heat | 20:27 | |
*** david-lyle_afk has joined #heat | 20:28 | |
*** lpmulligan has joined #heat | 20:28 | |
*** david-lyle_afk has quit IRC | 20:29 | |
*** Drago1 has joined #heat | 20:30 | |
*** david-lyle_afk has joined #heat | 20:30 | |
*** david-lyle_afk has quit IRC | 20:30 | |
*** david-lyle_afk has joined #heat | 20:30 | |
*** david-lyle has joined #heat | 20:32 | |
*** david-lyle_afk has quit IRC | 20:32 | |
*** asifrc has quit IRC | 20:37 | |
*** asifrc has joined #heat | 20:39 | |
tango | stevebaker: 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 #heat | 20:46 | |
tango | stevebaker: https://review.openstack.org/#/c/109042 | 20:46 |
tango | stevebaker: https://review.openstack.org/#/c/109284 | 20:46 |
tango | stevebaker: https://review.openstack.org/#/c/109105 | 20:47 |
tango | stevebaker: https://review.openstack.org/#/c/109465 | 20:47 |
tango | stevebaker: Took the whole day yesterday to pass Jenkins | 20:47 |
stevebaker | tango: OK. I think we'll apply for a FFE for that blueprint | 20:48 |
tango | stevebaker: Thanks | 20:48 |
*** mkollaro has joined #heat | 20:54 | |
*** Drago1 has quit IRC | 20:56 | |
*** jdob has quit IRC | 20:57 | |
*** david-lyle has quit IRC | 20:58 | |
*** david-lyle has joined #heat | 20:58 | |
*** mkollaro has quit IRC | 21:00 | |
*** gokrokve has quit IRC | 21:00 | |
*** gokrokve has joined #heat | 21:01 | |
openstackgerrit | Sirushti Murugesan proposed a change to openstack/heat: Adds a new INIT_COMPLETE state for a stack https://review.openstack.org/119207 | 21:03 |
*** gokrokve has quit IRC | 21:04 | |
*** gokrokve has joined #heat | 21:04 | |
*** gokrokve has quit IRC | 21:04 | |
*** gokrokve has joined #heat | 21:05 | |
*** jmckind has quit IRC | 21:10 | |
*** che-arne has joined #heat | 21:11 | |
*** cdent has quit IRC | 21:16 | |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: Only delete stack user project from correct domain https://review.openstack.org/119212 | 21:19 |
*** gokrokve has quit IRC | 21:21 | |
*** Drago1 has joined #heat | 21:25 | |
*** ajc_ has joined #heat | 21:29 | |
*** skyler has quit IRC | 21:29 | |
*** Drago1 has quit IRC | 21:33 | |
*** david-lyle has quit IRC | 21:34 | |
*** asalkeld has joined #heat | 21:38 | |
*** david-lyle has joined #heat | 21:40 | |
*** sdake has joined #heat | 21:41 | |
*** sdake has quit IRC | 21:44 | |
*** sdake has joined #heat | 21:44 | |
*** aweiteka has quit IRC | 21:47 | |
*** Murali_ has quit IRC | 21:58 | |
*** vijendar has quit IRC | 21:58 | |
*** vijendar has joined #heat | 21:59 | |
*** julienvey has joined #heat | 22:04 | |
*** gokrokve has joined #heat | 22:04 | |
*** asalkeld has quit IRC | 22:09 | |
*** Drago1 has joined #heat | 22:12 | |
*** gondoi is now known as zz_gondoi | 22:13 | |
*** edmund2 has quit IRC | 22:15 | |
*** sjmc7 has quit IRC | 22:16 | |
*** gokrokve has quit IRC | 22:19 | |
*** gokrokve has joined #heat | 22:19 | |
*** gokrokve has quit IRC | 22:23 | |
*** alexpilotti has quit IRC | 22:25 | |
*** asalkeld has joined #heat | 22:26 | |
*** david-lyle has quit IRC | 22:27 | |
*** Drago1 has quit IRC | 22:30 | |
*** EricGonczer_ has quit IRC | 22:31 | |
*** achampion has joined #heat | 22:33 | |
*** gokrokve has joined #heat | 22:37 | |
*** gokrokve has quit IRC | 22:38 | |
*** gokrokve has joined #heat | 22:39 | |
*** cloutedcanine has joined #heat | 22:39 | |
*** sarob has quit IRC | 22:42 | |
*** julienvey has quit IRC | 22:42 | |
*** alexheneveld has quit IRC | 22:45 | |
*** tims has quit IRC | 22:53 | |
*** cloutedcanine has quit IRC | 22:54 | |
*** dkoper has joined #heat | 23:02 | |
*** andersonvom has quit IRC | 23:06 | |
*** ajc__ has joined #heat | 23:10 | |
*** ajc_ has quit IRC | 23:13 | |
*** asifrc has quit IRC | 23:14 | |
*** randallburt has quit IRC | 23:16 | |
*** kebray has quit IRC | 23:17 | |
*** arbylee1 has quit IRC | 23:17 | |
*** arbylee has joined #heat | 23:18 | |
*** arbylee has quit IRC | 23:18 | |
*** vijendar has quit IRC | 23:22 | |
*** tango has quit IRC | 23:23 | |
*** andersonvom has joined #heat | 23:38 | |
*** andersonvom has quit IRC | 23:38 | |
*** Drago has joined #heat | 23:43 | |
*** sdake has quit IRC | 23:57 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!