Sunday, 2015-02-22

larsksCan heat-engine run in an active/active configuration? Or does can there only be one active engine?00:00
*** EricGonczer_ has joined #heat00:34
*** sabeen has joined #heat00:44
*** EricGonczer_ has quit IRC00:45
*** EricGonczer_ has joined #heat00:46
*** EricGonczer_ has quit IRC00:47
*** alexheneveld has joined #heat01:02
*** pm90_ has quit IRC01:02
*** alexheneveld_ has joined #heat01:07
*** alexheneveld has quit IRC01:09
*** alexheneveld_ is now known as alexheneveld01:09
*** signed8bit has joined #heat01:10
*** sdake_ has joined #heat01:12
*** jamielennox|away is now known as jamielennox01:12
*** signed8bit has quit IRC01:15
*** sdake_ has quit IRC01:17
*** zaneb has joined #heat01:19
*** alexheneveld_ has joined #heat01:22
*** alexheneveld has quit IRC01:23
*** alexheneveld_ is now known as alexheneveld01:23
*** alexheneveld_ has joined #heat01:26
*** alexheneveld has quit IRC01:28
*** alexheneveld_ is now known as alexheneveld01:28
*** alexheneveld_ has joined #heat01:31
*** alexheneveld has quit IRC01:32
*** alexheneveld_ is now known as alexheneveld01:32
*** alexheneveld_ has joined #heat01:36
*** Marga_ has joined #heat01:36
*** Marga_ has quit IRC01:36
*** Marga_ has joined #heat01:37
*** alexheneveld has quit IRC01:37
*** alexheneveld_ is now known as alexheneveld01:37
*** Qiming has joined #heat01:38
*** alexheneveld_ has joined #heat01:42
*** alexheneveld has quit IRC01:43
*** alexheneveld_ is now known as alexheneveld01:43
*** alexheneveld_ has joined #heat01:48
*** alexheneveld has quit IRC01:50
*** alexheneveld_ is now known as alexheneveld01:50
*** alexheneveld_ has joined #heat01:53
*** serg_melikyan has joined #heat01:54
*** alexheneveld has quit IRC01:54
*** alexheneveld_ is now known as alexheneveld01:54
*** sarob has joined #heat01:55
*** serg_melikyan has quit IRC01:59
*** alexheneveld_ has joined #heat01:59
*** sarob has quit IRC02:00
*** alexheneveld has quit IRC02:01
*** alexheneveld_ is now known as alexheneveld02:01
*** Marga_ has quit IRC02:01
*** sdake_ has joined #heat02:02
*** ivar-lazzaro has joined #heat02:02
*** Marga_ has joined #heat02:02
ivar-lazzarohello! Need a little help on accessing a specific VM parameter from an heat template, anyone around?02:03
*** alexheneveld_ has joined #heat02:05
*** alexheneveld has quit IRC02:08
*** alexheneveld_ is now known as alexheneveld02:08
*** alexheneveld_ has joined #heat02:11
*** alexheneveld has quit IRC02:12
*** alexheneveld_ is now known as alexheneveld02:12
*** alexheneveld_ has joined #heat02:15
*** alexheneveld has quit IRC02:17
*** alexheneveld_ is now known as alexheneveld02:17
*** EricGonczer_ has joined #heat02:20
*** alexheneveld_ has joined #heat02:20
*** alexheneveld has quit IRC02:21
*** alexheneveld_ is now known as alexheneveld02:21
*** erkules_ has joined #heat02:23
*** erkules has quit IRC02:25
*** alexheneveld_ has joined #heat02:29
*** alexheneveld has quit IRC02:30
*** alexheneveld_ is now known as alexheneveld02:30
larsksivar-lazzaro: what's up?02:33
*** alexheneveld_ has joined #heat02:33
*** alexheneveld has quit IRC02:35
*** alexheneveld_ is now known as alexheneveld02:35
ivar-lazzarolarsks: hi, I'm trying to retrieve the fixed_ip attribute from a VM so that I can inject it on another VM (through the user_data param)02:35
ivar-lazzarolarsks: to get the address, on VM 2 I do the following: [VM1, networks, VM1_Network, 0]02:35
larsksOkay.  Is that not working?02:36
ivar-lazzarolarsks: However, this doesn't work 100% of the times! It looks like nova may take some time before getting the address from Neutron02:36
larsksAre you using OS::Neutron::Port resources in your template?02:36
ivar-lazzarolarsks: I'm not creating it directly02:37
ivar-lazzarolarsks: but I have the port_id as a parameter02:37
ivar-lazzarolarsks: is it possible to use that to GET the actual Port resource and the fixed IP from there?02:37
larsksRight. In my templates, I generally have explicit Port resources, and I get the fixed ip from that (e.g., https://github.com/larsks/heat-kubernetes/blob/master/kubenode.yaml)02:37
larsksThat hasn't been a problem so far.02:37
ivar-lazzarothat makes sense, but I'm not creating the port in the template. It is a parameter instead02:38
ivar-lazzaro(the port UUID I mean)02:38
larsksCan you post your template somewhere?02:38
ivar-lazzaroSure, just a second02:38
ivar-lazzarohttps://github.com/noironetworks/devstack/blob/noiro/gbp-templates/aci/app.yaml02:39
ivar-lazzaroyou will see a bunch of unknown resources probably :) those are GBP resources02:40
larsksNo worries. Just wanted to stare at it a moment.02:40
ivar-lazzaroon line 102 you will see an example of server creation02:40
ivar-lazzaro(L163 is a better example though)02:41
larsksYou said it somestimes works...does it seem random, or does it work e.g., for some servers but not others?02:44
ivar-lazzaroit seems pretty random02:45
ivar-lazzaromy guess is that Nova retrieves that info asynchronously02:45
ivar-lazzaroso it may not be there when heat gets back the object02:46
larsksI'm wondering if the fact that you're not creating ports explicitly means that heat can't set up the necessary dependencies.02:46
ivar-lazzaroTheoretically, it would be enough for me to do a "GET" on the Port and retrieve the ip from there02:46
ivar-lazzaronot sure how to do that with heat though (if possible at all)02:47
larsksWith heat you're pretty much limited to attributes provided by the resource types.  I mean, you could pass openstack credentials via user_data into your instance then use "curl" to hit the openstack api, but that seems like a bad idea.02:48
ivar-lazzaroseems bad indeed02:48
ivar-lazzaroI guess I can change my objects' definition to use the neutron client for retrieving the IP when needed02:49
ivar-lazzaroalthough it would have been cleaner to be able to use the port ID to access the port resource02:49
larsksAn alternative would be to build some sort of service registration/discovery mechanism into your stack (etcd, consul, avahi, etc)02:50
*** Qiming has quit IRC02:51
*** EricGonczer_ has quit IRC02:52
*** alexheneveld_ has joined #heat02:56
*** dimsum__ has joined #heat02:57
*** alexheneveld has quit IRC02:58
*** alexheneveld_ is now known as alexheneveld02:58
*** zaneb has quit IRC02:58
*** alexheneveld_ has joined #heat03:03
*** alexheneveld has quit IRC03:05
*** alexheneveld_ is now known as alexheneveld03:05
*** alexheneveld_ has joined #heat03:10
*** alexheneveld has quit IRC03:11
*** alexheneveld_ is now known as alexheneveld03:11
*** alexheneveld_ has joined #heat03:14
*** alexheneveld has quit IRC03:16
*** alexheneveld_ is now known as alexheneveld03:16
*** Marga_ has quit IRC03:18
*** tellesnobrega_ has joined #heat03:18
*** alexheneveld_ has joined #heat03:21
*** alexheneveld has quit IRC03:23
*** alexheneveld_ is now known as alexheneveld03:23
*** alexheneveld_ has joined #heat03:26
*** alexheneveld has quit IRC03:27
*** alexheneveld_ is now known as alexheneveld03:27
*** alexheneveld_ has joined #heat03:30
*** alexheneveld has quit IRC03:32
*** alexheneveld_ is now known as alexheneveld03:32
*** hdd has joined #heat03:36
*** alexheneveld_ has joined #heat03:36
*** alexheneveld has quit IRC03:38
*** alexheneveld_ is now known as alexheneveld03:38
*** cody-somerville has joined #heat03:39
*** signed8bit has joined #heat03:40
*** dimsum__ has quit IRC03:41
*** achanda has joined #heat03:45
*** alexheneveld_ has joined #heat03:49
*** alexheneveld has quit IRC03:50
*** alexheneveld_ is now known as alexheneveld03:50
*** alexheneveld_ has joined #heat03:54
*** alexheneveld has quit IRC03:55
*** alexheneveld_ is now known as alexheneveld03:55
*** alexheneveld_ has joined #heat03:58
*** alexheneveld has quit IRC04:00
*** alexheneveld_ is now known as alexheneveld04:00
*** alexheneveld_ has joined #heat04:03
*** alexheneveld has quit IRC04:04
*** alexheneveld_ is now known as alexheneveld04:04
*** EricGonczer_ has joined #heat04:06
*** achanda has quit IRC04:09
*** EricGonczer_ has quit IRC04:10
*** achanda has joined #heat04:11
*** EricGonczer_ has joined #heat04:15
*** EricGonczer_ has quit IRC04:15
*** alexheneveld_ has joined #heat04:15
*** EricGonczer_ has joined #heat04:16
*** EricGonczer_ has quit IRC04:17
*** alexheneveld has quit IRC04:17
*** alexheneveld_ is now known as alexheneveld04:17
*** alexheneveld_ has joined #heat04:21
*** alexheneveld has quit IRC04:22
*** alexheneveld_ is now known as alexheneveld04:22
*** alexheneveld_ has joined #heat04:25
*** alexheneveld has quit IRC04:27
*** alexheneveld_ is now known as alexheneveld04:27
*** cmyster has joined #heat04:28
*** cmyster has quit IRC04:28
*** cmyster has joined #heat04:28
*** alexheneveld_ has joined #heat04:32
*** alexheneveld has quit IRC04:34
*** alexheneveld_ is now known as alexheneveld04:34
*** alexheneveld_ has joined #heat04:37
*** alexheneveld has quit IRC04:38
*** alexheneveld_ is now known as alexheneveld04:38
*** dimsum__ has joined #heat04:42
*** alexheneveld_ has joined #heat04:45
*** signed8bit has quit IRC04:46
*** dimsum__ has quit IRC04:46
*** alexheneveld has quit IRC04:47
*** alexheneveld_ is now known as alexheneveld04:47
*** rodrigods is now known as needsbeer04:47
*** alexheneveld_ has joined #heat04:51
*** alexheneveld has quit IRC04:52
*** alexheneveld_ is now known as alexheneveld04:52
*** alexheneveld_ has joined #heat04:55
*** alexheneveld has quit IRC04:56
*** alexheneveld_ is now known as alexheneveld04:56
*** alexheneveld_ has joined #heat04:59
*** alexheneveld has quit IRC05:01
*** alexheneveld_ is now known as alexheneveld05:01
*** chlong has quit IRC05:01
*** alexheneveld_ has joined #heat05:06
*** alexheneveld has quit IRC05:07
*** alexheneveld_ is now known as alexheneveld05:07
*** needsbeer is now known as rodrigods05:08
*** rodrigods is now known as needsbeer05:10
*** tellesnobrega_ has quit IRC05:11
*** needsbeer is now known as rodrigods05:17
*** ivar-lazzaro has quit IRC05:22
*** cmyster has quit IRC05:29
*** sdake__ has joined #heat05:32
*** alexheneveld_ has joined #heat05:32
*** alexheneveld has quit IRC05:34
*** alexheneveld_ is now known as alexheneveld05:34
*** sdake_ has quit IRC05:35
*** lpmulligan has joined #heat05:39
*** sdake__ has quit IRC05:40
*** GonZo2K has quit IRC05:41
*** alexheneveld_ has joined #heat05:47
*** alexheneveld has quit IRC05:49
*** alexheneveld_ is now known as alexheneveld05:49
*** alexheneveld_ has joined #heat05:59
*** alexheneveld has quit IRC06:01
*** alexheneveld_ is now known as alexheneveld06:01
*** alexheneveld_ has joined #heat06:05
*** alexheneveld has quit IRC06:08
*** alexheneveld_ is now known as alexheneveld06:08
*** lpmulligan has quit IRC06:10
*** hdd has quit IRC06:13
*** alexheneveld_ has joined #heat06:18
*** alexheneveld has quit IRC06:20
*** alexheneveld_ is now known as alexheneveld06:20
*** alexheneveld_ has joined #heat06:23
*** alexheneveld has quit IRC06:25
*** alexheneveld_ is now known as alexheneveld06:25
*** GonZo2K has joined #heat06:27
*** alexheneveld_ has joined #heat06:28
*** alexheneveld_ has quit IRC06:28
*** GonZo2K has quit IRC06:29
*** alexheneveld has quit IRC06:29
*** hdd has joined #heat06:45
*** Tango has joined #heat06:51
*** achanda has quit IRC07:01
*** achanda has joined #heat07:01
*** hdd has quit IRC07:02
*** achanda has quit IRC07:03
*** sabeen has quit IRC07:06
*** jcoufal has joined #heat07:16
*** achanda has joined #heat07:16
*** kebray has quit IRC07:34
*** cmyster has joined #heat07:46
*** cmyster has quit IRC07:46
*** cmyster has joined #heat07:46
*** dimsum__ has joined #heat07:46
*** dimsum__ has quit IRC07:51
*** jtomasek has quit IRC08:09
*** achanda has quit IRC08:11
*** achanda has joined #heat08:17
*** achanda has quit IRC09:27
*** GonZo2K has joined #heat09:31
*** GonZo2K has quit IRC09:33
*** achanda has joined #heat09:42
*** chlong has joined #heat10:15
*** achanda has quit IRC10:25
*** cmyster has quit IRC11:09
*** tellesnobrega_ has joined #heat11:29
*** cmyster has joined #heat11:35
*** cmyster has quit IRC11:35
*** cmyster has joined #heat11:35
*** cmyster has quit IRC11:44
*** tellesnobrega_ has quit IRC12:25
*** dimsum__ has joined #heat12:36
*** tellesnobrega_ has joined #heat12:46
*** GonZo2K has joined #heat12:46
*** GonZo2K has quit IRC12:47
*** cmyster has joined #heat13:15
*** rodrigods is now known as needsbeer13:36
*** needsbeer is now known as rodrigods13:37
*** rodrigods has joined #heat13:37
*** rodrigods is now known as needsbeer13:45
*** needsbeer is now known as rodrigods13:51
*** rodrigods has quit IRC13:52
*** rodrigods has joined #heat13:56
*** Qiming has joined #heat14:25
*** GonZo2K has joined #heat14:30
*** GonZo2K has quit IRC14:30
*** GonZo2K has joined #heat14:30
*** GonZo2K has quit IRC14:34
*** lpmulligan has joined #heat14:45
*** EricGonczer_ has joined #heat14:45
*** EricGonczer_ has quit IRC15:01
*** GonZo2K has joined #heat15:13
*** GonZo2K has quit IRC15:17
*** otoolee has quit IRC15:23
*** mburns has quit IRC15:23
*** SpamapS has quit IRC15:23
*** akuznetsova has quit IRC15:23
*** ekarlso has quit IRC15:23
*** mikal has quit IRC15:23
*** greghaynes has quit IRC15:23
*** xmltok has quit IRC15:23
*** DandyPandy has quit IRC15:23
*** d0ugal has quit IRC15:23
*** sparr has quit IRC15:23
*** adam_g has quit IRC15:23
*** mikal has joined #heat15:24
*** SpamapS has joined #heat15:24
*** SpamapS has quit IRC15:24
*** SpamapS has joined #heat15:24
*** adam_g` has joined #heat15:24
*** d0ugal has joined #heat15:24
*** mburns has joined #heat15:24
*** greghaynes has joined #heat15:24
*** akuznetsova has joined #heat15:24
*** xmltok_ has joined #heat15:24
*** d0ugal is now known as Guest7866915:24
*** DandyPandy has joined #heat15:24
*** ekarlso has joined #heat15:25
*** sparr has joined #heat15:26
*** jcoufal has quit IRC15:38
*** jcoufal has joined #heat15:38
*** otoolee has joined #heat15:43
*** tellesnobrega_ has quit IRC15:48
*** Tango has quit IRC15:56
*** GonZo2K has joined #heat16:00
*** vijayagurug has joined #heat16:04
*** ekarlso has quit IRC16:07
*** ekarlso has joined #heat16:07
*** GonZo2K has quit IRC16:08
*** Qiming has quit IRC16:16
*** akuznetsov has joined #heat16:18
*** sdake_ has joined #heat16:34
*** sdake_ has quit IRC16:38
*** GonZo2K has joined #heat16:38
*** lpmulligan has quit IRC16:40
*** GonZo2K has quit IRC16:43
*** GonZo2K has joined #heat16:49
*** cdent has joined #heat16:55
*** jcoufal has quit IRC17:00
*** GonZo2K has quit IRC17:14
*** GonZo2K has joined #heat17:19
*** Marga_ has joined #heat17:26
*** MasterPiece has joined #heat17:29
*** jcoufal has joined #heat17:32
*** jcoufal has quit IRC17:34
*** jcoufal has joined #heat17:34
*** jcoufal has quit IRC17:34
*** Marga_ has quit IRC17:41
*** Marga_ has joined #heat17:42
*** GonZo2K has quit IRC17:59
*** erkules_ is now known as erkules18:06
*** cdent has quit IRC18:18
*** vijayagurug has quit IRC18:19
*** GonZo2K has joined #heat18:44
*** GonZo2K has quit IRC18:44
*** GonZo2K has joined #heat18:44
*** serg_melikyan has joined #heat19:00
*** serg_melikyan has quit IRC19:02
*** serg_melikyan has joined #heat19:12
*** achanda has joined #heat19:18
*** dimsum__ has quit IRC19:21
*** Marga_ has quit IRC19:38
*** Marga_ has joined #heat19:39
*** kebray has joined #heat19:47
*** Marga_ has quit IRC19:47
*** Michalik_ has quit IRC19:50
*** Michalik_ has joined #heat19:50
*** zhiyan has quit IRC19:51
*** higgins has quit IRC19:51
*** zz_gondoi has quit IRC19:51
*** wendar has quit IRC19:51
*** wendar has joined #heat19:52
*** adam_g` has quit IRC19:52
*** Adri2000 has quit IRC19:52
*** jamielennox has quit IRC19:53
*** zhiyan has joined #heat19:54
*** higgins has joined #heat19:55
*** jamielennox has joined #heat19:57
*** adam_g has joined #heat19:58
*** adam_g has quit IRC19:58
*** adam_g has joined #heat19:58
*** pfreund has quit IRC19:59
*** zz_gondoi has joined #heat19:59
*** Adri2000 has joined #heat20:00
*** pfreund has joined #heat20:02
*** fbo has quit IRC20:17
*** achanda has quit IRC20:19
openstackgerritSteve Baker proposed openstack/heat-templates: Boot config for installing software-config agent  https://review.openstack.org/11928220:20
*** achanda has joined #heat20:20
*** fbo has joined #heat20:21
*** pm90_ has joined #heat20:23
*** Michalik_ has quit IRC20:26
*** Michalik_ has joined #heat20:26
*** Michalik_ is now known as Michalik20:26
*** Michalik has quit IRC20:26
*** Michalik has joined #heat20:26
*** lpmulligan has joined #heat20:35
*** sdake_ has joined #heat20:38
*** sdake_ has quit IRC20:47
mhroncokstevebaker: hi21:00
*** sdake_ has joined #heat21:02
stevebakermhroncok: hi21:03
mhroncokstevebaker: about your comment in https://review.openstack.org/#/c/157558/21:03
mhroncokI've tried to apply this on the python3 commit, and it went smoothly21:03
stevebakermhroncok: my workflow would be to create a branch on the https://review.openstack.org/#/c/145200/ change then git cherry-pick the change https://review.openstack.org/#/c/157558/ into that branch. Then call git review on that branch21:05
mhroncokYou are about to submit multiple commits. This is expected if you are21:07
mhroncoksubmitting a commit that is dependent on one or more in-review21:07
mhroncokcommits. Otherwise you should consider squashing your changes into one21:07
mhroncokcommit before submitting.21:07
mhroncokThe outstanding commits are:21:07
mhroncok550cee6 (HEAD, origin/py3k_mock, py3k_mock) Ported tests from mox3 to mock to support Python >= 3.321:07
mhroncokf879612 (origin/py3k_only, py3k_only) Python 3 compatibility21:07
mhroncokDo you really want to submit the above commits?21:07
mhroncokso I just go with yes?21:07
stevebakeryep, its just a warning when there are multiple commits21:07
openstackgerritMiro Hroncok proposed openstack/heat-cfntools: Ported tests from mox3 to mock to support Python >= 3.3  https://review.openstack.org/15755821:07
mhroncokoh, now it lists the python3 review as a dependency, cool21:08
stevebaker\o/21:08
*** Tross has quit IRC21:11
*** cody-somerville has quit IRC21:12
stevebakermhroncok: https://review.openstack.org/#/c/157558/2/test-requirements.txt21:18
openstackgerritMiro Hroncok proposed openstack/heat-cfntools: Ported tests from mox3 to mock to support Python >= 3.3  https://review.openstack.org/15755821:19
*** akuznetsov has quit IRC21:26
*** achanda has quit IRC21:35
*** MasterPiece has quit IRC21:42
*** hdd has joined #heat21:45
*** asalkeld has joined #heat21:49
*** dimsum__ has joined #heat21:52
*** dims_ has joined #heat21:55
mhroncokstevebaker: thanks21:55
stevebakermhroncok: no problem. shardy can do the upstream release when the changes land, or he can delegate to me21:58
mhroncokhen/how the chnages land? do I need more pluses?21:59
*** dimsum__ has quit IRC21:59
mhroncok*hen->when21:59
*** chlong has quit IRC21:59
stevebakermhroncok: one more core can approve it, maybe when asalkeld wakes22:00
mhroncokok22:00
openstackgerritSteve Baker proposed openstack/heat: Deployment signal_transport: TEMP_URL_SIGNAL  https://review.openstack.org/15152622:08
openstackgerritSteve Baker proposed openstack/heat: Move deployment handle_signal to rpc call  https://review.openstack.org/15721022:08
openstackgerritSteve Baker proposed openstack/heat: Integration test for software-config tools  https://review.openstack.org/11371122:08
*** sdake_ has quit IRC22:14
*** achanda has joined #heat22:15
asalkeldstevebaker: what patch?22:15
stevebakerasalkeld: this series https://review.openstack.org/#/c/145200/22:16
asalkeldta22:17
asalkeld.encode('UTF-8')22:20
asalkeldis that needed for compatibility?22:20
openstackgerritMerged openstack/heat-cfntools: Python 3 compatibility  https://review.openstack.org/14520022:23
stevebakerasalkeld: its probably needed anyway, python 3 aside22:26
asalkeldyeah, didn't look like a problem22:26
*** dims_ has quit IRC22:27
asalkeldstevebaker: seems like we could be using fixtures FakePopen22:28
asalkeldkids to school, brb22:31
stevebakerasalkeld: I have a very vague recollection that we couldn't do that for reasons22:33
*** jtomasek has joined #heat22:44
*** hdd has quit IRC22:48
*** serg_melikyan has quit IRC22:48
*** jtomasek has quit IRC23:00
*** pm90_ has quit IRC23:02
*** sarob has joined #heat23:04
*** EricGonczer_ has joined #heat23:12
*** lpmulligan has quit IRC23:12
*** achanda has quit IRC23:25
*** pm90_ has joined #heat23:27
*** dimsum__ has joined #heat23:28
*** dimsum__ has quit IRC23:33
*** EricGonczer_ has quit IRC23:34
*** lpmulligan has joined #heat23:34
*** pm90__ has joined #heat23:35
*** achanda has joined #heat23:36
*** kebray has quit IRC23:36
*** tochi has joined #heat23:38
*** pm90_ has quit IRC23:38
*** pm90_ has joined #heat23:42
*** chlong has joined #heat23:43
*** pm90__ has quit IRC23:45
*** sdake_ has joined #heat23:46
*** pm90__ has joined #heat23:47
*** pm90_ has quit IRC23:49
*** pm90__ has quit IRC23:54
mhroncokasalkeld: hi, back from school?23:59

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