*** SergeyLukjanov is now known as SergeyLukjanov_ | 00:00 | |
*** lcheng has joined #heat | 00:03 | |
*** asalkeld has quit IRC | 00:06 | |
openstackgerrit | A change was merged to openstack/heat: Use a HeatIdentifier instance to create Parameters https://review.openstack.org/68257 | 00:07 |
---|---|---|
*** rpothier_ has joined #heat | 00:08 | |
*** aberezin has joined #heat | 00:09 | |
*** cody-somerville has quit IRC | 00:10 | |
*** nati_ueno has quit IRC | 00:11 | |
openstackgerrit | A change was merged to openstack/heat: Native Pseudo Parameters https://review.openstack.org/66640 | 00:12 |
*** nati_ueno has joined #heat | 00:19 | |
*** tango|2 has quit IRC | 00:19 | |
*** nati_ueno has quit IRC | 00:22 | |
*** yogesh has quit IRC | 00:22 | |
*** nati_ueno has joined #heat | 00:23 | |
*** matsuhashi has joined #heat | 00:24 | |
*** sjmc7 has quit IRC | 00:26 | |
openstackgerrit | A change was merged to openstack/heat: Prevent access Parameters key in template dict https://review.openstack.org/68312 | 00:29 |
*** dims has quit IRC | 00:31 | |
*** dims has joined #heat | 00:32 | |
*** jhurlbert has quit IRC | 00:35 | |
*** lcheng has quit IRC | 00:35 | |
*** tomek_adamczewsk has quit IRC | 00:35 | |
*** tomek_adamczewsk has joined #heat | 00:36 | |
*** WinnieTsang has quit IRC | 00:40 | |
lifeless | stevebaker: I'm looking at using a scaling group with a cfn template; where are docs on that ? | 00:44 |
lifeless | stevebaker: (basically I want to run 5 identical things) | 00:44 |
stevebaker | lifeless: you could consider using http://docs.openstack.org/developer/heat/template_guide/openstack.html#OS::Heat::ResourceGroup | 00:45 |
lifeless | http://git.openstack.org/cgit/openstack-infra/tripleo-ci/tree/heat-templates/testenv-workers.yaml | 00:45 |
lifeless | is the template I'm converting | 00:45 |
lifeless | from one-thing to N | 00:45 |
*** pablosan has quit IRC | 00:48 | |
*** gokrokve has quit IRC | 00:53 | |
*** gokrokve has joined #heat | 00:53 | |
*** gokrokve has quit IRC | 00:58 | |
*** IlyaE has quit IRC | 01:00 | |
lifeless | stevebaker: that confuses me | 01:01 |
*** pvaneck has quit IRC | 01:01 | |
lifeless | stevebaker: it looks like it wants a string, rather than yaml, for the thing it's making into a group ?! | 01:01 |
stevebaker | lifeless: resource_def is a map, it should take yaml | 01:02 |
lifeless | stevebaker: so whats missing perhaps is 'how do I transform something into this' | 01:02 |
stevebaker | ah, there is no metadata property | 01:02 |
stevebaker | because technically it doesn't exist in HOT | 01:03 |
stevebaker | because software config will replace that | 01:03 |
*** slong has quit IRC | 01:03 | |
lifeless | is it 'take your existing key, rename it 'resource_def' and add a sibling Count, parent Properties and parent sibling type OS::Heat::ResourceGroup ? | 01:03 |
lifeless | so concretely, in the url I linked | 01:04 |
lifeless | I want to take testenv0 and get 10 of them. | 01:04 |
*** harlowja is now known as harlowja_away | 01:04 | |
lifeless | also why is 'type' for the resource definition not Type ? | 01:05 |
lifeless | thats inconsistent | 01:05 |
stevebaker | lifeless: I think your only option currently is a LaunchConfiguration and a AWS::AutoScaling::AutoScalingGroup with a fixed MinSize/MaxSize (back to ec2 Instance semantics :/ ) | 01:05 |
lifeless | stevebaker: under 'YAML Syntax' on that doc page | 01:06 |
stevebaker | lifeless: hot spec is lower-case throughout | 01:06 |
lifeless | ditto properties.. | 01:06 |
lifeless | stevebaker: but this lists HOT / YAML / JSON | 01:06 |
lifeless | stevebaker: please don't tell me I need to think about this stuff as folk mix and match | 01:06 |
stevebaker | lifeless: yes, HOT is lower case, YAML is just cfn in yaml syntax. The YAML one can remain undocumented when HOT is usable | 01:07 |
lifeless | stevebaker: cause that would be truely painful, not to mention liable to generate bugs | 01:07 |
lifeless | stevebaker: ok, so docs on LaunchConfiguration and AWS::AutoScaling::AutoScalingGroup? Or is it 'go read amazon docs' ? | 01:08 |
lifeless | stevebaker: what about OS::Heat::InstanceGroup ? | 01:08 |
stevebaker | lifeless: yes, here we go https://github.com/openstack/heat-templates/blob/master/cfn/F17/InstanceGroup.template | 01:09 |
*** nati_uen_ has joined #heat | 01:11 | |
*** nati_ueno has quit IRC | 01:14 | |
*** harlowja_away is now known as harlowja | 01:26 | |
*** yogesh has joined #heat | 01:33 | |
*** nati_uen_ has quit IRC | 01:36 | |
*** yogesh has quit IRC | 01:38 | |
lifeless | stevebaker: so how do you permit the launched instances in a InstanceGroup access ? | 01:38 |
lifeless | stevebaker: e.g. | 01:39 |
lifeless | AccessPolicy: | 01:39 |
lifeless | Properties: | 01:39 |
lifeless | AllowedResources: | 01:39 |
lifeless | - testenv0 | 01:39 |
lifeless | becomes ??? | 01:39 |
*** nosnos has joined #heat | 01:41 | |
stevebaker | hmm | 01:42 |
stevebaker | That appears to be not possible. but | 01:46 |
stevebaker | you could do the tripleo thing of splitting the metadata polling LaunchConfiguration from the actual compute | 01:47 |
stevebaker | so do this: | 01:47 |
stevebaker | a launchconfig with the Metadata ala notcomputeConfig | 01:48 |
stevebaker | an access policy which can access ^ | 01:48 |
lifeless | so in the tripleo thing | 01:48 |
lifeless | we still specify the instance: | 01:49 |
lifeless | AllowedResources: | 01:49 |
lifeless | - notCompute0 | 01:49 |
lifeless | - notCompute0Config | 01:49 |
stevebaker | hmm no, that won't work. the key is for os-collect-config polling | 01:49 |
lifeless | is there an AWS equivalent to Type: OS::Heat::AccessPolicy that I could use? | 01:50 |
lifeless | failing that, I'll use merge.py, but I'm trying really hard to use heat directly :) | 01:51 |
stevebaker | lifeless: no, we haven't implemented enough of AWS::IAM to specify more flexible policies | 01:52 |
lifeless | AIUI without the accesspolicy we can't read the metadata from the machine | 01:52 |
lifeless | right ? | 01:52 |
stevebaker | lifeless: I could explain all the reasons why this wouldn't happen with our new autoscaling+software config, but that is no help really | 01:52 |
lifeless | stevebaker: heh, thats fine - I know eventually we'll converge | 01:53 |
lifeless | stevebaker: I figure we need to give you a clear example of what we need fully featured as design input | 01:53 |
openstackgerrit | A change was merged to openstack/heat: Purge remaining heat_keystoneclient v2 code https://review.openstack.org/67534 | 01:53 |
lifeless | does that break using keystone v2 api ? | 01:54 |
stevebaker | lifeless: correct. can't read metadata without accesspolicy | 01:54 |
* lifeless isn't sure that we have v3 enabled | 01:54 | |
lifeless | I guess we'll find out | 01:54 |
stevebaker | v2 was already broken. now its cremated | 01:55 |
lifeless | ok, cool | 01:55 |
lifeless | stevebaker: https://git.openstack.org/cgit/openstack/tripleo-heat-templates/commit/tripleo_heat_merge?id=c071255ad6bf1fb2c9db6799e96b509295f53fc9 | 01:55 |
lifeless | might interest you | 01:55 |
lifeless | its how we're doing scaling atm :( | 01:55 |
stevebaker | lifeless: yeah, yuck. | 01:56 |
*** arbylee has quit IRC | 01:57 | |
stevebaker | lifeless: if you have a way of finding out about hp and keystone v3 that would be useful | 01:57 |
lifeless | stevebaker: what do you want to know? | 01:57 |
stevebaker | maybe the resource for implementing a keystone v2 shim will come from hp insteald of rax ;) | 01:58 |
stevebaker | lifeless: if you're not running keystone v3 api then you won't be running heat standalone against hpcloud until either 1. you enable v3 or 2. somebody writes a v2 auth shim for heat | 01:58 |
*** andersonvom has quit IRC | 01:59 | |
*** alexheneveld_ has quit IRC | 02:02 | |
lifeless | ah | 02:02 |
lifeless | so cody was looking at tha | 02:02 |
lifeless | t | 02:02 |
*** lcheng has joined #heat | 02:08 | |
*** mattgriffin has quit IRC | 02:11 | |
*** IlyaE has joined #heat | 02:11 | |
*** alexheneveld has joined #heat | 02:12 | |
*** IlyaE has quit IRC | 02:15 | |
*** giulivo has quit IRC | 02:20 | |
larsks | So...trying to notify a waitcondition, heat is silent but keystone is throwing an error ("AttributeError: 'unicode' object has no attribute 'get'"). Does this sound familiar to anyone? | 02:24 |
*** alexheneveld has quit IRC | 02:30 | |
larsks | To the mailing list, batman! | 02:30 |
*** matsuhashi has quit IRC | 02:34 | |
*** matsuhas_ has joined #heat | 02:37 | |
*** erkules_ has joined #heat | 02:39 | |
*** erkules has quit IRC | 02:41 | |
*** aignatov_ is now known as aignatov | 02:42 | |
*** alexheneveld has joined #heat | 02:43 | |
*** faramir1 has joined #heat | 02:44 | |
*** alexheneveld has quit IRC | 02:55 | |
stevebaker | larsks: if you're running latest heat you'll likely need latest python-keystoneclient and keystone too | 02:59 |
*** alexheneveld has joined #heat | 03:07 | |
*** matsuhashi has joined #heat | 03:07 | |
*** matsuhas_ has quit IRC | 03:08 | |
*** matsuhashi has quit IRC | 03:08 | |
*** matsuhashi has joined #heat | 03:20 | |
*** nanjj has joined #heat | 03:30 | |
zaneb | larsks: just fyi, questions like that are supposed to be posted to the openstack ML, not openstack-dev | 03:32 |
*** matsuhashi has quit IRC | 03:34 | |
*** matsuhashi has joined #heat | 03:35 | |
*** nanjj has quit IRC | 03:41 | |
*** matsuhashi has quit IRC | 03:43 | |
*** faramir1 has quit IRC | 03:43 | |
sdake | evening folks | 03:45 |
sdake | i'm off to tv land ttyl :) | 03:45 |
zaneb | o/ | 03:45 |
stevebaker | later | 03:45 |
zaneb | sdake: btw I may be working weird hours tomorrow | 03:46 |
*** alexheneveld has quit IRC | 03:46 | |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Map the NotFound exception to HTTPNotFound https://review.openstack.org/70288 | 03:49 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Raise the default max header to accommodate large tokens https://review.openstack.org/70289 | 03:50 |
*** matsuhashi has joined #heat | 03:50 | |
stevebaker | The bug that ^ fixes could cause all manner of havoc | 03:51 |
*** david-lyle has joined #heat | 03:52 | |
*** alexheneveld has joined #heat | 03:53 | |
*** gokrokve has joined #heat | 03:58 | |
larsks | zaneb: Thanks, but I will probably continue to post things that generate tracebacks to -dev. | 04:15 |
*** IlyaE has joined #heat | 04:25 | |
*** harlowja is now known as harlowja_away | 04:26 | |
*** achampion has joined #heat | 04:26 | |
*** andersonvom has joined #heat | 04:30 | |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Implement HOT intrinsic function get_file https://review.openstack.org/66160 | 04:36 |
openstackgerrit | Steve Baker proposed a change to openstack/heat: Store files in the raw_template table https://review.openstack.org/67617 | 04:36 |
*** spzala has quit IRC | 04:40 | |
*** blamar has quit IRC | 04:40 | |
*** alexheneveld has quit IRC | 04:42 | |
*** blamar has joined #heat | 04:45 | |
*** achampio1 has joined #heat | 04:51 | |
*** arbylee has joined #heat | 04:52 | |
*** achampion has quit IRC | 04:53 | |
openstackgerrit | Rhys Oxenham proposed a change to openstack/python-heatclient: Fix minor text spacing issue in Heat CLI usage menu https://review.openstack.org/70295 | 04:55 |
*** achampion has joined #heat | 04:58 | |
*** achampio1 has quit IRC | 04:59 | |
openstackgerrit | Rhys Oxenham proposed a change to openstack/python-heatclient: Fix minor text spacing issue in Heat CLI usage menu https://review.openstack.org/70295 | 04:59 |
*** akuznetsov has joined #heat | 05:00 | |
*** alexheneveld has joined #heat | 05:01 | |
openstackgerrit | Steve Baker proposed a change to openstack/heat-templates: Software config hook to provision using shell scripts https://review.openstack.org/70297 | 05:05 |
*** alexheneveld has quit IRC | 05:07 | |
*** coolsvap_away has quit IRC | 05:08 | |
*** gokrokve has quit IRC | 05:08 | |
*** gokrokve has joined #heat | 05:08 | |
*** nkhare has joined #heat | 05:09 | |
*** gokrokve_ has joined #heat | 05:09 | |
*** aignatov is now known as aignatov_ | 05:09 | |
*** achampio1 has joined #heat | 05:12 | |
*** blamar has quit IRC | 05:13 | |
*** achampion has quit IRC | 05:13 | |
*** gokrokve has quit IRC | 05:13 | |
*** gokrokve_ has quit IRC | 05:13 | |
*** aignatov_ is now known as aignatov | 05:17 | |
*** IlyaE has quit IRC | 05:25 | |
*** IlyaE has joined #heat | 05:27 | |
*** arbylee has quit IRC | 05:27 | |
*** IlyaE has quit IRC | 05:30 | |
*** tomek_adamczewsk has quit IRC | 05:32 | |
*** achampio1 has quit IRC | 05:33 | |
*** achampion has joined #heat | 05:34 | |
*** gokrokve has joined #heat | 05:39 | |
*** tomek_adamczewsk has joined #heat | 05:41 | |
*** lcheng has quit IRC | 05:46 | |
*** lcheng has joined #heat | 05:52 | |
*** achampion has quit IRC | 05:54 | |
*** rwsu has quit IRC | 05:59 | |
*** achampion has joined #heat | 06:01 | |
openstackgerrit | Jenkins proposed a change to openstack/heat: Imported Translations from Transifex https://review.openstack.org/64504 | 06:08 |
*** IlyaE has joined #heat | 06:10 | |
*** coolsvap has joined #heat | 06:12 | |
openstackgerrit | A change was merged to openstack/heat: Only update_and_save if the stack exists https://review.openstack.org/70209 | 06:17 |
*** e0ne has joined #heat | 06:19 | |
*** jprovazn has joined #heat | 06:25 | |
openstackgerrit | Mitsuru Kanabuchi proposed a change to openstack/heat: Implements resource type NetworkGateway https://review.openstack.org/62287 | 06:36 |
skraynev | Morning ;) | 06:53 |
*** lcheng has quit IRC | 06:53 | |
*** tspatzier has joined #heat | 07:13 | |
skraynev | hello, aweiteka. Could you give more details about your problem. I have tested this approach using template https://review.openstack.org/#/c/60078/8/tempest/scenario/orchestration/test_loadbalancer.yaml | 07:26 |
skraynev | aweiteka: and vip have gotten floating ip without any problem. | 07:26 |
*** aignatov is now known as aignatov_ | 07:28 | |
*** akuznetsov has quit IRC | 07:33 | |
*** tomek_adamczewsk has quit IRC | 07:42 | |
*** shardy_afk is now known as shardy | 07:48 | |
shardy | morning | 07:48 |
*** tomek_adamczewsk has joined #heat | 07:51 | |
*** IlyaE has quit IRC | 07:57 | |
*** tomek_adamczewsk has quit IRC | 08:02 | |
*** e0ne has quit IRC | 08:15 | |
*** e0ne has joined #heat | 08:16 | |
*** e0ne has quit IRC | 08:18 | |
openstackgerrit | Liang Chen proposed a change to openstack/heat: Re-enable lazy translation https://review.openstack.org/69133 | 08:18 |
*** e0ne has joined #heat | 08:18 | |
*** faramir1 has joined #heat | 08:22 | |
*** e0ne has quit IRC | 08:23 | |
openstackgerrit | A change was merged to openstack/heat: Showing member list for nested resources https://review.openstack.org/65970 | 08:35 |
*** matsuhashi has quit IRC | 08:37 | |
therve | Good morning | 08:37 |
*** sileht has quit IRC | 08:42 | |
*** sileht has joined #heat | 08:47 | |
*** alexpilotti has joined #heat | 08:47 | |
openstackgerrit | A change was merged to openstack/heat: serialize non-string nova metadata https://review.openstack.org/70045 | 08:52 |
*** alexpilotti has quit IRC | 08:52 | |
*** aignatov_ is now known as aignatov | 08:52 | |
*** jistr has joined #heat | 08:58 | |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Make context available during constraint validation https://review.openstack.org/66304 | 09:02 |
*** giulivo has joined #heat | 09:02 | |
*** topol has quit IRC | 09:04 | |
*** e0ne has joined #heat | 09:38 | |
*** amritanshu_RnD has joined #heat | 09:40 | |
*** amritanshu_RnD is now known as Guest6335 | 09:40 | |
*** erkules_ is now known as erkules | 09:40 | |
*** e0ne has quit IRC | 09:42 | |
*** e0ne_ has joined #heat | 09:42 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 09:43 | |
*** matsuhashi has joined #heat | 09:44 | |
*** aberezin has quit IRC | 09:47 | |
*** cody-somerville has joined #heat | 09:49 | |
*** cody-somerville has joined #heat | 09:49 | |
*** matsuhashi has quit IRC | 10:05 | |
*** e0ne_ has quit IRC | 10:05 | |
*** e0ne has joined #heat | 10:05 | |
pshchelo | good morning | 10:08 |
*** matsuhashi has joined #heat | 10:16 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 10:20 | |
*** tomek_adamczewsk has joined #heat | 10:22 | |
*** aignatov is now known as aignatov_ | 10:27 | |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Implement custom constraints https://review.openstack.org/70318 | 10:28 |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Add a nova keypair constraint https://review.openstack.org/70319 | 10:28 |
*** david-lyle has quit IRC | 10:46 | |
*** e0ne has quit IRC | 10:50 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 10:50 | |
*** e0ne has joined #heat | 10:51 | |
*** akuznetsov has joined #heat | 10:53 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 10:53 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 10:54 | |
*** e0ne has quit IRC | 10:55 | |
*** aignatov_ is now known as aignatov | 10:56 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 10:59 | |
*** che-arne has joined #heat | 11:01 | |
*** tomek_adamczewsk has quit IRC | 11:01 | |
*** nkhare has quit IRC | 11:05 | |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Adding first_address attribute for port resource https://review.openstack.org/67836 | 11:08 |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 11:11 | |
*** bgorski has joined #heat | 11:16 | |
*** cody-somerville has quit IRC | 11:17 | |
*** akuznetsov has quit IRC | 11:18 | |
*** akuznetsov has joined #heat | 11:30 | |
openstackgerrit | A change was merged to openstack/heat: Refactor software config db model to use LongText https://review.openstack.org/68967 | 11:37 |
openstackgerrit | A change was merged to openstack/heat: Add heat.sqlite in git ignore list https://review.openstack.org/69099 | 11:37 |
openstackgerrit | A change was merged to openstack/heat: Enabled source code coverage for contrib directory https://review.openstack.org/68953 | 11:51 |
openstackgerrit | A change was merged to openstack/heat: Add migration method to test sqldump files https://review.openstack.org/63251 | 11:55 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: heat_keystoneclient: abstract admin_client to a property https://review.openstack.org/69570 | 12:05 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: heat_keystoneclient ensure admin client respects SSL options https://review.openstack.org/69568 | 12:05 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: heat_keystoneclient: Move v3 path logic to constructor https://review.openstack.org/69569 | 12:05 |
openstackgerrit | A change was merged to openstack/heat: Imported Translations from Transifex https://review.openstack.org/64504 | 12:10 |
*** rpothier_ has quit IRC | 12:12 | |
*** rpothier has joined #heat | 12:13 | |
*** e0ne has joined #heat | 12:13 | |
*** bada_ has joined #heat | 12:21 | |
*** bada has quit IRC | 12:24 | |
*** coolsvap has quit IRC | 12:24 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 12:54 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 12:54 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov | 12:54 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 12:55 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov | 12:56 | |
*** e0ne has quit IRC | 12:57 | |
*** faramir1 has quit IRC | 12:59 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 13:00 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 13:03 | |
*** arbylee has joined #heat | 13:17 | |
sdake | morning | 13:20 |
shardy | Hi sdake | 13:21 |
*** pafuent has joined #heat | 13:23 | |
*** aweiteka has joined #heat | 13:23 | |
pafuent | stevebaker: Are you around? | 13:24 |
shardy | pafuent: unlikely, it's 2.30am where he is | 13:24 |
pafuent | shardy: Thanks, I did't know that | 13:25 |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 13:28 | |
*** jdob has joined #heat | 13:38 | |
*** matsuhashi has quit IRC | 13:41 | |
*** aignatov is now known as aignatov_ | 13:44 | |
openstackgerrit | ZhiQiang Fan proposed a change to openstack/python-heatclient: Enable hacking H233 rule https://review.openstack.org/68534 | 13:50 |
*** matsuhashi has joined #heat | 13:50 | |
*** e0ne has joined #heat | 13:50 | |
*** matsuhashi has quit IRC | 13:57 | |
*** aignatov_ is now known as aignatov | 13:59 | |
*** andersonvom has quit IRC | 13:59 | |
sdake | pafuent what help did you need? | 14:00 |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 14:00 | |
sdake | pafuent maybe me or shardy could help? | 14:00 |
*** arbylee has quit IRC | 14:02 | |
*** matsuhashi has joined #heat | 14:04 | |
*** jmckind has joined #heat | 14:11 | |
pafuent | sdake: It's related to a comment in a bp. He asked if I wanted to implement the rest of it. I already wrote a comment to answer him. Thanks anyway! :) | 14:12 |
therve | aweiteka, Did you manage to fix your issue? | 14:13 |
aweiteka | therve, yes, then hit another :) | 14:14 |
therve | Ah :) | 14:14 |
therve | The bumpy road to success | 14:14 |
aweiteka | therve, indeed. | 14:14 |
therve | aweiteka, Still related to lbaas? | 14:15 |
aweiteka | therve, yeah. what do you think of this? https://github.com/aweiteka/heat-templates/blob/3broker/openshift-enterprise/heat/neutron/OpenShift-3B-3N-LB-neutron.yaml#L368 | 14:15 |
aweiteka | therve, adding members to the pool fails. the broker1_instance is created just before the failure. timing issue? | 14:15 |
aweiteka | i wasn't sure if dependson was supported. it's not in the heat/hot docs but referenced in aws | 14:16 |
therve | You shouldn't need a dependson | 14:17 |
therve | Are you using Havana? | 14:17 |
aweiteka | therve, ok. yes, havana | 14:17 |
therve | Hum... | 14:19 |
therve | aweiteka, Do you have the full traceback? | 14:19 |
*** vijendar has joined #heat | 14:19 | |
aweiteka | therve, no, my environment is rebuilding but i can reproduce easy enough soon. | 14:20 |
aweiteka | therve, i've been looking at /var/log/heat/heat-engine.log. not much detail there. what are you looking for? | 14:20 |
*** radez_g0n3 is now known as radez | 14:21 | |
therve | aweiteka, I don't know. The message you put in comments looks weird | 14:21 |
*** alexheneveld has joined #heat | 14:22 | |
therve | aweiteka, fwiw http://paste.openstack.org/show/62240/ ought to work | 14:22 |
aweiteka | therve, yeah, 404 error is unexpected. that's from heat-engine.log. | 14:22 |
aweiteka | therve, agreed. i'll give another go at it. thx | 14:23 |
therve | No problem | 14:23 |
*** jcru has joined #heat | 14:23 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 14:26 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 14:26 | |
*** matsuhashi has quit IRC | 14:28 | |
sdake | pafuent cool | 14:33 |
*** nosnos has quit IRC | 14:37 | |
*** ruhe has quit IRC | 14:41 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 14:45 | |
*** lcheng has joined #heat | 14:51 | |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Validation for Outputs template section https://review.openstack.org/70358 | 14:54 |
skraynev | shardy, therve: Could you please look this patch (https://review.openstack.org/#/c/70358/)? I have tried to fix bug (link in commit message), but I think, that my solution is not good. Would you give some advices or comments, how do you think it should be done (if it possible), please. | 14:58 |
*** sabeen has joined #heat | 14:58 | |
*** blomquisg has joined #heat | 14:59 | |
*** skraynev is now known as skraynev_away | 15:01 | |
*** russellb is now known as rustlebee | 15:02 | |
therve | Yeah I don't know | 15:02 |
therve | I would focus on the other part of the bug, which is to display available information | 15:03 |
therve | validation on resource attribute is unlikely to be super easy | 15:03 |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 15:04 | |
shardy | skraynev_away: I'm not sure either tbh, tspatzier or zaneb may have some suggestions re the implementation | 15:05 |
*** rcleere has joined #heat | 15:05 | |
*** tspatzier has quit IRC | 15:06 | |
pscheie | If the properties of a SecurityGroup change (in the heat template), does running stack-update cause any instance using that SecurityGroup to be respun? | 15:07 |
*** tims has joined #heat | 15:08 | |
*** pablosan has joined #heat | 15:09 | |
*** tims1 has joined #heat | 15:11 | |
shardy | pscheie: Yes | 15:11 |
openstackgerrit | Pablo Andres Fuente proposed a change to openstack/heat: New Event uuid column and autoincremental id https://review.openstack.org/63839 | 15:12 |
*** tims has quit IRC | 15:13 | |
*** rwsu has joined #heat | 15:13 | |
*** lcheng has quit IRC | 15:14 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 15:14 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 15:15 | |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Add a nova keypair constraint https://review.openstack.org/70319 | 15:19 |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Implement custom constraints https://review.openstack.org/70318 | 15:19 |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 15:20 | |
pscheie | shardy, tx. | 15:21 |
therve | Pfiu | 15:21 |
pscheie | I just went and tested it and indeed it does. Explains a mystery from yesterday. | 15:21 |
shardy | pscheie: The SecurityGroup resource currently doesn't support updates, so we always replace it (which triggers replacement of the instance resource(s) | 15:22 |
*** mattgriffin has joined #heat | 15:22 | |
pscheie | shardy, does "currently doesn't support" imply that it might/will in the future? | 15:23 |
*** lcheng has joined #heat | 15:24 | |
shardy | pscheie: I've not looked into it myself, but nova has a "secgroup-update" so it may be possible | 15:24 |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 15:29 | |
*** sjmc7 has joined #heat | 15:29 | |
*** IlyaE has joined #heat | 15:32 | |
*** lcheng has quit IRC | 15:33 | |
*** bnemec is now known as beekneemech | 15:33 | |
pshchelo | how can I drive the stack out of UPDATE_FAILED status? | 15:33 |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 15:34 | |
shardy | pshchelo: atm, you can't: | 15:37 |
shardy | https://blueprints.launchpad.net/heat/+spec/update-failure-recovery | 15:37 |
pshchelo | shardy: ok, tanks, delete, rinse, repeat that is | 15:38 |
*** coolsvap has joined #heat | 15:38 | |
*** topol has joined #heat | 15:39 | |
larsks | shardy: pshchelo's question reminds me of something I ran into yesterday: is there any way to delete a stack that is in CREATE_IN_PROGRESS? | 15:42 |
shardy | larsks: https://review.openstack.org/#/c/63002/ | 15:42 |
pshchelo | larsks: nope, as far as I get it not for now | 15:42 |
*** gokrokve has quit IRC | 15:43 | |
pshchelo | yes, that ^^ | 15:43 |
shardy | larsks: We used to allow it, but the multi-engine locking now prohibits it | 15:43 |
larsks | shardy: Awesome. I had an extra "0" on a wait condition that was never going to get signaled... | 15:43 |
larsks | Fortunately, restarting heat let me delete it. | 15:43 |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 15:43 | |
shardy | hopefully we'll get that fix landed soon then you'll be able to cancel the in-progress action and delete | 15:43 |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 15:44 | |
pshchelo | I'm also waiting for this patch, so that I'll implement cancel of running update | 15:44 |
*** gokrokve has joined #heat | 15:44 | |
pshchelo | have a "working" version that stumbles on multi-engine | 15:44 |
*** skraynev_away is now known as skraynev | 15:54 | |
larsks | Given the existing template syntax, is it essentially impossible to detect mis-spelled intrinsic functions? | 15:54 |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 15:54 | |
*** achampio1 has joined #heat | 15:55 | |
*** pasquier-s has quit IRC | 15:55 | |
skraynev | shardy, therve: ok. thx | 15:56 |
*** achampion has quit IRC | 15:56 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 15:56 | |
*** alexheneveld has quit IRC | 15:58 | |
*** achampion has joined #heat | 16:00 | |
*** achampio1 has quit IRC | 16:01 | |
*** skraynev_ has joined #heat | 16:02 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat-templates: Fix cfn-isms in OpenShift Enterprise Neutron template https://review.openstack.org/70006 | 16:03 |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 16:04 | |
openstackgerrit | A change was merged to openstack/heat-templates: Run dos2unix over template files https://review.openstack.org/70004 | 16:05 |
*** alexheneveld has joined #heat | 16:09 | |
*** alexheneveld has quit IRC | 16:11 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 16:19 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 16:20 | |
*** jamieh has joined #heat | 16:21 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 16:24 | |
openstackgerrit | Vijendar Komalla proposed a change to openstack/python-heatclient: python-heatclient stack-abandon support https://review.openstack.org/62925 | 16:28 |
*** jistr has quit IRC | 16:30 | |
*** topol has quit IRC | 16:30 | |
*** vijendar has quit IRC | 16:30 | |
*** aignatov is now known as aignatov_ | 16:32 | |
*** topol has joined #heat | 16:32 | |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Translate constraint description in validation https://review.openstack.org/70372 | 16:33 |
*** gokrokve has quit IRC | 16:36 | |
*** gokrokve has joined #heat | 16:37 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 16:39 | |
*** SergeyLukjanov_a is now known as SergeyLukjanov_ | 16:40 | |
zaneb | unfortunately I have to go offline for a bit... I will be back later today | 16:41 |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 16:41 | |
*** gokrokve has quit IRC | 16:42 | |
*** zaneb has quit IRC | 16:45 | |
*** jcru has quit IRC | 16:50 | |
*** akuznetsov has quit IRC | 16:50 | |
*** pshchelo has quit IRC | 16:50 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 16:51 | |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Add a nova keypair constraint https://review.openstack.org/70319 | 16:51 |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Implement custom constraints https://review.openstack.org/70318 | 16:51 |
*** e0ne has quit IRC | 16:52 | |
*** e0ne has joined #heat | 16:53 | |
*** SergeyLukjanov_ is now known as SergeyLukjanov | 16:54 | |
*** jprovazn has quit IRC | 16:55 | |
*** SergeyLukjanov is now known as SergeyLukjanov_ | 16:55 | |
*** e0ne has quit IRC | 16:57 | |
*** pablosan has quit IRC | 17:00 | |
*** skraynev_ has quit IRC | 17:01 | |
*** jcru has joined #heat | 17:03 | |
*** vijendar has joined #heat | 17:08 | |
openstackgerrit | Vijendar Komalla proposed a change to openstack/python-heatclient: Adding stack-adopt support to python-heatclient https://review.openstack.org/70380 | 17:08 |
*** alexheneveld has joined #heat | 17:14 | |
*** lcheng has joined #heat | 17:16 | |
*** shakayumi has joined #heat | 17:18 | |
*** gokrokve has joined #heat | 17:21 | |
*** shakayum_ has joined #heat | 17:21 | |
*** alexheneveld has quit IRC | 17:22 | |
*** skraynev_ has joined #heat | 17:24 | |
*** shakayumi has quit IRC | 17:24 | |
*** q3k has joined #heat | 17:27 | |
*** tango|2 has joined #heat | 17:29 | |
*** david-lyle has joined #heat | 17:30 | |
openstackgerrit | Vijendar Komalla proposed a change to openstack/heat: Delete rackspace database resource https://review.openstack.org/68144 | 17:39 |
openstackgerrit | Vijendar Komalla proposed a change to openstack/heat: Provide region_name to trove-client https://review.openstack.org/69413 | 17:39 |
openstackgerrit | A change was merged to openstack/heat-templates: Fix incorrect HOT Parameter types https://review.openstack.org/70005 | 17:39 |
*** Guest6335 has quit IRC | 17:46 | |
*** harlowja_away is now known as harlowja | 17:55 | |
*** akuznetsov has joined #heat | 18:05 | |
*** pafuent has left #heat | 18:08 | |
*** pafuent has joined #heat | 18:08 | |
*** pafuent has left #heat | 18:09 | |
*** pafuent has joined #heat | 18:09 | |
*** pafuent1 has joined #heat | 18:10 | |
*** shakayum_ has quit IRC | 18:12 | |
*** pafuent has quit IRC | 18:13 | |
*** dims has quit IRC | 18:15 | |
*** shakayumi has joined #heat | 18:16 | |
*** dims has joined #heat | 18:18 | |
*** akuznetsov has quit IRC | 18:19 | |
*** aignatov_ is now known as aignatov | 18:24 | |
*** akuznetsov has joined #heat | 18:35 | |
*** pafuent1 is now known as pafuent | 18:37 | |
*** yogesh has joined #heat | 18:41 | |
*** cody-somerville has joined #heat | 18:44 | |
*** aignatov is now known as aignatov_ | 18:50 | |
*** e0ne has joined #heat | 18:51 | |
*** yogesh_ has joined #heat | 18:55 | |
*** yogesh has quit IRC | 18:55 | |
*** lcheng has quit IRC | 19:00 | |
*** dims has quit IRC | 19:00 | |
*** aignatov_ is now known as aignatov | 19:01 | |
openstackgerrit | A change was merged to openstack/heat: Map the NotFound exception to HTTPNotFound https://review.openstack.org/70288 | 19:06 |
*** spzala has joined #heat | 19:07 | |
*** akuznetsov has quit IRC | 19:07 | |
*** dims has joined #heat | 19:14 | |
*** IlyaE has quit IRC | 19:19 | |
*** kfox1111 has joined #heat | 19:20 | |
kfox1111 | whats the best way to get an common private key (ssl, ssh, etc) to all members of a load-balancer pool in a secure way? | 19:22 |
pscheie | If a stack update fails, it seems to prevent/prohibit any future updates. | 19:22 |
pscheie | Any way to fix this? | 19:22 |
kfox1111 | not that I know of. I know they are working on making that work better. | 19:25 |
*** aignatov is now known as aignatov_ | 19:28 | |
pscheie | Nuts. I was updating a stack and forgot to include a flavor in the parameters. | 19:29 |
pscheie | Adding it in is trivial, but now I can't ever make any further changes to this stack because once it gets to a UPDATE_FAILED state, it won't allow any more updates. | 19:30 |
kfox1111 | yeah. :/ I've been really reluctant to use update ever. | 19:30 |
kfox1111 | I'm hoping icehouse will be much better in that regurad. | 19:30 |
pscheie | We use updates a lot. | 19:30 |
*** aignatov_ is now known as aignatov | 19:31 | |
pscheie | Icehouse isn't due until April, is it? | 19:31 |
openstackgerrit | Rhys Oxenham proposed a change to openstack/python-heatclient: Fix minor text spacing issue in Heat CLI usage menu https://review.openstack.org/70295 | 19:31 |
kfox1111 | yeah. mid april. | 19:31 |
kfox1111 | https://blueprints.launchpad.net/heat/+spec/update-failure-recovery | 19:32 |
kfox1111 | Might watch that blueprint. | 19:32 |
*** che-arne has quit IRC | 19:36 | |
*** IlyaE has joined #heat | 19:48 | |
*** che-arne has joined #heat | 19:49 | |
*** nati_ueno has joined #heat | 19:50 | |
*** nati_ueno has quit IRC | 19:50 | |
*** nati_ueno has joined #heat | 19:51 | |
*** pvaneck has joined #heat | 20:20 | |
*** andrew_plunk has joined #heat | 20:26 | |
*** swygue has joined #heat | 20:29 | |
*** skraynev__ has joined #heat | 20:31 | |
*** skraynev__ has quit IRC | 20:31 | |
*** rcleere has quit IRC | 20:31 | |
*** skraynev_ has quit IRC | 20:34 | |
*** bgorski has quit IRC | 20:38 | |
*** jamieh has quit IRC | 21:05 | |
*** aignatov is now known as aignatov_ | 21:06 | |
*** pafuent has left #heat | 21:12 | |
*** rcleere has joined #heat | 21:13 | |
*** giulivo has quit IRC | 21:15 | |
*** aberezin has joined #heat | 21:19 | |
*** sabeen has quit IRC | 21:20 | |
*** lcheng has joined #heat | 21:24 | |
*** david-lyle has quit IRC | 21:33 | |
openstackgerrit | Anderson Mesquita proposed a change to openstack/heat: Move X-Auth-Url logic to auth_url middleware https://review.openstack.org/68800 | 21:35 |
*** rpothier has quit IRC | 21:37 | |
*** rpothier_ has joined #heat | 21:37 | |
*** e0ne has quit IRC | 21:37 | |
*** jdob has quit IRC | 21:40 | |
*** zaneb has joined #heat | 21:42 | |
zaneb | January 2014 | 21:43 |
zaneb | Suspend/Resume is still broken on Fedora | 21:44 |
zaneb | That Is All. | 21:44 |
*** rpothier has joined #heat | 21:44 | |
*** rpothier_ has quit IRC | 21:48 | |
*** rpothier has quit IRC | 21:49 | |
*** lcheng has quit IRC | 21:52 | |
*** openstackgerrit has quit IRC | 21:53 | |
*** openstackgerrit has joined #heat | 21:53 | |
pscheie | zaneb, is https://blueprints.launchpad.net/heat/+spec/update-failure-recovery likely to be included in icehouse | 21:53 |
pscheie | ? | 21:54 |
zaneb | regrettably I have to say it's not likely, no :( | 21:54 |
pscheie | Oh, that's unfortunate. Why so? | 21:55 |
zaneb | not enough hours in the day | 21:55 |
pscheie | Understandable. | 21:55 |
zaneb | I haven't started on it yet, and as you can see from that graph there's a whole bunch of stuff to be done first | 21:56 |
zaneb | and I'm struggling to even make much of a dent in that | 21:56 |
pscheie | Is there any sort of workaround in the meantime? I seem to recall someone mentioning making a change in the DB, but I forget the details (if I even knew them). | 21:56 |
pscheie | Something about going in an manually changing the status of the stack. | 21:57 |
zaneb | I guess you could try that | 21:57 |
zaneb | it very much depends on the situation how well it would work | 21:57 |
pscheie | Well, I've got a stack where a resource specified a parameter and I'd forgotten to include the parameter. | 21:58 |
pscheie | A pretty simple mistake. | 21:59 |
pscheie | What do other folks do? Just delete and respin the whole stack? | 21:59 |
zaneb | that's the non-workaround method, yes | 22:01 |
*** lcheng has joined #heat | 22:03 | |
pscheie | Yeah, won't really work in our case, unfortunately. | 22:04 |
*** topol has quit IRC | 22:04 | |
*** tspatzier has joined #heat | 22:09 | |
*** shakayumi has quit IRC | 22:14 | |
*** vijendar has quit IRC | 22:14 | |
*** shakayumi has joined #heat | 22:14 | |
*** vijendar has joined #heat | 22:14 | |
*** vijendar has quit IRC | 22:15 | |
*** sgordon has quit IRC | 22:18 | |
*** aweiteka has quit IRC | 22:39 | |
*** lcheng has quit IRC | 22:40 | |
*** lcheng has joined #heat | 22:44 | |
*** aberezin has quit IRC | 22:51 | |
*** lcheng has quit IRC | 22:56 | |
kfox1111 | will the unmanage/remanage resource thing work in icehouse? It might be a way to manually workaround the update failed case too. | 23:01 |
*** jcru has quit IRC | 23:03 | |
*** yogesh_ has quit IRC | 23:03 | |
*** jmckind has quit IRC | 23:04 | |
*** dims has quit IRC | 23:08 | |
*** radez is now known as radez_g0n3 | 23:09 | |
*** tspatzier has quit IRC | 23:10 | |
kfox1111 | hmm... I'm not seeing blueprints for that anymore. | 23:11 |
kfox1111 | I was pretty sure there was a blueprint for removing a managed resource from a heat template without having it delete the resource. | 23:13 |
kfox1111 | oh. No, I'm just blind. adopt-stack and abandon-stack. | 23:14 |
kfox1111 | Looks like both are done. | 23:15 |
*** dims has joined #heat | 23:26 | |
*** gokrokve_ has joined #heat | 23:45 | |
*** gokrokve has quit IRC | 23:49 | |
*** rcleere has quit IRC | 23:56 | |
zaneb | kfox1111: that might work | 23:58 |
zaneb | the problem is that after a failed update you end up keeping the _new_ template and some mixture of old and new resources | 23:58 |
*** IlyaE has quit IRC | 23:59 | |
zaneb | that said, rollback ought to work. I recommend enabling that when you update | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!