*** ccs has joined #heat | 00:01 | |
*** arbylee has quit IRC | 00:15 | |
openstackgerrit | Chmouel Boudjnah proposed a change to openstack/python-heatclient: Use jsonutils from oslo incubator https://review.openstack.org/62255 | 00:19 |
---|---|---|
openstackgerrit | A change was merged to openstack/heat: Add support for network name for os::nova::Server https://review.openstack.org/59796 | 00:21 |
*** ccs has quit IRC | 00:30 | |
*** gokrokve has joined #heat | 00:31 | |
*** rongze has joined #heat | 00:31 | |
SpamapS | stevebaker: hey I skimmed your config status email.. looking pretty good.. still need to dig into the examples. :) | 00:32 |
SpamapS | stevebaker: I really want that to land so I can port the tripleo heat templates to HOT :) | 00:32 |
SpamapS | no more launchconfigs.. and users.. and blaaahh | 00:32 |
asalkeld | yeah, I read - lots to digest | 00:32 |
asalkeld | stevebaker, don't assume no one is reading | 00:33 |
*** gokrokve_ has joined #heat | 00:33 | |
stevebaker | SpamapS: I really need to go through the implications for the tripleo templates. On the plus side, no hook is required. On the minus side the top levels of the metadata format has changed. Now its {'namespace': [config1, config2, ...]} | 00:35 |
SpamapS | stevebaker: that is really easy to adapt to | 00:35 |
SpamapS | stevebaker: and falls in line with how occ wants things to work anyway | 00:36 |
stevebaker | good | 00:36 |
asalkeld | stevebaker, a concern i have is the inputs/outputs are not typed like the properties | 00:36 |
stevebaker | they are typed like parameters | 00:36 |
asalkeld | really? | 00:36 |
*** gokrokve has quit IRC | 00:36 | |
asalkeld | cool | 00:36 |
*** rongze has quit IRC | 00:37 | |
stevebaker | well, you can define types, but nothing is done with that yet. http://docs-draft.openstack.org/79/58879/6/check/gate-heat-docs/af0731a/doc/build/html/template_guide/openstack.html#OS::Heat::SoftwareConfig inputs -> type | 00:38 |
stevebaker | it may need to switch to something more parameters-like once we try to implement a hook for a CM tool with strong typing | 00:39 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Improve autoscaling error message https://review.openstack.org/61607 | 00:42 |
asalkeld | stevebaker, can't the inputs just be the properties? | 00:42 |
*** arbylee has joined #heat | 00:42 | |
stevebaker | the properties of what? | 00:42 |
asalkeld | software config | 00:42 |
*** alexheneveld has joined #heat | 00:43 | |
asalkeld | and we derive the attributes from the config content | 00:43 |
*** alexheneveld has quit IRC | 00:43 | |
stevebaker | how would a template author define what properties they want for the config? | 00:44 |
asalkeld | TemplateResource | 00:44 |
asalkeld | actually | 00:44 |
asalkeld | what I was really after was the no software config | 00:45 |
asalkeld | (so when it is not a resource) | 00:45 |
asalkeld | but more of a template | 00:45 |
asalkeld | I think that is better (but dones not invalidate your resource) | 00:46 |
asalkeld | also (a bit premature - I know) but we could store the config in glance | 00:47 |
*** ccs has joined #heat | 00:49 | |
stevebaker | yes, I think SoftwareConfig will be used mostly inside TemplateResource | 00:58 |
asalkeld | stevebaker, any bright ideas on how to choose the crypto method? another config option? | 01:00 |
asalkeld | then we have 2 crypto techniques in the code - arg | 01:01 |
SpamapS | isn't this why we have migrations? | 01:02 |
asalkeld | SpamapS, so in the db migrate do a decrypt/new_encrypt | 01:04 |
*** nosnos has joined #heat | 01:05 | |
*** gokrokve has joined #heat | 01:05 | |
*** faramir has joined #heat | 01:06 | |
openstackgerrit | A change was merged to openstack/heat: Update tox.ini to use new features https://review.openstack.org/60803 | 01:07 |
*** gokrokve_ has quit IRC | 01:08 | |
openstackgerrit | A change was merged to openstack/heat: Utilize stack-lock for multi-engine support https://review.openstack.org/56080 | 01:11 |
stevebaker | asalkeld: how about a new column flag for the encryption method, existing records use the old method, newly created stacks use the new one | 01:17 |
asalkeld | or change redact from true/false to (0=no encrypt, 1=old encrypt, 2 = new encrypt) | 01:34 |
stevebaker | overload alert! | 01:36 |
asalkeld | it would be ok, except it flips the logic | 01:36 |
SpamapS | asalkeld: yeah. The other option is to support both, but IMO these are tiny and will likely convert rapidly. | 01:37 |
SpamapS | Or is this somehow exposed in the API? | 01:37 |
asalkeld | I'll try the migrate method first | 01:38 |
*** arbylee has quit IRC | 01:38 | |
asalkeld | seems the most obvious and easy way to deprecate | 01:38 |
*** fandikurnia01 has joined #heat | 01:44 | |
*** rpothier__ has quit IRC | 01:47 | |
stevebaker | you mean migrate old encrypted values to new encrypted values? That sounds scary unless you're writing to a new column | 01:47 |
asalkeld | why? | 01:50 |
lifeless | stevebaker: what makes it scary? | 01:50 |
stevebaker | if migration fails halfway through, half of your stacks have lost secrets | 01:51 |
lifeless | how so? | 01:51 |
asalkeld | then you get the backup | 01:51 |
asalkeld | :) | 01:51 |
stevebaker | well, I suppose you still have the decryption code | 01:51 |
lifeless | isn't each row atomically updated? | 01:51 |
asalkeld | I wouldn't upgrade with out a backup of the db | 01:51 |
lifeless | asalkeld: busy clouds will have that but invoking it is a pile of fail | 01:52 |
stevebaker | you just have to attempt decryption with both methods to know which one works | 01:52 |
lifeless | stevebaker: right | 01:52 |
asalkeld | stevebaker, doing it at migration should mean you know? | 01:52 |
asalkeld | because at one point all the data is the old encryption and after the migration it's all the new encryption | 01:53 |
stevebaker | do we need to allow live migration? | 01:54 |
lifeless | yesss | 01:55 |
lifeless | silly question | 01:55 |
lifeless | SpamapS: ^ | 01:55 |
asalkeld | mmm | 01:55 |
asalkeld | well then it's messier | 01:55 |
stevebaker | why not a new encryption method column? | 01:56 |
asalkeld | maybe we need the new column after all | 01:57 |
asalkeld | yip | 01:57 |
*** rpothier__ has joined #heat | 01:57 | |
SpamapS | AFAIK, only engine talks to the db in this way, yes? | 01:59 |
*** fandikurnia01 has quit IRC | 01:59 | |
SpamapS | I'd test how fast you can migrate 10000 rows | 01:59 |
asalkeld | yeah | 01:59 |
*** fandikurnia01 has joined #heat | 02:00 | |
stevebaker | doesn't heat-manage connect direct to the db? | 02:00 |
asalkeld | SpamapS, if I add a redact_method we don't need to migrate | 02:00 |
SpamapS | If it is < 5s on a reasonable machine.. do it all in one transaction. Engines should be able to be upgraded and respect the db schema version. | 02:00 |
asalkeld | we can just keep both around for a cycle | 02:00 |
stevebaker | should saving a stack passively switch to the new encryption method for that stack? | 02:01 |
asalkeld | SpamapS, what if the old crypt code then runs | 02:01 |
*** IlyaE has joined #heat | 02:01 | |
asalkeld | you now have old encrypetd secrete | 02:01 |
asalkeld | you need to migrate the data and code atomically | 02:02 |
asalkeld | not so easy | 02:02 |
SpamapS | asalkeld: upgrade engines -> old crypt stays and works but only because of db version. Upgrade database -> new crypt is now in effect. | 02:02 |
lifeless | asalkeld: deployers can sequence the upgrade: | 02:02 |
lifeless | 1) deploy new code | 02:02 |
lifeless | 2) run db syn | 02:02 |
SpamapS | right what he said | 02:02 |
* SpamapS runs off to airport | 02:02 | |
lifeless | the only thing you need to do is make sure all the new code can run before the db sync is done | 02:03 |
asalkeld | or we could start using nova objects | 02:03 |
asalkeld | nasty magic code | 02:04 |
*** ccs has quit IRC | 02:06 | |
openstackgerrit | A change was merged to openstack/python-heatclient: Deprecate mox in favor of mox3 https://review.openstack.org/60547 | 02:06 |
openstackgerrit | A change was merged to openstack/heat: Allow docker plugin to run w/o deps https://review.openstack.org/61190 | 02:06 |
*** ccs has joined #heat | 02:09 | |
lifeless | asalkeld: thats an impl strategy for my point :) | 02:10 |
asalkeld | saying you like/dislike nova objects? | 02:11 |
*** liang has joined #heat | 02:11 | |
*** ccs has quit IRC | 02:11 | |
lifeless | I don't know them well enough to have that sort of opinion | 02:11 |
lifeless | the basic strategy is sound AFAICT | 02:12 |
asalkeld | yeah, need quite a bit of work to drag that in | 02:12 |
*** guohliu has joined #heat | 02:13 | |
*** ccs has joined #heat | 02:19 | |
*** erkules has quit IRC | 02:19 | |
*** erkules_ has joined #heat | 02:19 | |
*** rushiagr has joined #heat | 02:21 | |
*** rongze has joined #heat | 02:23 | |
*** rongze_ has joined #heat | 02:31 | |
*** rongze has quit IRC | 02:33 | |
*** ccs has quit IRC | 02:37 | |
*** gokrokve has quit IRC | 02:41 | |
*** gokrokve has joined #heat | 02:41 | |
*** Alienyyg has joined #heat | 02:42 | |
*** gokrokve has quit IRC | 02:46 | |
openstackgerrit | A change was merged to openstack/heat: Remove unused dumps validation in JsonParam value https://review.openstack.org/60770 | 02:53 |
*** arbylee has joined #heat | 02:54 | |
*** faramir has quit IRC | 03:00 | |
*** rushiagr has quit IRC | 03:04 | |
openstackgerrit | Mitsuru Kanabuchi proposed a change to openstack/heat: Implements resource types OS::Neutron::NetworkGateway and OS::Neutron::NetworkGatewayConnection https://review.openstack.org/62287 | 03:08 |
sdake | is anything further needed for the multiengines blueprint? | 03:10 |
asalkeld | not sure | 03:10 |
sdake | i'll catch up with jasond in the morning then | 03:11 |
sdake | almost got the speaker hung | 03:11 |
sdake | now time to assemble more ikea furniture | 03:11 |
sdake | pretty sure the devil and ikea are in league | 03:11 |
asalkeld | I just bought a cool speaker | 03:11 |
asalkeld | marshall :) | 03:12 |
*** gokrokve has joined #heat | 03:12 | |
sdake | nice | 03:12 |
sdake | got a soundbar for our tv setup in living room | 03:12 |
sdake | and bought a tv mounting bracket friday on amazon | 03:12 |
sdake | they delivered it saturday -> Robyn "get to work hanging!" | 03:12 |
asalkeld | https://www.google.com.au/search?q=marshall+stanmore&tbm=isch&tbo=u&source=univ&sa=X&ei=rW-uUrXpDYvksASG_oGACg&ved=0CDUQsAQ&biw=1600&bih=761 | 03:12 |
asalkeld | not huge, but awesome sound | 03:13 |
sdake | ya those cats make good gear | 03:13 |
sdake | been doing it for 60+ years | 03:13 |
sdake | hope they would have it down by now :) | 03:13 |
asalkeld | the sound just cuts through the walls :) | 03:13 |
*** gokrokve_ has joined #heat | 03:13 | |
*** rushiagr has joined #heat | 03:14 | |
sdake | you hook it up to your phone? | 03:14 |
asalkeld | phone/tv/blue tooth/laptop | 03:15 |
sdake | i asked robyn for this for christmas -> http://schiit.com/products/asgard-2 | 03:15 |
sdake | pretty sure robyn wouldn't tolerate blaring music in the house during the workday ;-) | 03:16 |
*** gokrokve has quit IRC | 03:16 | |
asalkeld | looks ok, we just wanted simple (speaker and amp in one) | 03:17 |
asalkeld | and lots of inputs | 03:17 |
asalkeld | and quality | 03:17 |
asalkeld | checks all those boxes | 03:17 |
sdake | my headphones are only 18 ohm, hard to find a compatible amp | 03:17 |
asalkeld | yeah | 03:18 |
sdake | sounds like garbage coming out of my computer output | 03:18 |
*** gokrokve_ has quit IRC | 03:18 | |
sdake | oh well back to hanging, myself next | 03:19 |
sdake | see you tomororw guys :) | 03:19 |
asalkeld | later | 03:19 |
*** _Seal has joined #heat | 03:20 | |
*** che-arne has quit IRC | 03:24 | |
*** che-arne has joined #heat | 03:26 | |
*** yogesh has joined #heat | 03:26 | |
*** arbylee has joined #heat | 03:29 | |
*** yogesh has quit IRC | 03:31 | |
*** yogesh has joined #heat | 03:32 | |
*** IlyaE has quit IRC | 03:33 | |
*** vkozhukalov has joined #heat | 03:35 | |
*** yogesh has quit IRC | 03:36 | |
*** fandikurnia01 has quit IRC | 03:37 | |
*** ccs has joined #heat | 03:38 | |
*** ccs has quit IRC | 03:39 | |
*** ccs has joined #heat | 03:44 | |
*** rushiagr has quit IRC | 03:48 | |
*** jergerber has joined #heat | 03:51 | |
*** chandankumar has joined #heat | 03:56 | |
*** jergerber has quit IRC | 03:57 | |
*** slong has quit IRC | 04:00 | |
*** ccs has quit IRC | 04:01 | |
*** _Seal has quit IRC | 04:02 | |
*** gokrokve has joined #heat | 04:05 | |
*** arbylee has quit IRC | 04:18 | |
*** sdake has quit IRC | 04:29 | |
*** rushiagr has joined #heat | 04:32 | |
*** rongze_ has quit IRC | 04:44 | |
*** amritanshu_RnD has joined #heat | 04:48 | |
*** arbylee has joined #heat | 04:48 | |
*** spzala has quit IRC | 04:56 | |
*** arbylee has quit IRC | 04:57 | |
*** urulama has joined #heat | 04:58 | |
*** faramir has joined #heat | 04:59 | |
*** gokrokve has quit IRC | 05:07 | |
*** gokrokve has joined #heat | 05:09 | |
*** SergeyLukjanov has joined #heat | 05:11 | |
*** ccs has joined #heat | 05:12 | |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Add support for multiple encryption methods https://review.openstack.org/62295 | 05:13 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: oslo: add the crypto module https://review.openstack.org/59684 | 05:13 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Use oslo crypto https://review.openstack.org/59685 | 05:13 |
*** fandikurnia01 has joined #heat | 05:26 | |
*** faramir has quit IRC | 05:29 | |
*** gokrokve has quit IRC | 05:29 | |
*** gokrokve has joined #heat | 05:30 | |
*** faramir has joined #heat | 05:32 | |
*** nosnos_ has joined #heat | 05:34 | |
*** gokrokve has quit IRC | 05:34 | |
*** rongze has joined #heat | 05:35 | |
*** nosnos_ has quit IRC | 05:35 | |
*** nosnos_ has joined #heat | 05:36 | |
*** nosnos has quit IRC | 05:37 | |
*** rongze has quit IRC | 05:41 | |
*** erkules_ is now known as erkules | 05:41 | |
*** nkhare has joined #heat | 05:43 | |
*** Adri2000 has quit IRC | 05:47 | |
*** IlyaE has joined #heat | 06:01 | |
*** yogesh_ has joined #heat | 06:01 | |
*** skraynev has joined #heat | 06:06 | |
*** vkozhukalov has quit IRC | 06:06 | |
skraynev | Morning | 06:06 |
openstackgerrit | Jenkins proposed a change to openstack/heat: Imported Translations from Transifex https://review.openstack.org/61322 | 06:06 |
*** rongze has joined #heat | 06:08 | |
*** SergeyLukjanov is now known as _SergeyLukjanov | 06:11 | |
*** IlyaE has quit IRC | 06:14 | |
*** _SergeyLukjanov is now known as SergeyLukjanov | 06:20 | |
*** yogesh_ has quit IRC | 06:21 | |
*** fandikurnia01 has quit IRC | 06:22 | |
*** IlyaE has joined #heat | 06:22 | |
*** IlyaE has quit IRC | 06:32 | |
*** IlyaE has joined #heat | 06:33 | |
*** IlyaE has quit IRC | 06:36 | |
*** yogesh_ has joined #heat | 06:37 | |
Alienyyg | morning,skraynev | 06:41 |
*** _Seal has joined #heat | 06:44 | |
*** _Seal has quit IRC | 06:44 | |
*** SushilKM has joined #heat | 06:44 | |
*** rushiagr has quit IRC | 06:44 | |
*** arbylee has joined #heat | 06:54 | |
*** arbylee has quit IRC | 06:58 | |
*** funzo has quit IRC | 06:59 | |
*** nosnos has joined #heat | 06:59 | |
*** nosnos_ has quit IRC | 06:59 | |
skraynev | hi, Alienyyg) | 07:03 |
*** rushiagr has joined #heat | 07:16 | |
Alienyyg | skraynev: I have a zombie stack ,and can not be deleted ,it status keep " delete in progress" , this just happen after I reboot the controller, how can I delete it ? | 07:21 |
skraynev | Alienyyg: I only can guess: 1. delete all resources via related clients. 2. clear you heat db. 3. check that heat stack-list is empty | 07:24 |
*** bgorski has joined #heat | 07:25 | |
*** lsmola has quit IRC | 07:26 | |
Alienyyg | skraynev: I didn't find a CLI which can clear the db, login to mysql and clear the db manually is to dangerous | 07:29 |
skraynev | Alienyyg: Unfortunately is's only way, that I could offer you( | 07:30 |
Alienyyg | skaynev: thanks,but it does not matter if a zombie stack exits, I think. I will say" i can't see you, I can't see you.... " when I operate the stacks | 07:34 |
*** SushilKM has quit IRC | 07:44 | |
*** osphy has joined #heat | 07:51 | |
*** vkozhukalov has joined #heat | 07:53 | |
*** SushilKM has joined #heat | 08:02 | |
skraynev | Alienyyg: ))) | 08:08 |
*** che-arne has quit IRC | 08:16 | |
*** guohliu has quit IRC | 08:26 | |
openstackgerrit | Chmouel Boudjnah proposed a change to openstack/python-heatclient: Show better error when json fail to parse template https://review.openstack.org/62311 | 08:30 |
*** lsmola has joined #heat | 08:31 | |
shardy | morning | 08:32 |
*** che-arne has joined #heat | 08:34 | |
bgorski | morning | 08:37 |
*** pshchelo has joined #heat | 08:42 | |
*** SergeyLukjanov has quit IRC | 08:46 | |
*** TonyBurn has joined #heat | 08:53 | |
*** arbylee has joined #heat | 08:54 | |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/heat: Fix comparison with singletons https://review.openstack.org/61447 | 08:55 |
*** arbylee has quit IRC | 08:58 | |
*** faramir has quit IRC | 08:59 | |
*** tomek_adamczewsk has joined #heat | 09:02 | |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Use oslo crypto https://review.openstack.org/59685 | 09:05 |
openstackgerrit | Angus Salkeld proposed a change to openstack/heat: Add support for multiple encryption methods https://review.openstack.org/62295 | 09:05 |
*** alexheneveld has joined #heat | 09:08 | |
*** derekh has joined #heat | 09:17 | |
*** ccs has quit IRC | 09:18 | |
*** ccs has joined #heat | 09:21 | |
*** faramir has joined #heat | 09:22 | |
*** aignatov has joined #heat | 09:25 | |
*** aignatov has quit IRC | 09:25 | |
openstackgerrit | Andrey Kurilin proposed a change to openstack/python-heatclient: Sync base and exceptions from oslo https://review.openstack.org/61991 | 09:25 |
*** pshchelo has quit IRC | 09:26 | |
*** aignatov has joined #heat | 09:26 | |
*** liang has quit IRC | 09:32 | |
*** giulivo has joined #heat | 09:32 | |
*** akuznetsov has quit IRC | 09:33 | |
*** che-arne has quit IRC | 09:39 | |
*** ccs has quit IRC | 09:40 | |
openstackgerrit | Jordan Pittier proposed a change to openstack/heat: Make endpoint_type configurable https://review.openstack.org/57717 | 09:43 |
*** che-arne has joined #heat | 09:45 | |
openstackgerrit | A change was merged to openstack/heat: Convert [Cinder]Volume to new Schema format https://review.openstack.org/61782 | 09:46 |
Alienyyg | skyaynev, I have delete that zombie stack, it confused me, the reson is the change I did in /etc/heat/enviornment.d/default.yaml, after I change #"AWS::CloudWatch::Alarm": "OS::Heat::CWLiteAlarm" | 09:46 |
Alienyyg | to "file:///etc/heat/templates/AWS_CloudWatch_Alarm.yaml" and I got an error when I start a stack contain "AWS::CloudWatch::Alarm" | 09:46 |
Alienyyg | the error is at http://paste.openstack.org/show/55040/ | 09:47 |
openstackgerrit | A change was merged to openstack/heat: Enables db2 server disconnects to be handled pessimistically https://review.openstack.org/50552 | 09:49 |
openstackgerrit | A change was merged to openstack/heat: oslo: add the crypto module https://review.openstack.org/59684 | 09:50 |
*** giulivo has quit IRC | 09:52 | |
*** bgorski has quit IRC | 09:52 | |
*** yogesh_ has quit IRC | 09:52 | |
*** larsks|phone_ has quit IRC | 09:52 | |
*** john-n-seattle has quit IRC | 09:52 | |
openstackgerrit | A change was merged to openstack/heat: Fix stack_get_by_name does not list nested stack issue https://review.openstack.org/61326 | 09:53 |
shardy | Alienyyg: So you launched the stack, changed default.yaml, then tried to delete it? | 09:53 |
*** giulivo has joined #heat | 09:54 | |
*** bgorski has joined #heat | 09:54 | |
*** yogesh_ has joined #heat | 09:54 | |
*** larsks|phone_ has joined #heat | 09:54 | |
*** john-n-seattle has joined #heat | 09:54 | |
therve | Can someone tell me the point of stack_delete_after? | 09:56 |
shardy | therve: To ensure the stack gets deleted from the DB if the test fails | 09:56 |
therve | shardy, Why does it matter? | 09:57 |
shardy | therve: because if tests create stacks with the same name, one failure makes them all fail | 09:57 |
therve | Huml | 09:57 |
therve | I'm pretty sure I'm reusing names and it doesn't break | 09:59 |
shardy | therve: It won't break until one of the tests fails part way through and doesn't delete the stack before the next test runs | 09:59 |
therve | shardy, But if I don't delete the stack at all? | 10:00 |
shardy | therve: which test are we talking about? | 10:00 |
therve | All in test_neutron_loadbalancer for example | 10:00 |
shardy | I think utils.setup_dummy_db may be providing a clean DB for each test | 10:02 |
shardy | previously, that was not the case in some (many/all) tests | 10:02 |
*** akuznetsov has joined #heat | 10:03 | |
therve | Yeah I wonder | 10:04 |
shardy | There is reset_dummy_db, but it's not being triggered from the base HeatTestCase AFAICS | 10:05 |
*** rongze has quit IRC | 10:09 | |
therve | shardy, What provides unique names in a tenant? | 10:10 |
Alienyyg | shardy: after I change the default.yaml, I can delete the stack, BTW, the stack is created before the modification | 10:10 |
therve | So yeah nothing prevents me from recreating a stack with the same name if I don't use the EngineService | 10:14 |
shardy | therve: Yeah the engine enforces it by raising a StackExists exception, which is mapped to a 409 in the API | 10:15 |
shardy | Alienyyg: I think your failure is expected - we probably need to document that changing the global environment requires deleting all stacks affected by the resource redefinition | 10:16 |
shardy | Alienyyg: A workaround would be to pass an environment file when creating the stack, so the resource mapping isn't affected by the change to default.yaml | 10:17 |
shardy | but in general, I think the answer is "don't do that", as the default.yaml is expected to be a static configuration | 10:17 |
*** faramir has quit IRC | 10:19 | |
Alienyyg | shardy: I won't change it ,as I cann't even launch a stack after the change :) | 10:19 |
*** SergeyLukjanov has joined #heat | 10:24 | |
openstackgerrit | A change was merged to openstack/python-heatclient: Use jsonutils from oslo incubator https://review.openstack.org/62255 | 10:29 |
*** faramir has joined #heat | 10:32 | |
*** rongze has joined #heat | 10:40 | |
*** che-arne has quit IRC | 10:40 | |
*** rongze has quit IRC | 10:45 | |
*** rushiagr has quit IRC | 10:46 | |
*** arbylee has joined #heat | 10:54 | |
openstackgerrit | Jordan Pittier proposed a change to openstack/heat: Make endpoint_type configurable https://review.openstack.org/57717 | 10:56 |
*** arbylee has quit IRC | 10:59 | |
openstackgerrit | A change was merged to openstack/heat: Improve autoscaling error message https://review.openstack.org/61607 | 11:06 |
*** yogesh_ has quit IRC | 11:13 | |
*** yogesh_ has joined #heat | 11:13 | |
*** yogesh_ has quit IRC | 11:18 | |
lsmola | shardy: hello | 11:33 |
*** SushilKM has quit IRC | 11:34 | |
shardy | lsmola: hi | 11:39 |
lsmola | shardy: hello | 11:39 |
lsmola | shardy: I have a quick question | 11:39 |
lsmola | shardy: does heat template has some place where you can put some scripts that will be done after heat stack-create | 11:40 |
lsmola | shardy: look e.g. to step 13 http://docs.openstack.org/developer/tripleo-incubator/devtest_overcloud.html | 11:41 |
lsmola | shardy: I wonder what operations should be packed into template and what should be separated | 11:42 |
shardy | lsmola: It depends on what you mean by "after heat stack-create" | 11:44 |
shardy | most of the scripts which are run via UserData are run when the stack create is in progres (when we create the resource) | 11:44 |
shardy | but it is possible to update the configuration subsequently using cfn-hup, or os-collect-config/os-apply-config, which read updated resource Metadata and apply it | 11:45 |
*** zaneb has quit IRC | 11:49 | |
*** SergeyLukjanov has quit IRC | 11:51 | |
lsmola | shardy: hmm ok | 11:51 |
*** SergeyLukjanov has joined #heat | 11:52 | |
lsmola | shardy: I just wonder whether this kind of initialization belongs to heat template | 11:52 |
lsmola | shadower: or (os-..) | 11:52 |
lsmola | shadower: sorry, typo | 11:52 |
openstackgerrit | Pavlo Shchelokovskyy proposed a change to openstack/python-heatclient: Allow the environment file to be specified via URL https://review.openstack.org/62044 | 11:53 |
*** aignatov has quit IRC | 11:53 | |
lsmola | shardy: or as a separate API call we call after the heat stack-create | 11:53 |
shardy | lsmola: If it was me, I'd be looking to put everything into the template, but really I don't have enough information about what you're trying to do | 11:54 |
lsmola | shardy: well it's an initialization of the openstack application | 11:54 |
lsmola | shardy: which I believe belongs to heat template | 11:54 |
*** urulama_ has joined #heat | 11:54 | |
lsmola | shardy: as it is important part of the deployment | 11:55 |
*** urulama has quit IRC | 11:55 | |
lsmola | shardy: good thing is, there are places where to put it, now there should be a conversation about that | 11:56 |
*** Adri2000 has joined #heat | 11:58 | |
openstackgerrit | A change was merged to openstack/heat: Imported Translations from Transifex https://review.openstack.org/61322 | 12:00 |
*** zaneb has joined #heat | 12:01 | |
*** ifarkas has joined #heat | 12:02 | |
*** aignatov has joined #heat | 12:05 | |
*** chmouel has joined #heat | 12:12 | |
*** aignatov has quit IRC | 12:17 | |
*** aignatov has joined #heat | 12:17 | |
*** faramir has quit IRC | 12:18 | |
*** rushiagr has joined #heat | 12:22 | |
*** urulama_ has quit IRC | 12:27 | |
*** aignatov has quit IRC | 12:28 | |
*** rpothier__ has quit IRC | 12:31 | |
*** nkhare has quit IRC | 12:32 | |
*** aignatov has joined #heat | 12:37 | |
*** alexheneveld has quit IRC | 12:41 | |
*** rongze has joined #heat | 12:41 | |
*** alexheneveld has joined #heat | 12:43 | |
*** rongze has quit IRC | 12:46 | |
*** nosnos has quit IRC | 12:47 | |
openstackgerrit | Andrey Kurilin proposed a change to openstack/python-heatclient: Reuse BaseManager and Resource from oslo. https://review.openstack.org/62348 | 12:51 |
*** tomek_adamczewsk has quit IRC | 13:02 | |
openstackgerrit | Chmouel Boudjnah proposed a change to openstack/heat: Don't pass swift headers as None https://review.openstack.org/62199 | 13:04 |
*** tomek_adamczewsk has joined #heat | 13:10 | |
*** rpothier__ has joined #heat | 13:23 | |
openstackgerrit | Chmouel Boudjnah proposed a change to openstack/heat: use builtin bash getopts https://review.openstack.org/62359 | 13:24 |
*** dims has quit IRC | 13:26 | |
*** amritanshu_RnD has quit IRC | 13:26 | |
*** rushiagr has quit IRC | 13:30 | |
*** radez_g0n3 is now known as radez | 13:32 | |
*** dims has joined #heat | 13:35 | |
openstackgerrit | Jordan Pittier proposed a change to openstack/heat: Make endpoint_type configurable https://review.openstack.org/57717 | 13:35 |
openstackgerrit | Andrey Kurilin proposed a change to openstack/python-heatclient: Reuse BaseManager and Resource from oslo https://review.openstack.org/62348 | 13:35 |
openstackgerrit | Andrey Kurilin proposed a change to openstack/python-heatclient: Sync base and exceptions from oslo https://review.openstack.org/61991 | 13:35 |
*** jamieh has joined #heat | 13:35 | |
*** john-n-seattle1 has joined #heat | 13:46 | |
*** zigo has quit IRC | 13:55 | |
*** zigo has joined #heat | 14:00 | |
*** alexheneveld has quit IRC | 14:02 | |
*** che-arne has joined #heat | 14:09 | |
*** rongze has joined #heat | 14:12 | |
*** spzala has joined #heat | 14:18 | |
*** bgorski has quit IRC | 14:20 | |
*** rustlebee is now known as russellb | 14:22 | |
*** mestery_ is now known as mestery | 14:22 | |
*** john-n-seattle1 has quit IRC | 14:23 | |
*** vkozhukalov has quit IRC | 14:23 | |
*** denis_makogon has quit IRC | 14:23 | |
*** pasquier-s has quit IRC | 14:23 | |
*** asalkeld has quit IRC | 14:23 | |
*** sdake_ has quit IRC | 14:23 | |
*** SergeyLukjanov is now known as _SergeyLukjanov | 14:24 | |
*** giulivo has quit IRC | 14:24 | |
*** bgorski has joined #heat | 14:24 | |
*** _SergeyLukjanov has quit IRC | 14:24 | |
*** tomek_adamczewsk has quit IRC | 14:24 | |
*** jcru has joined #heat | 14:24 | |
*** giulivo has joined #heat | 14:25 | |
*** alexheneveld has joined #heat | 14:26 | |
*** vodorezov has joined #heat | 14:27 | |
*** tomek_adamczewsk has joined #heat | 14:28 | |
*** pasquier-s has joined #heat | 14:30 | |
*** sdake_ has joined #heat | 14:30 | |
*** asalkeld has joined #heat | 14:30 | |
*** vkozhukalov has joined #heat | 14:30 | |
*** denis_makogon has joined #heat | 14:30 | |
*** openstackgerrit has quit IRC | 14:31 | |
*** openstackgerrit has joined #heat | 14:31 | |
*** john-n-seattle1 has joined #heat | 14:32 | |
*** sdake_ has quit IRC | 14:35 | |
*** sdake_ has joined #heat | 14:35 | |
*** vodorezov has quit IRC | 14:37 | |
*** rushiagr has joined #heat | 14:38 | |
*** jasond has joined #heat | 14:41 | |
sdake_ | jasond ping re multi engines | 14:41 |
jasond | sdake_: hey | 14:42 |
sdake_ | hey - so is all the code in for multi-engines now? | 14:42 |
sdake_ | or does more work need to be done? | 14:42 |
openstackgerrit | Sergey Kraynev proposed a change to openstack/heat: Implement neutron metering resources https://review.openstack.org/62378 | 14:42 |
jasond | sdake_: yep, looks like it | 14:42 |
sdake_ | nice work - know its been a rough slog :) | 14:43 |
jasond | thanks! :) | 14:43 |
*** pshchelo has joined #heat | 14:43 | |
skraynev | jasond, sdake_: What is about 2 other section in BP? I mean: "add alarming to ceilometer" and "remove heat's watcher task" | 14:45 |
skraynev | Or multi-engine currently is available for using? | 14:45 |
shardy | skraynev: Alarming was added to ceilometer for Havana, and the heat watcher task is now optional, because you can use Ceilometer alarms instead | 14:46 |
skraynev | shardy: Yep, I know about it. May be update status in BP? Because it seems very confused. | 14:47 |
*** tomek_adamczewsk has quit IRC | 14:49 | |
*** jasond has quit IRC | 14:49 | |
*** jasond has joined #heat | 14:49 | |
*** alcabrera has joined #heat | 14:50 | |
*** alcabrera has left #heat | 14:50 | |
*** AndrewMichalik has joined #heat | 14:53 | |
*** tims has joined #heat | 14:57 | |
sdake_ | radix around? | 14:58 |
*** pfreund has joined #heat | 15:00 | |
openstackgerrit | ZhiQiang Fan proposed a change to openstack/python-heatclient: Supports bash_completion for heatclient https://review.openstack.org/62144 | 15:04 |
*** funzo has joined #heat | 15:05 | |
*** brint has joined #heat | 15:05 | |
openstackgerrit | Thomas Herve proposed a change to openstack/heat: Remove useless validate methods https://review.openstack.org/62394 | 15:06 |
*** che-arne has quit IRC | 15:07 | |
openstackgerrit | Jason Dunsmore proposed a change to openstack/heat: Validate number of instance metadata entries https://review.openstack.org/61864 | 15:07 |
*** sjmc has joined #heat | 15:08 | |
*** rpothier_ has joined #heat | 15:11 | |
*** tims has quit IRC | 15:12 | |
*** mestery_ has joined #heat | 15:14 | |
*** plomakin_ has joined #heat | 15:14 | |
*** akuznetsov has quit IRC | 15:14 | |
*** sirushti has quit IRC | 15:14 | |
*** plomakin has quit IRC | 15:14 | |
*** asalkeld has quit IRC | 15:14 | |
*** rpothier__ has quit IRC | 15:14 | |
*** akuznets_ has joined #heat | 15:14 | |
*** asalkeld has joined #heat | 15:15 | |
*** nkhare has joined #heat | 15:15 | |
*** bvandenh has quit IRC | 15:17 | |
*** tomek_adamczewsk has joined #heat | 15:17 | |
*** sirushti has joined #heat | 15:17 | |
*** SergeyLukjanov has joined #heat | 15:17 | |
*** mestery has quit IRC | 15:17 | |
*** SushilKM has joined #heat | 15:18 | |
openstackgerrit | A change was merged to openstack/heat: Add oslo mock fixture https://review.openstack.org/62086 | 15:19 |
*** che-arne has joined #heat | 15:20 | |
radix | sdake_: yo | 15:23 |
*** sabeen has joined #heat | 15:23 | |
*** vkozhukalov has quit IRC | 15:23 | |
*** pscheie_ has quit IRC | 15:27 | |
pshchelo | is stevebaker around? | 15:29 |
sdake_ | radix was it a system76 workstation you got with linux preinstalled? | 15:29 |
sdake_ | pschelo try about 6 hours from now - he is in NZ | 15:29 |
pshchelo | ok, thnx | 15:29 |
radix | sdake_: yep, got a beefy box from them. also bought the xps13 developer edition from Dell. | 15:30 |
*** bvandenh has joined #heat | 15:30 | |
sdake_ | did the xps13 have windows preinstalled, or were you able to get one without windows? | 15:30 |
*** gokrokve has joined #heat | 15:32 | |
*** alexheneveld has quit IRC | 15:33 | |
*** tomek_adamczewsk has quit IRC | 15:33 | |
*** blamar has joined #heat | 15:35 | |
radix | the developer edition comes with ubuntu | 15:36 |
*** john-n-seattle1 has quit IRC | 15:36 | |
radix | sorry, was afk | 15:36 |
*** randallburt has joined #heat | 15:36 | |
*** randallburt has joined #heat | 15:37 | |
*** jergerber has joined #heat | 15:37 | |
*** jergerber has quit IRC | 15:37 | |
*** jergerber has joined #heat | 15:37 | |
sdake_ | i want a SFF workstation - but they don't seem to come with linux | 15:37 |
sdake_ | guess I'll have to get a custom quote from our dell guy | 15:37 |
sdake_ | just wondering if there was an easier way :) | 15:38 |
*** rcleere has joined #heat | 15:38 | |
*** jergerber has quit IRC | 15:39 | |
*** zigo has quit IRC | 15:39 | |
*** zaneb has quit IRC | 15:39 | |
*** Adri2000 has quit IRC | 15:39 | |
*** larsks|phone_ has quit IRC | 15:39 | |
*** john-n-seattle has quit IRC | 15:39 | |
radix | well, system76 does some small form factors too | 15:41 |
*** SushilKM has quit IRC | 15:43 | |
*** zaneb has joined #heat | 15:44 | |
*** pscheie__ has joined #heat | 15:44 | |
*** tims has joined #heat | 15:44 | |
*** zigo has joined #heat | 15:44 | |
*** Adri2000 has joined #heat | 15:44 | |
*** larsks|phone_ has joined #heat | 15:44 | |
*** john-n-seattle has joined #heat | 15:44 | |
*** topol has joined #heat | 15:45 | |
*** spzala_ has joined #heat | 15:46 | |
SpamapS | sdake_: http://h71028.www7.hp.com/enterprise/cache/321117-0-0-0-121.html ... we have lots of options :) | 15:48 |
*** TonyBurn1 has joined #heat | 15:48 | |
*** metabro_ has joined #heat | 15:49 | |
*** nkhare_ has joined #heat | 15:51 | |
*** mtaylor has joined #heat | 15:51 | |
*** john-n-seattle1 has joined #heat | 15:52 | |
*** dmakogon_ has joined #heat | 15:52 | |
*** lsmola_ has joined #heat | 15:52 | |
*** sdake_ has quit IRC | 15:53 | |
*** TonyBurn_ has quit IRC | 15:54 | |
*** metabro has quit IRC | 15:54 | |
*** mordred has quit IRC | 15:55 | |
*** nkhare has quit IRC | 15:56 | |
*** denis_makogon has quit IRC | 15:56 | |
*** pasquier-s has quit IRC | 15:56 | |
*** spzala has quit IRC | 15:56 | |
*** lsmola has quit IRC | 15:56 | |
*** john-n-seattle1 has left #heat | 15:57 | |
*** alexheneveld has joined #heat | 15:58 | |
*** pasquier-s has joined #heat | 15:59 | |
*** nkhare_ has quit IRC | 16:02 | |
*** derekh has quit IRC | 16:03 | |
*** osphy has quit IRC | 16:03 | |
*** sdake has joined #heat | 16:03 | |
*** sdake has quit IRC | 16:03 | |
*** sdake has joined #heat | 16:03 | |
*** derekh has joined #heat | 16:04 | |
*** pfreund has quit IRC | 16:04 | |
openstackgerrit | Pablo Andres Fuente proposed a change to openstack/heat: WaitCondition Count property is now updatable https://review.openstack.org/61218 | 16:05 |
*** mestery_ is now known as mestery | 16:05 | |
*** pfreund has joined #heat | 16:05 | |
*** dmakogon_ is now known as denis_makogon | 16:09 | |
*** akuznetsov has joined #heat | 16:13 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Use property name constants in Ceilometer alarm https://review.openstack.org/62413 | 16:16 |
*** chandankumar has quit IRC | 16:17 | |
*** sdake has quit IRC | 16:18 | |
*** mtaylor has quit IRC | 16:18 | |
*** metabro_ has quit IRC | 16:18 | |
*** shardy has quit IRC | 16:18 | |
*** Daviey has quit IRC | 16:18 | |
*** chmouel has quit IRC | 16:18 | |
*** jomara has quit IRC | 16:18 | |
*** radix has quit IRC | 16:18 | |
*** zaneb has quit IRC | 16:18 | |
*** pscheie__ has quit IRC | 16:18 | |
*** tims has quit IRC | 16:18 | |
*** zigo has quit IRC | 16:18 | |
*** Adri2000 has quit IRC | 16:18 | |
*** larsks|phone_ has quit IRC | 16:18 | |
*** john-n-seattle has quit IRC | 16:18 | |
*** jpeeler has quit IRC | 16:18 | |
*** pleia2 has quit IRC | 16:18 | |
*** al-maisan has quit IRC | 16:18 | |
*** SpamapS has quit IRC | 16:18 | |
*** scroiset_ has quit IRC | 16:18 | |
*** hub_cap has quit IRC | 16:18 | |
*** lazzurs has quit IRC | 16:18 | |
*** derekh has quit IRC | 16:18 | |
*** blamar has quit IRC | 16:18 | |
*** SergeyLukjanov has quit IRC | 16:18 | |
*** akuznets_ has quit IRC | 16:18 | |
*** brint has quit IRC | 16:18 | |
*** pshchelo has quit IRC | 16:18 | |
*** fsargent has quit IRC | 16:18 | |
*** stevebaker has quit IRC | 16:18 | |
*** Daviey_ has joined #heat | 16:21 | |
*** metabro_ has joined #heat | 16:21 | |
*** chmouel has joined #heat | 16:21 | |
*** derekh has joined #heat | 16:21 | |
*** john-n-seattle has joined #heat | 16:21 | |
*** larsks|phone_ has joined #heat | 16:21 | |
*** Adri2000 has joined #heat | 16:21 | |
*** zigo has joined #heat | 16:21 | |
*** tims has joined #heat | 16:21 | |
*** pscheie__ has joined #heat | 16:21 | |
*** zaneb has joined #heat | 16:21 | |
*** blamar has joined #heat | 16:21 | |
*** brint has joined #heat | 16:21 | |
*** jpeeler has joined #heat | 16:21 | |
*** jomara has joined #heat | 16:21 | |
*** pleia2 has joined #heat | 16:21 | |
*** al-maisan has joined #heat | 16:21 | |
*** SpamapS has joined #heat | 16:21 | |
*** scroiset_ has joined #heat | 16:21 | |
*** fsargent has joined #heat | 16:21 | |
*** hub_cap has joined #heat | 16:21 | |
*** stevebaker has joined #heat | 16:21 | |
*** radix has joined #heat | 16:21 | |
*** lazzurs has joined #heat | 16:21 | |
*** swygue has joined #heat | 16:21 | |
*** sergmelikyan has quit IRC | 16:22 | |
*** sdake has joined #heat | 16:23 | |
*** aignatov has quit IRC | 16:23 | |
*** Daviey_ has quit IRC | 16:23 | |
*** Daviey_ has joined #heat | 16:23 | |
*** Daviey_ is now known as Daviey | 16:24 | |
*** lsmola_ has quit IRC | 16:24 | |
*** mtaylor has joined #heat | 16:25 | |
*** jergerber has joined #heat | 16:26 | |
*** rushiagr has quit IRC | 16:26 | |
*** rwsu_ has joined #heat | 16:26 | |
*** dims has quit IRC | 16:27 | |
*** rwsu has quit IRC | 16:27 | |
*** gondoi has quit IRC | 16:27 | |
*** rushiagr has joined #heat | 16:27 | |
*** TonyBurn has quit IRC | 16:28 | |
openstackgerrit | Tim Schnell proposed a change to openstack/heat: Adds Parameter Label to HOT spec and parameter schema https://review.openstack.org/62418 | 16:28 |
*** gondoi has joined #heat | 16:30 | |
*** giulivo has quit IRC | 16:30 | |
*** giulivo has joined #heat | 16:31 | |
*** ifarkas has quit IRC | 16:34 | |
*** dims has joined #heat | 16:34 | |
*** pfreund has quit IRC | 16:40 | |
*** topol_ has joined #heat | 16:48 | |
*** topol has quit IRC | 16:50 | |
*** topol_ is now known as topol | 16:50 | |
*** dmueller has joined #heat | 16:52 | |
*** SushilKM has joined #heat | 16:54 | |
*** dmueller has quit IRC | 17:02 | |
*** akuznetsov has quit IRC | 17:02 | |
*** pfreund has joined #heat | 17:12 | |
*** radix_ has joined #heat | 17:15 | |
*** nkhare has joined #heat | 17:16 | |
*** rocigar has joined #heat | 17:18 | |
*** rocigar has quit IRC | 17:19 | |
*** ocrazy has joined #heat | 17:22 | |
*** ocrazy has quit IRC | 17:26 | |
openstackgerrit | Pablo Andres Fuente proposed a change to openstack/heat: WaitCondition Count property is now updatable https://review.openstack.org/61218 | 17:26 |
*** pvaneck has joined #heat | 17:27 | |
*** vijendar has joined #heat | 17:29 | |
*** bvandenh has quit IRC | 17:29 | |
*** pablosan has joined #heat | 17:29 | |
*** shardy has joined #heat | 17:30 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Convert Neutron resources to new Schema format https://review.openstack.org/61823 | 17:32 |
*** derekh has quit IRC | 17:35 | |
*** pfreund has quit IRC | 17:41 | |
*** aignatov has joined #heat | 17:41 | |
*** denis_makogon has quit IRC | 17:42 | |
*** vkozhukalov has joined #heat | 17:42 | |
*** denis_makogon has joined #heat | 17:42 | |
*** harlowja_away is now known as harlowja | 17:53 | |
*** SergeyLukjanov has joined #heat | 17:54 | |
*** AndrewMichalik has quit IRC | 17:56 | |
*** akuznetsov has joined #heat | 17:57 | |
stevebaker | morning | 17:59 |
shardy | hey stevebaker | 18:00 |
*** arbylee has joined #heat | 18:00 | |
stevebaker | I'm about to drive to the in-laws, so will be offline for a couple of hours | 18:01 |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Add a schema for the AWS::EC2::Instance Volumes property https://review.openstack.org/62434 | 18:05 |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Convert Instance to new Schema format https://review.openstack.org/61780 | 18:05 |
sdake | enjoy the drive stevebaker | 18:06 |
sdake | btw, up early :) | 18:06 |
*** AndrewMichalik has joined #heat | 18:08 | |
*** andersonvom has joined #heat | 18:09 | |
*** SergeyLukjanov has quit IRC | 18:10 | |
*** SergeyLukjanov has joined #heat | 18:12 | |
*** alexheneveld has quit IRC | 18:12 | |
*** yogesh has joined #heat | 18:13 | |
*** nkhare has quit IRC | 18:14 | |
*** jamieh has quit IRC | 18:15 | |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: Correct create_trust_context docstring https://review.openstack.org/62436 | 18:17 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: Add sanity check to ensure user_id can be trusted https://review.openstack.org/62437 | 18:17 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: Convert stored trust_id to service_trust_id https://review.openstack.org/62438 | 18:17 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: Add initial support for instance_auth_method https://review.openstack.org/62439 | 18:17 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: SignalResponder store access/secret in resource data https://review.openstack.org/62440 | 18:17 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: heat_keystoneclient revise get_ec2_keypair https://review.openstack.org/62441 | 18:17 |
shardy | therve: FYI that's the first batch of instance-user patches we discussed last week | 18:17 |
shardy | more coming tomorrow ;) | 18:18 |
*** ccs has joined #heat | 18:19 | |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: Convert stored trust_id to service_trust_id https://review.openstack.org/62438 | 18:21 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: Add initial support for instance_auth_method https://review.openstack.org/62439 | 18:21 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: SignalResponder store access/secret in resource data https://review.openstack.org/62440 | 18:21 |
openstackgerrit | Steven Hardy proposed a change to openstack/heat: heat_keystoneclient revise get_ec2_keypair https://review.openstack.org/62441 | 18:21 |
*** sqlautmn has joined #heat | 18:27 | |
*** cody-somerville has joined #heat | 18:28 | |
*** cody-somerville has quit IRC | 18:28 | |
*** cody-somerville has joined #heat | 18:28 | |
*** sqlautmn has quit IRC | 18:30 | |
*** walton has joined #heat | 18:33 | |
*** walton has quit IRC | 18:33 | |
*** SushilKM has quit IRC | 18:36 | |
*** rongze has quit IRC | 18:41 | |
*** downintel has joined #heat | 18:47 | |
*** rushiagr has quit IRC | 18:47 | |
*** downintel has quit IRC | 18:49 | |
openstackgerrit | Pablo Andres Fuente proposed a change to openstack/heat: EventService exception handling to not log errors https://review.openstack.org/62446 | 18:53 |
*** IlyaE has joined #heat | 18:54 | |
*** zombiex has joined #heat | 18:55 | |
*** alexheneveld has joined #heat | 18:58 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Use property name constants in CinderVolume https://review.openstack.org/62449 | 19:01 |
*** zombiex has quit IRC | 19:02 | |
*** gokrokve has quit IRC | 19:04 | |
*** gokrokve has joined #heat | 19:04 | |
*** SushilKM has joined #heat | 19:05 | |
*** randallburt has quit IRC | 19:08 | |
*** gokrokve has quit IRC | 19:08 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Use property name constants in CinderVolume https://review.openstack.org/62449 | 19:09 |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Convert [Cinder]VolumeAttachment to new Schema format https://review.openstack.org/61783 | 19:09 |
*** sdake_ has joined #heat | 19:10 | |
*** sdake_ has quit IRC | 19:15 | |
*** sdake has quit IRC | 19:15 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: rackspace: Convert Scaling resources to new Schema format https://review.openstack.org/61827 | 19:20 |
*** sdake has joined #heat | 19:23 | |
*** sdake has quit IRC | 19:23 | |
*** sdake has joined #heat | 19:23 | |
*** gokrokve has joined #heat | 19:24 | |
*** sdake_ has joined #heat | 19:26 | |
*** brint has quit IRC | 19:32 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: rackspace: Convert CloudLoadBalancer to new Schema format https://review.openstack.org/61828 | 19:34 |
*** randallburt has joined #heat | 19:45 | |
*** randallburt1 has joined #heat | 19:46 | |
*** bnemec_ has joined #heat | 19:48 | |
*** bnemec has quit IRC | 19:49 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Convert Neutron resources to new Schema format https://review.openstack.org/61823 | 19:49 |
*** randallburt has quit IRC | 19:50 | |
*** denis_makogon has quit IRC | 19:58 | |
*** denis_makogon has joined #heat | 19:58 | |
*** tomek_adamczewsk has joined #heat | 19:59 | |
*** SushilKM has quit IRC | 20:02 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Add a schema for the AWS::EC2::Instance Volumes property https://review.openstack.org/62434 | 20:02 |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Convert Instance to new Schema format https://review.openstack.org/61780 | 20:02 |
*** brint has joined #heat | 20:02 | |
*** tomek_adamczewsk has quit IRC | 20:03 | |
*** tomek_adamczewsk has joined #heat | 20:04 | |
*** brint has quit IRC | 20:07 | |
*** AndrewMichalik has quit IRC | 20:13 | |
*** tomek_adamczewsk has quit IRC | 20:13 | |
*** tomek_adamczewsk has joined #heat | 20:14 | |
*** brint has joined #heat | 20:15 | |
*** dims has quit IRC | 20:28 | |
*** sabeen has left #heat | 20:29 | |
*** pshchelo has joined #heat | 20:30 | |
*** tomek_adamczewsk has quit IRC | 20:31 | |
*** dims has joined #heat | 20:32 | |
pshchelo | hi all, is stevebaker here? | 20:32 |
randallburt1 | pshchelo: I think he's traveling atm | 20:33 |
*** randallburt1 is now known as randallburt | 20:33 | |
*** tomek_adamczewsk has joined #heat | 20:34 | |
pshchelo | then may be someone can answer my workflow process. I would like to implement a blueprint that is not currently assigned to anybody (bp/cancel-update-stack). | 20:35 |
pshchelo | How can I get it assigned to me? | 20:35 |
randallburt | pshchelo: if you're logged in, you should be able to assign it to yourself, IIRC | 20:36 |
zaneb | pshchelo: I just assigned it to you :) | 20:37 |
zaneb | I suspect that maybe only heat-drivers folks can do that | 20:37 |
randallburt | zaneb: thanks, I was still trying to find it :) | 20:38 |
pshchelo | thanks! yes, that | 20:38 |
*** tomek_adamczewsk has quit IRC | 20:38 | |
*** tomek_adamczewsk has joined #heat | 20:39 | |
jasond | pshchelo: please keep multi-engine scenarios in mind while you're working on that :) | 20:40 |
*** aignatov has quit IRC | 20:41 | |
pshchelo | jasond, will try :) | 20:41 |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Convert Server to new Schema format https://review.openstack.org/61786 | 20:41 |
*** bgorski has quit IRC | 20:46 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Use property name constants in CinderVolume https://review.openstack.org/62449 | 20:47 |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Convert [Cinder]VolumeAttachment to new Schema format https://review.openstack.org/61783 | 20:47 |
*** tomek_adamczewsk has quit IRC | 20:49 | |
*** nati_ueno has joined #heat | 20:52 | |
*** AndrewMichalik has joined #heat | 20:52 | |
*** pshchelo has quit IRC | 20:53 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: rackspace: Convert resources to new Schema format https://review.openstack.org/61834 | 20:54 |
*** bridavis has joined #heat | 21:02 | |
*** radez is now known as radez_g0n3 | 21:04 | |
*** openstackgerrit has quit IRC | 21:08 | |
*** openstackgerrit has joined #heat | 21:08 | |
*** denis_makogon has quit IRC | 21:09 | |
*** dmakogon_ has joined #heat | 21:10 | |
openstackgerrit | Zane Bitter proposed a change to openstack/heat: Convert AWS network resources to new Schema format https://review.openstack.org/61818 | 21:14 |
*** blak111 has joined #heat | 21:20 | |
*** radez_g0n3 is now known as radez | 21:20 | |
blak111 | hi, a patch i authored is having trouble merging: https://review.openstack.org/#/c/41044/ | 21:21 |
blak111 | This is the error in tempest: http://logs.openstack.org/44/41044/16/gate/gate-tempest-dsvm-postgres-full/965efb4/logs/screen-h-api.txt.gz | 21:21 |
blak111 | is that a bug in tempest or is something in the change causing that size problem? | 21:21 |
zaneb | blak111: it's almost certainly an intermittent problem with another project | 21:22 |
zaneb | blak111: look here for something similar: http://status.openstack.org/rechecks/ | 21:22 |
zaneb | blak111: then you can retrigger as documented here: https://wiki.openstack.org/wiki/GerritJenkinsGit#Test_Failures | 21:22 |
openstackgerrit | Richard Lee proposed a change to openstack/heat: Refactor Instance#_check_active https://review.openstack.org/62478 | 21:23 |
openstackgerrit | Richard Lee proposed a change to openstack/heat: Add way to group exceptions in DependencyTaskGroup https://review.openstack.org/62479 | 21:23 |
blak111 | zaneb: thanks, i found the matching bug: https://code.launchpad.net/bugs/1261433 I'll keep smashing it through :-) | 21:24 |
uvirtbot | Launchpad bug 1261433 in heat "heat-tempest-xx already has an action (DELETE) in progress" [Undecided,New] | 21:24 |
zaneb | blak111: perfect :) | 21:25 |
openstackgerrit | Anderson Mesquita proposed a change to openstack/heat: Check resources are in expected states https://review.openstack.org/58641 | 21:25 |
*** sabeen has joined #heat | 21:29 | |
*** SergeyLukjanov has quit IRC | 21:35 | |
*** vkozhukalov has quit IRC | 21:35 | |
*** SergeyLukjanov has joined #heat | 21:38 | |
openstackgerrit | Vijendar Komalla proposed a change to openstack/heat: update rackspace clients.py https://review.openstack.org/62483 | 21:41 |
*** SergeyLukjanov_ has joined #heat | 21:42 | |
*** SergeyLukjanov is now known as SergeyLukjanov_a | 21:42 | |
*** SergeyLukjanov_a has quit IRC | 21:43 | |
*** radez is now known as radez_g0n3 | 21:48 | |
stevebaker | hi | 21:48 |
jasond | stevebaker: hey | 21:48 |
jasond | the heat tempest tests aren't playing nicely with multi-engine | 21:49 |
jasond | i think the problem is somewhere around here https://github.com/openstack/tempest/blob/master/tempest/api/orchestration/stacks/test_stacks.py#L69-L71 | 21:49 |
zaneb | oooh, I never knew you could get a URL to a range of lines in GitHub! :) | 21:52 |
asalkeld | morning | 21:53 |
jasond | zaneb: just click one line, hold shift, and click another line | 21:53 |
zaneb | jasond: nifty. thank you! | 21:53 |
jasond | np | 21:54 |
asalkeld | can some look at this, it's been there since nov 27: https://review.openstack.org/#/c/58723/ | 21:54 |
stevebaker | jasond: can you point me at a review which showed this bug | 21:55 |
stevebaker | ? | 21:55 |
jasond | stevebaker: https://review.openstack.org/#/c/61717/ | 21:56 |
jasond | stevebaker: https://bugs.launchpad.net/heat/+bug/1261433 | 21:56 |
uvirtbot | Launchpad bug 1261433 in heat "heat-tempest-xx already has an action (DELETE) in progress" [Undecided,New] | 21:56 |
*** IlyaE has quit IRC | 21:57 | |
*** SergeyLukjanov_ has quit IRC | 21:57 | |
*** SergeyLukjanov has joined #heat | 21:57 | |
stevebaker | jasond: it would be interesting to know if this only shows up in postgres jobs | 21:58 |
jasond | the 2 out of 2 that i've seen so far have | 21:59 |
stevebaker | so it looks like tempest sends 2 delete requests http://logs.openstack.org/17/61717/4/check/check-tempest-dsvm-postgres-full/3b776c3/logs/screen-h-eng.txt.gz | 22:00 |
stevebaker | so why is that job failing? the tests pass | 22:03 |
jasond | stevebaker: i see that, two deletes on stackheat-tempest-1152838063 | 22:03 |
jasond | probably because an exception was raised | 22:03 |
*** SergeyLukjanov has quit IRC | 22:04 | |
*** brint has quit IRC | 22:05 | |
stevebaker | jasond: so if a user can easily trigger it, it shouldn't be logged as an ERROR. ERRORs in logs will trigger tempest failures | 22:05 |
stevebaker | jasond: change that to a warning and it should be better, also if the user can easily trigger it then no stack trace should be logged | 22:06 |
jasond | stevebaker: it's not logging to error, it's raising an ActionInProgress exception, which i think is correct | 22:07 |
jasond | the user needs to see that | 22:07 |
jasond | what if we add a stop_delete_stack method to EngineService? | 22:08 |
stevebaker | the user needs to see that, but it shouldn't be logged as an ERROR | 22:08 |
stevebaker | jasond: it failed because "Logs have errors" http://logs.openstack.org/17/61717/4/check/check-tempest-dsvm-postgres-full/3b776c3/console.html | 22:08 |
*** brint has joined #heat | 22:09 | |
jasond | stevebaker: will it say that if an exception is raised? | 22:09 |
jasond | there's no logging to error here https://github.com/openstack/heat/blob/master/heat/engine/stack_lock.py | 22:10 |
*** swygue has quit IRC | 22:10 | |
*** gokrokve has quit IRC | 22:11 | |
randallburt | kebray: noon to 1. so I'll head to SA in the morning and then come back to Austin after the talk | 22:14 |
randallburt | whoops. wrong window | 22:14 |
stevebaker | jasond: maybe we should be using the client_exceptions decorator on our service methods | 22:17 |
jasond | stevebaker: that looks perfect, nice find | 22:18 |
*** jergerber has quit IRC | 22:19 | |
*** AndrewMichalik has quit IRC | 22:20 | |
stevebaker | jasond: it looks like HeatException might be best for the client_exceptions argument. You'll need to check our api and client error handling still works | 22:20 |
jasond | will do. thanks! | 22:21 |
*** AndrewMichalik has joined #heat | 22:27 | |
*** bgorski has joined #heat | 22:29 | |
*** pablosan has quit IRC | 22:30 | |
*** jasond has quit IRC | 22:32 | |
*** jergerber has joined #heat | 22:43 | |
*** che-arne has quit IRC | 22:45 | |
*** rpothier_ has quit IRC | 22:46 | |
*** ccs has quit IRC | 22:46 | |
openstackgerrit | Chmouel Boudjnah proposed a change to openstack/heat: Don't pass swift headers as None https://review.openstack.org/62199 | 22:50 |
*** bridavis has quit IRC | 22:50 | |
*** dims has quit IRC | 23:02 | |
*** cody-somerville has quit IRC | 23:04 | |
*** vijendar has quit IRC | 23:04 | |
*** topol has quit IRC | 23:06 | |
*** cody-somerville has joined #heat | 23:07 | |
*** brint has quit IRC | 23:08 | |
*** gokrokve has joined #heat | 23:10 | |
*** tomek_adamczewsk has joined #heat | 23:12 | |
*** gokrokve has quit IRC | 23:12 | |
*** gokrokve has joined #heat | 23:12 | |
*** brint has joined #heat | 23:13 | |
*** sgordon has joined #heat | 23:16 | |
*** sgordon has quit IRC | 23:16 | |
*** sgordon has joined #heat | 23:16 | |
*** tomek_adamczewsk has quit IRC | 23:16 | |
*** dims has joined #heat | 23:17 | |
*** tomek_adamczewsk has joined #heat | 23:17 | |
*** brint has quit IRC | 23:17 | |
*** IlyaE has joined #heat | 23:18 | |
*** brint has joined #heat | 23:19 | |
*** ccs has joined #heat | 23:24 | |
*** tomek_adamczewsk has quit IRC | 23:24 | |
*** tomek_adamczewsk has joined #heat | 23:24 | |
asalkeld | [openstack-dev] Project-Scoped Service Catalog Entries | 23:28 |
asalkeld | stevebaker, totally cool idea here ^ | 23:28 |
*** ccs has quit IRC | 23:28 | |
asalkeld | that would fix our heat standalone bug | 23:28 |
asalkeld | the one where you use heat client in the engine and it looks up the endpoint | 23:29 |
stevebaker | yes, that would be very useful | 23:29 |
stevebaker | although the paranoid me thinks it would be a good way to cause havoc on a horizon or heat installation | 23:31 |
*** tomek_adamczewsk has quit IRC | 23:31 | |
asalkeld | well it would be the users doing | 23:34 |
*** cody-somerville has quit IRC | 23:35 | |
stevebaker | but currently we trust our endpoints because the cloud admin installed them. If heat could be made to consume any random endpoint that the user installs then that user could cause all manner of problems | 23:36 |
*** tomek_adamczewsk has joined #heat | 23:37 | |
asalkeld | brb: hanging biltong | 23:45 |
*** tomek_adamczewsk has quit IRC | 23:45 | |
stevebaker | yum, I had to google that | 23:46 |
*** tomek_adamczewsk has joined #heat | 23:47 | |
*** ccs has joined #heat | 23:47 | |
*** sabeen has quit IRC | 23:50 | |
*** tomek_adamczewsk has quit IRC | 23:51 | |
*** rcleere has quit IRC | 23:52 | |
*** bgorski has quit IRC | 23:52 | |
*** tomek_adamczewsk has joined #heat | 23:52 | |
*** sjmc has quit IRC | 23:58 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!