*** achanda has joined #heat | 00:03 | |
*** Qiming has quit IRC | 00:05 | |
*** EricGonczer_ has quit IRC | 00:09 | |
*** sergmelikyan has quit IRC | 00:10 | |
*** chlong has joined #heat | 00:11 | |
*** shadower has quit IRC | 00:23 | |
*** shadower has joined #heat | 00:23 | |
*** signed8b_ is now known as signed8bit_ZZZzz | 00:23 | |
*** pm90__ has quit IRC | 00:23 | |
*** sergmelikyan has joined #heat | 00:23 | |
*** ddaskal has joined #heat | 00:32 | |
*** pm90_ has joined #heat | 00:33 | |
*** pm90_ has quit IRC | 00:35 | |
*** cchang has quit IRC | 00:38 | |
asalkeld | stevebaker: is your heat-engine starting? | 00:39 |
---|---|---|
asalkeld | i am getting : Could not load heat_template_version.2014-10-16: 'module' object has no attribute 'get_cache_region' | 00:40 |
asalkeld | there is heat/common/cache.py and heat/common/cache/* | 00:40 |
*** david-lyle has quit IRC | 00:40 | |
asalkeld | so when you import you get heat/common/cache/__init__.py and not heat/common/cache.py | 00:40 |
stevebaker | asalkeld: i'm not running devstack currently | 00:41 |
sdake | hey guys | 00:45 |
*** sergmelikyan has quit IRC | 00:45 | |
asalkeld | hi sdake | 00:45 |
sdake | trying to create a simple template, and get the error "ERROR: Remote error: NotFound The resource could not be found 404" | 00:45 |
sdake | the template only has an OS::Nova::Server in it | 00:46 |
sdake | note I am running in an ansible deployed version of heat in containers ;-) | 00:46 |
asalkeld | ewh | 00:46 |
sdake | so that could probably have something to do with it | 00:46 |
sdake | just curious what would trigger that 404 error | 00:46 |
sdake | stack-list works | 00:47 |
sdake | resource-ist-get works | 00:47 |
sdake | or whatever that command is | 00:47 |
asalkeld | RemoteError is an rpc error | 00:48 |
sdake | ya its deifnately coming out of the engine | 00:48 |
asalkeld | so the NotFound is what you need to find | 00:48 |
*** kebray has quit IRC | 00:48 | |
asalkeld | what's engine log say? | 00:48 |
sdake | http://paste.fedoraproject.org/247652/69897514 | 00:49 |
sdake | line 739 | 00:50 |
sdake | it is likely a configuation problem | 00:51 |
sdake | just not sure which | 00:51 |
asalkeld | keystone trusts setup? | 00:51 |
sdake | unlikely | 00:51 |
sdake | at the top of the log file it says something about that i think | 00:52 |
asalkeld | trustee_user_id = self.admin_auth.get_user_id(self.session) | 00:52 |
asalkeld | 549 | 00:53 |
sdake | is that the line that is busting? | 00:53 |
asalkeld | check the keystone logs | 00:53 |
*** ricolin has joined #heat | 00:53 | |
sdake | no errors in keystone | 00:54 |
sdake | is keystone trusts a config option? | 00:55 |
asalkeld | you need keystone v3 | 00:55 |
sdake | we are using shade | 00:55 |
sdake | which is a v3 library | 00:56 |
asalkeld | don't know what that is | 00:56 |
sdake | me either tbh ;-) | 00:56 |
sdake | its a library for ansible for openstack iiuc | 00:56 |
sdake | so I have to tell heat about the trusts in the config right? | 00:56 |
sdake | about the trust config? | 00:56 |
sdake | and then I have to tell keystone what the trust config is? | 00:57 |
*** signed8bit_ZZZzz is now known as signed8b_ | 00:57 | |
asalkeld | sdake: i dont' think so | 00:58 |
sdake | do I need to use a v3 auth uri/url? | 00:58 |
asalkeld | my config is all v2 (as i am doing standalone mode) | 00:59 |
sdake | can you paste our config file? | 00:59 |
sdake | oh i see | 00:59 |
asalkeld | maybe stevebaker can paste a config? | 00:59 |
asalkeld | but basically this is failing "trustee_user_id = self.admin_auth.get_user_id(self.session)" | 01:00 |
sdake | so its not a notfound error its some other kind of wierd exception | 01:00 |
asalkeld | keystone is replying with notfound | 01:00 |
asalkeld | maybe it doesn't know about that user | 01:01 |
sdake | which user? | 01:01 |
*** cchang has joined #heat | 01:01 | |
sdake | my openrc credentials? | 01:01 |
asalkeld | the admin | 01:02 |
asalkeld | http://paste.openstack.org/show/404854/ | 01:03 |
asalkeld | look at ~ 170 | 01:03 |
asalkeld | sdake: https://github.com/openstack-dev/devstack/blob/master/lib/heat#L272-L296 | 01:04 |
sdake | thanks angus | 01:05 |
sdake | I guess I'll have to figure out how to get domains implemented in shade | 01:05 |
* sdake ughs | 01:05 | |
*** kitch has quit IRC | 01:06 | |
asalkeld | https://github.com/openstack-infra/shade | 01:07 |
stevebaker | sdake: is this about configuring kolla-packaged heat? | 01:07 |
sdake | yar | 01:08 |
asalkeld | just a client wrapper | 01:08 |
*** erkules_ has joined #heat | 01:08 | |
stevebaker | sdake: and where is shade being used? to make requests to the heat post-install? | 01:09 |
*** Yanyanhu has joined #heat | 01:09 | |
sdake | pre-install to setup the keystone creds I think | 01:09 |
*** Yanyan has joined #heat | 01:10 | |
*** erkules has quit IRC | 01:11 | |
*** Yanyanhu has quit IRC | 01:14 | |
*** cing has quit IRC | 01:17 | |
*** Kennan has quit IRC | 01:17 | |
sdake | i think I found a tool heat-setup-domain-something that does the job | 01:18 |
*** Qiming has joined #heat | 01:19 | |
*** dims has joined #heat | 01:20 | |
*** Kennan has joined #heat | 01:24 | |
sdake | asalkeld stevebaker thanks for hte pointers, i got it fixed up | 01:28 |
*** signed8b_ is now known as signed8bit_ZZZzz | 01:29 | |
asalkeld | nice | 01:30 |
*** signed8bit_ZZZzz is now known as signed8b_ | 01:33 | |
*** jdandrea has quit IRC | 01:34 | |
*** cchang has quit IRC | 01:36 | |
*** Raj2 has joined #heat | 01:41 | |
*** cchang has joined #heat | 01:42 | |
*** pal has joined #heat | 01:47 | |
*** liusheng has joined #heat | 01:49 | |
*** erkules_ has quit IRC | 01:52 | |
*** erkules_ has joined #heat | 01:53 | |
*** Raj2 has quit IRC | 01:55 | |
*** signed8b_ is now known as signed8bit_ZZZzz | 01:56 | |
*** rwsu has quit IRC | 01:57 | |
*** cing has joined #heat | 01:57 | |
*** jaime49 has quit IRC | 02:01 | |
*** KanagarajM has joined #heat | 02:05 | |
KanagarajM | good mornin all | 02:07 |
*** daneyon has quit IRC | 02:09 | |
KanagarajM | stevebaker: hi, got review comments on updating the support status for plugins in https://review.openstack.org/#/c/195697/ , could you please provide your input? | 02:10 |
*** achanda has quit IRC | 02:12 | |
stevebaker | KanagarajM: hmm, given that monasca is in stackforge and the client is not in global-requirements I would lean towards UNSUPPORTED | 02:15 |
KanagarajM | stevebaker: sure. thanks. magnum also in the same category (does not have entry in global-requirements.txt). to make it consistent, should we change magnum resource plugins support status also to UNSUPPORTED? | 02:20 |
stevebaker | KanagarajM: magnum is in the big tent, that is more of a consideration | 02:22 |
stevebaker | KanagarajM: they are doing client releases, so likely all that needs to happen is submitting python-magnumclient to global-reqs http://git.openstack.org/cgit/openstack/python-magnumclient/refs/ | 02:22 |
KanagarajM | stevebaker: yes. i will submit a patch to requirements project. | 02:24 |
KanagarajM | stevebaker: thanks. | 02:24 |
*** dims has quit IRC | 02:27 | |
*** EricGonczer_ has joined #heat | 02:34 | |
*** sabeen has joined #heat | 02:36 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Monasca client plugin https://review.openstack.org/195697 | 02:42 |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Monasca Notification resource plugin https://review.openstack.org/202879 | 02:42 |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Monasca Alarm definition resource plugin https://review.openstack.org/202880 | 02:42 |
openstackgerrit | Rabi Mishra proposed openstack/heat: Make 'server' property of SoftwareDeployment mandatory https://review.openstack.org/200366 | 02:42 |
*** ddaskal has quit IRC | 02:45 | |
*** EricGonczer_ has quit IRC | 02:56 | |
*** signed8bit has joined #heat | 02:58 | |
*** pal has quit IRC | 02:59 | |
*** ashuk has quit IRC | 02:59 | |
*** pm90_ has joined #heat | 03:00 | |
*** ashuk has joined #heat | 03:01 | |
*** signed8bit_ZZZzz has quit IRC | 03:02 | |
*** pal has joined #heat | 03:02 | |
*** signed8bit is now known as signed8bit_ZZZzz | 03:02 | |
*** KanagarajM has quit IRC | 03:06 | |
*** cchang has quit IRC | 03:09 | |
*** david-lyle has joined #heat | 03:17 | |
*** pal has quit IRC | 03:17 | |
*** cody-somerville has joined #heat | 03:19 | |
*** pal has joined #heat | 03:22 | |
*** signed8bit_ZZZzz is now known as signed8bit | 03:22 | |
*** sdake has quit IRC | 03:28 | |
*** sdake has joined #heat | 03:30 | |
*** pm90_ has quit IRC | 03:33 | |
*** miguelgrinberg has quit IRC | 03:35 | |
*** signed8bit has quit IRC | 03:37 | |
*** ashuk has quit IRC | 03:38 | |
*** liusheng has quit IRC | 03:39 | |
*** ishant has joined #heat | 03:40 | |
*** liusheng has joined #heat | 03:40 | |
*** pm90_ has joined #heat | 03:40 | |
*** coolsvap|away is now known as coolsvap | 03:40 | |
*** sdake has quit IRC | 03:46 | |
*** KanagarajM has joined #heat | 03:49 | |
*** Qiming has quit IRC | 03:49 | |
*** Qiming has joined #heat | 03:50 | |
*** cchang has joined #heat | 03:55 | |
*** asalkeld is now known as asalkeld_afk | 03:56 | |
*** ananta_ has joined #heat | 03:57 | |
*** gberginc has joined #heat | 04:04 | |
*** achanda has joined #heat | 04:07 | |
*** gberginc has quit IRC | 04:08 | |
ramishra | morning all | 04:08 |
*** gberginc has joined #heat | 04:08 | |
*** tspatzier has joined #heat | 04:19 | |
*** pal has quit IRC | 04:20 | |
openstackgerrit | Rico Lin proposed openstack/heat: add new constraints to ceilometer https://review.openstack.org/204175 | 04:22 |
openstackgerrit | Rico Lin proposed openstack/heat: add time_constraints property in OS::Ceilometer::Alarm https://review.openstack.org/201498 | 04:22 |
*** pal has joined #heat | 04:25 | |
*** KanagarajM_ has joined #heat | 04:27 | |
*** KanagarajM has quit IRC | 04:30 | |
*** htruta_ has quit IRC | 04:30 | |
*** cing has quit IRC | 04:46 | |
*** rakesh_hs has joined #heat | 04:59 | |
*** sabeen has quit IRC | 05:00 | |
*** coolsvap is now known as coolsvap|away | 05:00 | |
*** coolsvap|away is now known as coolsvap | 05:06 | |
*** asalkeld_afk is now known as asalkeld | 05:07 | |
*** yuanying_ has joined #heat | 05:10 | |
*** yuanying has quit IRC | 05:10 | |
*** coolsvap is now known as coolsvap|away | 05:12 | |
openstackgerrit | Merged openstack/heat: Adds python-mistralclient>=1.0.0 in requirements.txt https://review.openstack.org/205005 | 05:13 |
openstackgerrit | Merged openstack/heat: Fix test_signal_returns_metadata wrong assertions https://review.openstack.org/205162 | 05:15 |
*** yuanying_ has quit IRC | 05:17 | |
*** tiantian has quit IRC | 05:17 | |
*** huangtianhua has quit IRC | 05:17 | |
openstackgerrit | Rico Lin proposed openstack/heat: add new constraints to ceilometer https://review.openstack.org/204175 | 05:20 |
openstackgerrit | Rico Lin proposed openstack/heat: add time_constraints property in OS::Ceilometer::Alarm https://review.openstack.org/201498 | 05:20 |
*** cchang has quit IRC | 05:24 | |
*** yuanying has joined #heat | 05:26 | |
*** vijayagurug has joined #heat | 05:27 | |
*** Murali has joined #heat | 05:42 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Import mistral python client directly https://review.openstack.org/205006 | 05:43 |
*** otoolee has quit IRC | 05:43 | |
openstackgerrit | Merged openstack/heat: Use default_client_name in aws s3 resource https://review.openstack.org/205019 | 05:51 |
*** otoolee has joined #heat | 05:52 | |
*** coolsvap|away is now known as coolsvap | 05:54 | |
*** KanagarajM_ has quit IRC | 05:57 | |
*** sergmelikyan has joined #heat | 06:01 | |
*** pm90_ has quit IRC | 06:01 | |
*** inc0 has joined #heat | 06:02 | |
*** vijayagurug has left #heat | 06:03 | |
*** KanagarajM has joined #heat | 06:03 | |
*** vijayagurug has joined #heat | 06:04 | |
*** sergmelikyan has quit IRC | 06:06 | |
openstackgerrit | Angus Salkeld proposed openstack/heat: Convergence: Handle InvalidTemplateAttribute in worker https://review.openstack.org/203890 | 06:17 |
openstackgerrit | Angus Salkeld proposed openstack/heat: Catch output error and re-raise them in nested stacks https://review.openstack.org/205393 | 06:17 |
openstackgerrit | Angus Salkeld proposed openstack/heat: Scan for output errors in functional tests https://review.openstack.org/205394 | 06:17 |
*** jcoufal has joined #heat | 06:19 | |
*** pal has quit IRC | 06:43 | |
*** pal has joined #heat | 06:44 | |
*** yuanying has quit IRC | 06:47 | |
*** yuanying has joined #heat | 06:52 | |
openstackgerrit | Merged openstack/heat: Use default_client_name for mistral https://review.openstack.org/205035 | 06:53 |
*** yuanying has quit IRC | 07:00 | |
*** pal_ has joined #heat | 07:02 | |
*** pal has quit IRC | 07:02 | |
*** KanagarajM has quit IRC | 07:07 | |
*** KanagarajM has joined #heat | 07:09 | |
*** pal_ has quit IRC | 07:20 | |
*** achanda has quit IRC | 07:29 | |
*** chlong has quit IRC | 07:33 | |
*** achanda has joined #heat | 07:34 | |
*** huangtianhua has joined #heat | 07:37 | |
*** tiantian has joined #heat | 07:37 | |
*** zeih has joined #heat | 07:41 | |
*** zeih has quit IRC | 07:41 | |
*** zeih has joined #heat | 07:41 | |
*** shardy has joined #heat | 07:42 | |
*** tiantian has quit IRC | 07:42 | |
*** huangtianhua has quit IRC | 07:43 | |
*** achanda has quit IRC | 07:44 | |
*** Qiming has quit IRC | 07:46 | |
*** Qiming has joined #heat | 07:46 | |
*** mkoderer has joined #heat | 07:50 | |
*** yuanying has joined #heat | 07:57 | |
*** sergmelikyan has joined #heat | 08:02 | |
*** jistr has joined #heat | 08:04 | |
*** sergmelikyan has quit IRC | 08:07 | |
*** tiantian has joined #heat | 08:12 | |
*** huangtianhua has joined #heat | 08:12 | |
*** derekh has joined #heat | 08:13 | |
*** achanda has joined #heat | 08:21 | |
*** zeih has quit IRC | 08:26 | |
*** nijaba has quit IRC | 09:01 | |
*** shardy_ has joined #heat | 09:01 | |
*** shardy has quit IRC | 09:02 | |
*** sergmelikyan has joined #heat | 09:03 | |
*** shardy_ has quit IRC | 09:06 | |
*** shardy has joined #heat | 09:07 | |
*** sergmelikyan has quit IRC | 09:07 | |
openstackgerrit | Kanagaraj Manickam proposed openstack/heat: Import mistral python client directly https://review.openstack.org/205006 | 09:09 |
*** lsmola has quit IRC | 09:21 | |
*** zeih has joined #heat | 09:28 | |
*** achanda has quit IRC | 09:35 | |
*** zeih has quit IRC | 09:36 | |
*** KanagarajM has quit IRC | 09:38 | |
*** coolsvap is now known as coolsvap|away | 09:39 | |
*** e0ne has joined #heat | 09:42 | |
openstackgerrit | Kairat Kushaev proposed openstack/heat: Resolve dynamic attributes for resources https://review.openstack.org/205128 | 09:47 |
*** e0ne_ has joined #heat | 10:02 | |
*** e0ne has quit IRC | 10:03 | |
*** inc0_ has joined #heat | 10:04 | |
*** inc0 has quit IRC | 10:04 | |
*** Yanyan has quit IRC | 10:09 | |
*** zeih has joined #heat | 10:18 | |
openstackgerrit | Sergey Kraynev proposed openstack/heat: Add sighup_timeout to heat_integrationtests.conf.sample https://review.openstack.org/205480 | 10:21 |
*** ricolin has quit IRC | 10:25 | |
*** jcoufal has quit IRC | 10:27 | |
*** Qiming has quit IRC | 10:35 | |
*** dims has joined #heat | 10:36 | |
*** inc0_ has quit IRC | 10:41 | |
*** tochi has quit IRC | 10:42 | |
*** asalkeld has quit IRC | 10:43 | |
*** blinky_ghost has joined #heat | 10:46 | |
*** logan2 has quit IRC | 10:47 | |
*** logan2 has joined #heat | 10:50 | |
openstackgerrit | Steven Hardy proposed openstack/heat: Reuse existing environment on PATCH update https://review.openstack.org/154619 | 10:54 |
*** zeih has quit IRC | 10:54 | |
*** zeih has joined #heat | 10:59 | |
*** inc0 has joined #heat | 11:01 | |
*** openstackgerrit has quit IRC | 11:01 | |
*** openstackgerrit has joined #heat | 11:02 | |
*** inc0_ has joined #heat | 11:03 | |
*** sergmelikyan has joined #heat | 11:03 | |
blinky_ghost | shardy: good morning :) very busy? :) can you give me a quick hint? I'm playing with nested stack in resourceconfig and OS::Heat::SoftwareDeployments, however I'm not passing the output correctly from my Nova Servers to my ResourceGroup on the main stack. I just want to output the name and ip of Nova Servers to my ResourceGroup on the main stack. thanks | 11:04 |
*** shardy_ has joined #heat | 11:05 | |
*** shardy has quit IRC | 11:06 | |
*** inc0 has quit IRC | 11:06 | |
*** sergmelikyan has quit IRC | 11:08 | |
*** shardy_ has quit IRC | 11:10 | |
*** shardy has joined #heat | 11:11 | |
*** zeih has quit IRC | 11:17 | |
blinky_ghost | shardy: Hi I don't if you read my message before I've managed to solve the output errors in the nested stack, however when I try to use OS::Heat::SoftwareDeployments i always get this type of error "heat.engine.resource StackValidationFailed: Property error : 1: server Error validating value u'teste000': The server (teste000) could not be found." Don't know what I'm missing here :( | 11:26 |
*** shardy_ has joined #heat | 11:27 | |
*** shardy has quit IRC | 11:28 | |
*** zeih has joined #heat | 11:29 | |
*** yuanying has quit IRC | 11:34 | |
*** shardy_ has quit IRC | 11:37 | |
*** shardy has joined #heat | 11:37 | |
*** andersonvom has quit IRC | 11:37 | |
*** tiantian has quit IRC | 11:37 | |
*** huangtianhua has quit IRC | 11:37 | |
*** inc0_ has quit IRC | 11:40 | |
*** Qiming has joined #heat | 11:40 | |
*** andersonvom has joined #heat | 11:42 | |
*** Marga_ has quit IRC | 11:42 | |
*** Marga_ has joined #heat | 11:49 | |
openstackgerrit | Rakesh H S proposed openstack/heat: DNM : convergence scenario tests https://review.openstack.org/203661 | 12:00 |
*** Marga_ has quit IRC | 12:05 | |
*** Marga_ has joined #heat | 12:06 | |
*** zeih has quit IRC | 12:06 | |
*** zeih has joined #heat | 12:08 | |
*** ishant has quit IRC | 12:16 | |
*** e0ne_ is now known as e0ne | 12:20 | |
*** gberginc has quit IRC | 12:24 | |
*** vijayagurug has left #heat | 12:24 | |
*** zeih has quit IRC | 12:26 | |
*** jdob has joined #heat | 12:29 | |
*** ananta_ has quit IRC | 12:31 | |
*** zeih has joined #heat | 12:32 | |
*** sergmelikyan has joined #heat | 12:34 | |
*** zeih has quit IRC | 12:37 | |
*** pfreund has quit IRC | 12:37 | |
*** pfreund has joined #heat | 12:37 | |
*** sergmelikyan has quit IRC | 12:39 | |
*** Murali has quit IRC | 12:40 | |
*** sergmelikyan has joined #heat | 12:41 | |
*** zeih has joined #heat | 12:43 | |
*** sergmelikyan has quit IRC | 12:46 | |
*** zeih has quit IRC | 12:46 | |
*** dkusidlo has joined #heat | 12:46 | |
*** dims has quit IRC | 12:52 | |
*** ochuprykov has joined #heat | 12:53 | |
*** dims has joined #heat | 12:53 | |
*** jdandrea has joined #heat | 12:59 | |
*** cing has joined #heat | 12:59 | |
*** inc0 has joined #heat | 13:01 | |
*** yassine__ has joined #heat | 13:06 | |
*** inc0 has quit IRC | 13:08 | |
*** jonesbr has joined #heat | 13:08 | |
*** neelashah has joined #heat | 13:26 | |
*** sdake has joined #heat | 13:28 | |
*** sdake_ has joined #heat | 13:29 | |
*** jistr is now known as jistr|mtg | 13:29 | |
*** pm90_ has joined #heat | 13:29 | |
openstackgerrit | Sergey Kraynev proposed openstack/heat: Move internal test resources to generic_resource https://review.openstack.org/189754 | 13:30 |
*** tristanC has quit IRC | 13:31 | |
*** tristanC has joined #heat | 13:32 | |
*** sdake has quit IRC | 13:32 | |
*** jasond has joined #heat | 13:33 | |
openstackgerrit | Pratik Mallya proposed openstack/heat: Removes replace-on-update for SwiftSignalHandle resource https://review.openstack.org/205327 | 13:35 |
*** pm90__ has joined #heat | 13:36 | |
*** pm90_ has quit IRC | 13:39 | |
jdandrea | mornin' (here) | 13:40 |
*** radez_g0n3 is now known as radez | 13:43 | |
rakesh_hs | Hi Zane, regarding bp update-failure-recovery implemented in juno timeframe | 13:43 |
rakesh_hs | I have hit the bug https://bugs.launchpad.net/heat/+bug/1477812 | 13:44 |
openstack | Launchpad bug 1477812 in heat "heat stack-list does not work after stack-update" [Undecided,New] - Assigned to Rakesh H S (rh-s) | 13:44 |
uvirtbot | Launchpad bug 1477812 in heat "heat stack-list does not work after stack-update" [Undecided,New] | 13:44 |
uvirtbot | Launchpad bug 1477812 in heat "heat stack-list does not work after stack-update" [Undecided,New] https://launchpad.net/bugs/1477812 | 13:44 |
*** pal has joined #heat | 13:44 | |
ryansb | jdandrea: as always, morning is relative | 13:45 |
jdandrea | ryansb: It really is. | 13:45 |
rakesh_hs | zaneb: I see that we are modifying the template by adding or deleting resources.. but we are not updating the parameters https://review.openstack.org/#/c/100047/2 | 13:46 |
* jdandrea is finally getting around to the devstack heat-with-trusts-and-standalone ish. Rah. | 13:46 | |
*** inc0 has joined #heat | 13:46 | |
*** sdake_ is now known as sdake | 13:47 | |
rakesh_hs | zaneb: do you think we should modify the template and update the parameters also? | 13:47 |
zaneb | rakesh_hs: that's true, but we cache the values of those resources properties in the DB, so we don't have to resolve any parameter references again | 13:47 |
zaneb | rakesh_hs: we should replace it at the end when the update is complete | 13:48 |
*** gberginc has joined #heat | 13:48 | |
zaneb | which afaik we still do | 13:48 |
kairat | rakesh_hs, have you tried to detect the place where the error was raised | 13:48 |
kairat | rakesh_hs, it seems that your problem can be potentially with backup stack | 13:49 |
*** cing has quit IRC | 13:49 | |
kairat | rakesh_hs, we are copying template and resources to backup stack but there is no way to copy parameters yet | 13:50 |
rakesh_hs | kairat: yeah | 13:50 |
zaneb | rakesh_hs: I'm curious about where in stack-show we would be trying to resolve parameters | 13:51 |
zaneb | that could cause it to fail | 13:51 |
rakesh_hs | zaneb: In stack table parameters are stored properly. but the template which is updated during stack update does not have the latest parameters | 13:51 |
zaneb | er, stack-list I mean | 13:51 |
zaneb | oh, the stored template doesn't match the stored params? | 13:52 |
shardy | zaneb: hey, FYI I finished the environment part of the patch update we discussed the other day: https://review.openstack.org/#/c/154619/ | 13:52 |
zaneb | that's bad :/ | 13:52 |
shardy | As always, the tests were by far the hardest part, the code ended up much simpler after some rework in the light of previous review comments | 13:53 |
zaneb | shardy: thanks, I'll take a look | 13:53 |
rakesh_hs | yeah zaneb while adding the resource to template, the params on which the new resource depend is not added to this template | 13:53 |
zaneb | rakesh_hs: ok, yeah, that's something we probably need to fix | 13:54 |
* zaneb idly wonders whether we can justify backporting shardy's patch to kilo | 13:54 | |
rakesh_hs | zaneb: do you think it is ok to store this modified template? | 13:59 |
rakesh_hs | I mean.. user would given some template for update.. and after the operation is finished and when he hits template-show.. he would see this modified template | 13:59 |
openstackgerrit | Kairat Kushaev proposed openstack/heat: Resolve dynamic attribute schemas for resources https://review.openstack.org/205541 | 14:02 |
*** tchaypo has quit IRC | 14:03 | |
*** tspatzier has quit IRC | 14:03 | |
*** tspatzier has joined #heat | 14:04 | |
*** tchaypo has joined #heat | 14:04 | |
*** Slower has quit IRC | 14:04 | |
*** tspatzier has quit IRC | 14:04 | |
*** inc0 has quit IRC | 14:05 | |
*** jaime49 has joined #heat | 14:05 | |
zaneb | rakesh_hs: I think it's probably ok to modify the parameters, for the same reason I said above it was ok not to | 14:07 |
zaneb | rakesh_hs: but it's not ok to update the whole template at once | 14:07 |
rakesh_hs | zaneb: ok | 14:07 |
blinky_ghost | hi, can anybody help me with this error: "TRACE heat.engine.resource StackValidationFailed: Property error : 0: server Error validating value u'teste878': The server (teste878) could not be found." I'm using OS::Heat::SoftwareDeployments in a nested stack that receives a group of servers using OS::Heat::ResourceGroup. thanks | 14:08 |
rakesh_hs | zaneb: thanks for clarification | 14:08 |
*** ramishra has quit IRC | 14:10 | |
*** ramishra has joined #heat | 14:10 | |
*** jistr|mtg is now known as jistr | 14:12 | |
*** gberginc has quit IRC | 14:13 | |
*** dkusidlo has quit IRC | 14:13 | |
*** dkusidlo has joined #heat | 14:17 | |
*** jecarey has joined #heat | 14:19 | |
blinky_ghost | hi, is it possible to output the OS::Nova::Server uuid, instead of name? | 14:27 |
*** sabeen has joined #heat | 14:27 | |
shardy | zaneb: I actually think a case can be argued for a kilo backport, given that the existing PATCH implementation is really incomplete, e.g buggy, and existing behaviour should be maintained (we still accept everything again if you choose to still pass it, which folks must be doing now or the patch update would fail) | 14:29 |
shardy | blinky_ghost: yes get_resource: the_resource will return the UUID | 14:30 |
*** sabeen2 has joined #heat | 14:32 | |
blinky_ghost | thanks shardy | 14:35 |
*** sabeen has quit IRC | 14:36 | |
jdandrea | Which heat.conf setting is used to *disable* Keystone Trusts (which aren't supported in standalone mode)? I thought I had found it but it seems to have eluded me. :/ | 14:40 |
shardy | jdandrea: deferred_auth_method | 14:40 |
shardy | choose "password" if you don't want trusts | 14:41 |
jdandrea | shardy: thank you! | 14:41 |
*** pal has quit IRC | 14:44 | |
*** vijayagurug has joined #heat | 14:48 | |
*** vijayagurug has left #heat | 14:49 | |
*** Raj2 has joined #heat | 14:49 | |
*** lapalm has joined #heat | 14:51 | |
*** dkusidlo has quit IRC | 14:55 | |
*** rakesh_hs has quit IRC | 14:55 | |
*** dkusidlo has joined #heat | 14:58 | |
*** Qiming has quit IRC | 14:59 | |
*** liusheng has quit IRC | 15:00 | |
blinky_ghost | shardy: I've managed to get OS::Heat::SoftwareDeployments working thanks :) In my test I'm writing the ip of both servers to a file, it works fine. However I'm getting this format: "{u'1': u'192.168.174.99', u'0': u'192.168.174.98'}". Is there a way to define the format I want? | 15:03 |
*** Raj2 has quit IRC | 15:04 | |
*** Raj2 has joined #heat | 15:04 | |
shardy | blinky_ghost: good news! not currently unfortunately, the attributes interface to ResourceGroup always returns a map of resource names ("0" and "1" in this case) to their specified attribute | 15:07 |
*** derekh has quit IRC | 15:10 | |
blinky_ghost | shardy: how about if I use autoscaling instead of ResourceGroup? I'm trying to create a mysql cluster stack where the multiple servers need to know each other ips before start the services. Is there a way to solve this with heat or I need to use an external tool? | 15:12 |
shardy | blinky_ghost: well, you've already solved it? You just need a tiny bit of jq or awk in the VM? | 15:13 |
blinky_ghost | shardy: Hum yes I can use something like that good point :) sorry it's friday lol | 15:14 |
shardy | blinky_ghost: If you know the number of nodes, e.g it's fixed, you can reference each node explicitly: | 15:14 |
shardy | https://github.com/openstack/tripleo-heat-templates/blob/master/overcloud-without-mergepy.yaml#L1122 | 15:14 |
shardy | then you can generate whatever format you want | 15:14 |
openstackgerrit | Merged openstack/heat: Add HIDDEN status to Server uuid https://review.openstack.org/191842 | 15:16 |
shardy | blinky_ghost: actually, there's one more option: | 15:16 |
shardy | https://github.com/openstack/heat-templates/blob/master/hot/resource_group/resource_group.yaml#L27 | 15:16 |
shardy | That approach can give you a list of IP's instead of the map above | 15:17 |
blinky_ghost | shardy: cool thanks I'm going to test it | 15:17 |
shardy | blinky_ghost: it's definitely possible with heat, because TripleO does exactly what you're trying to do already :) | 15:18 |
*** dkusidlo has quit IRC | 15:18 | |
*** daneyon has joined #heat | 15:19 | |
blinky_ghost | shardy: thanks I'll check it out :) | 15:21 |
*** Drago has joined #heat | 15:22 | |
*** Drago has quit IRC | 15:23 | |
*** Drago has joined #heat | 15:23 | |
*** ddaskal has joined #heat | 15:28 | |
*** kebray has joined #heat | 15:38 | |
*** david-lyle has quit IRC | 15:44 | |
*** sergmelikyan has joined #heat | 15:47 | |
*** EricGonczer_ has joined #heat | 15:50 | |
*** randallburt has joined #heat | 15:53 | |
*** randallburt has quit IRC | 15:53 | |
*** randallburt has joined #heat | 15:54 | |
*** bitblt has joined #heat | 15:56 | |
*** andersonvom has quit IRC | 16:01 | |
*** rwsu has joined #heat | 16:03 | |
*** sdake has quit IRC | 16:06 | |
*** pm90__ has quit IRC | 16:08 | |
*** pm90_ has joined #heat | 16:08 | |
ramishra | zaneb: hi | 16:08 |
*** pm90__ has joined #heat | 16:10 | |
*** dsneddon_biab is now known as dsneddon | 16:10 | |
*** pm90_ has quit IRC | 16:13 | |
*** jecarey has quit IRC | 16:19 | |
*** EricGonczer_ has quit IRC | 16:20 | |
*** david-lyle has joined #heat | 16:20 | |
blinky_ghost | shardy: If I understood correctly that https://github.com/openstack/heat-templates/blob/master/hot/resource_group/resource_group.yaml#L27 example is when I know the number of nodes(fixed) I'll have, right? | 16:23 |
*** lapalm has quit IRC | 16:27 | |
*** lapalm has joined #heat | 16:28 | |
*** lapalm_ has joined #heat | 16:29 | |
*** lapalm_ has quit IRC | 16:30 | |
*** jtomasek has quit IRC | 16:30 | |
*** lapalm_ has joined #heat | 16:30 | |
zaneb | ramishra: hey, I was just commenting on your patches | 16:31 |
ramishra | zaneb, great, I got you in the right mood to discuss:) | 16:31 |
ramishra | zaneb: I'm not sure why you've the saying that the previous code used to scale back as part of the rolling update. I don't see that in the old code | 16:32 |
*** lapalm has quit IRC | 16:32 | |
ramishra | zaneb: https://github.com/openstack/heat/blob/master/heat/scaling/template.py#L30 | 16:32 |
zaneb | ramishra: because it's true! | 16:33 |
zaneb | num_resources gets passed from _create_template: http://git.openstack.org/cgit/openstack/heat/tree/heat/engine/resources/openstack/heat/instance_group.py#n264 | 16:34 |
zaneb | and num_instances gets passed to _create_template with the value of efft_capacity: http://git.openstack.org/cgit/openstack/heat/tree/heat/engine/resources/openstack/heat/instance_group.py#n321 | 16:34 |
*** lapalm_ has quit IRC | 16:35 | |
ramishra | zaneb:yes and where we go back | 16:35 |
zaneb | and efft_capacity gets reduced to capacity on the last go through the loop: http://git.openstack.org/cgit/openstack/heat/tree/heat/engine/resources/openstack/heat/instance_group.py#n320 | 16:35 |
ramishra | not really, it's same as the current code, as I elaborated in my last comment | 16:36 |
zaneb | it's really not because you never pass efft_capacity to anything | 16:36 |
*** daneyon has quit IRC | 16:38 | |
zaneb | explain to me what if "capacity - remainder >= efft_min_sz: efft_capacity = capacity" does (assuming that the "efft_capacity > capacity" conditional were not there) | 16:38 |
zaneb | a clue: nothing in your implementation | 16:38 |
*** daneyon has joined #heat | 16:38 | |
*** radez is now known as radez_g0n3 | 16:38 | |
ramishra | yeah ok | 16:38 |
zaneb | it was there for a reason, and the reason is to make sure we scale back down to the right size at the end | 16:39 |
zaneb | but it's not needed in your implementation | 16:39 |
ramishra | IMO, that was not a very good implementation, we add(for efft_capacity) and then remove resources to add back again if the desired capacity is more. | 16:40 |
ramishra | In the current implementation we don't do that. | 16:41 |
ramishra | we leave it for resize to see, what to do with it | 16:42 |
openstackgerrit | Oleksii Chuprykov proposed openstack/heat: Fix formula for calc update_timeout in instance group https://review.openstack.org/205621 | 16:52 |
zaneb | ramishra: remember that in the previous implementation, the size couldn't change as the result of a rolling update | 16:55 |
zaneb | i.e. previous size and desired size were always the same | 16:55 |
*** aweiteka has joined #heat | 16:56 | |
zaneb | ramishra: so you need to either change the algorithm to add resizes, or tack it on at the end. you've chosen the latter, though the former is clearly more optimal for the user | 16:57 |
ramishra | yes, but that would mean we used to update resources to delete them later if the desired_capacity is less | 16:57 |
ramishra | which was not optimal in anyway | 16:58 |
*** Raj2 has quit IRC | 16:58 | |
*** jaime49 has quit IRC | 16:59 | |
ramishra | this is wrt to the old implementation | 16:59 |
ochuprykov | zaneb: could you please look at my fix of calculation update_timeou, related to the topic beign discussed? | 17:01 |
ochuprykov | https://review.openstack.org/205621 | 17:01 |
zaneb | ochuprykov: looks good. can you maybe add to the commit message a comment about what it was intended to calculate, how it got the calculation wrong, and why it wasn't a good idea in the first place | 17:04 |
*** dims is now known as dimsum__ | 17:04 | |
ochuprykov | zaneb: i still don't understand what actually calculate old formula | 17:04 |
*** bnemec has joined #heat | 17:04 | |
zaneb | ochuprykov: well, it calculates garbage | 17:05 |
zaneb | they wrote: | 17:05 |
zaneb | (self.stack.timeout_secs() - (pause_sec * (batch_cnt - 1)) / batch_cnt) | 17:06 |
zaneb | almost certainly meant: | 17:06 |
zaneb | (self.stack.timeout_secs() - pause_sec * (batch_cnt - 1)) / batch_cnt | 17:06 |
*** jaime49 has joined #heat | 17:07 | |
zaneb | probably left out a parenthesis, pep8 complained so added a random one in somewhere | 17:07 |
zaneb | ramishra: right, yeah the only optimal way is to take into account any resizing as part of the rolling update algorithm, which previously we did not do (and we still don't) | 17:09 |
*** ddaskal has quit IRC | 17:10 | |
ramishra | zaneb: unlike earlier we don't update the resources when the desired_capacity is less than current_capacity | 17:11 |
openstackgerrit | Oleksii Chuprykov proposed openstack/heat: Fix formula for calc update_timeout in instance group https://review.openstack.org/205621 | 17:18 |
*** jaime49 has quit IRC | 17:18 | |
zaneb | ramishra: well, earlier desired_capacity == current_capacity by definition because resizes happen from autoscaling alarms and rolling updates happen from stack updates, so they never happened at the same time | 17:19 |
ochuprykov | zaneb: i have updated commit message, probably now it looks clearer | 17:19 |
zaneb | ochuprykov: +2, thanks! | 17:20 |
ochuprykov | zaneb: thanks for your clarifications | 17:21 |
zaneb | np | 17:21 |
*** sjmc7_ has joined #heat | 17:24 | |
*** andersonvom has joined #heat | 17:27 | |
*** achanda has joined #heat | 17:27 | |
openstackgerrit | Oleksii Chuprykov proposed openstack/heat: Add show_resource function to Manila resources (5) https://review.openstack.org/201230 | 17:29 |
*** lapalm has joined #heat | 17:31 | |
*** andersonvom has quit IRC | 17:34 | |
*** lapalm has quit IRC | 17:35 | |
ramishra | zaneb: we've code for resize as part of the update too:) https://github.com/openstack/heat/blob/master/heat/engine/resources/aws/autoscaling/autoscaling_group.py#L297-L302. anyway. | 17:36 |
*** daneyon has quit IRC | 17:38 | |
*** daneyon_ has joined #heat | 17:38 | |
*** sergmelikyan has quit IRC | 17:38 | |
*** sergmelikyan has joined #heat | 17:38 | |
zaneb | ramishra: fair point :) | 17:39 |
*** ochuprykov has quit IRC | 17:45 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/heat: Updated from global requirements https://review.openstack.org/205634 | 17:46 |
*** e0ne has quit IRC | 17:54 | |
*** pal has joined #heat | 17:55 | |
*** e0ne has joined #heat | 17:57 | |
*** e0ne has quit IRC | 17:58 | |
*** kebray has quit IRC | 18:02 | |
*** lapalm has joined #heat | 18:05 | |
*** Raj2 has joined #heat | 18:08 | |
*** lapalm has quit IRC | 18:09 | |
*** Raj2 has quit IRC | 18:09 | |
*** Raj2 has joined #heat | 18:09 | |
*** lapalm has joined #heat | 18:09 | |
*** pal has quit IRC | 18:13 | |
*** blinky_ghost has quit IRC | 18:13 | |
*** lapalm has quit IRC | 18:14 | |
*** jistr has quit IRC | 18:14 | |
*** lapalm has joined #heat | 18:15 | |
*** ddaskal has joined #heat | 18:30 | |
*** kebray has joined #heat | 18:31 | |
*** spzala has joined #heat | 18:34 | |
*** jistr has joined #heat | 18:35 | |
*** jistr is now known as jistr|afk | 18:35 | |
*** andersonvom has joined #heat | 18:36 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/heat: Updated from global requirements https://review.openstack.org/205634 | 18:37 |
*** Marga_ has quit IRC | 18:38 | |
*** radez_g0n3 is now known as radez | 18:38 | |
*** Slower_ has joined #heat | 18:43 | |
*** EricGonczer_ has joined #heat | 18:45 | |
*** lapalm has quit IRC | 18:46 | |
*** lapalm has joined #heat | 18:46 | |
*** SlickNik has left #heat | 18:47 | |
*** wmlynch has quit IRC | 18:48 | |
*** Slower_ has quit IRC | 18:48 | |
*** lapalm has quit IRC | 18:50 | |
*** lapalm has joined #heat | 18:56 | |
*** achanda has quit IRC | 18:59 | |
*** sjmc7_ has quit IRC | 19:12 | |
*** daneyon_ has quit IRC | 19:13 | |
*** daneyon has joined #heat | 19:14 | |
*** Drago has quit IRC | 19:16 | |
*** EmilienM is now known as EmilienM|brb | 19:18 | |
*** bitblt has quit IRC | 19:22 | |
*** sergmelikyan has quit IRC | 19:30 | |
*** jaime49 has joined #heat | 19:43 | |
*** jaime49 has quit IRC | 19:43 | |
*** jaime49 has joined #heat | 19:43 | |
*** sergmelikyan has joined #heat | 19:45 | |
openstackgerrit | Merged openstack/heat: Fix RS CLB resource to handle HTTPS_REDIRECT correctly https://review.openstack.org/204151 | 19:46 |
*** achanda has joined #heat | 19:48 | |
*** funzo has quit IRC | 19:49 | |
*** funzo has joined #heat | 19:49 | |
*** achanda_ has joined #heat | 19:52 | |
*** achanda has quit IRC | 19:53 | |
*** achanda_ has quit IRC | 19:59 | |
*** EmilienM|brb is now known as EmilienM | 19:59 | |
*** achanda has joined #heat | 19:59 | |
*** shardy_ has joined #heat | 20:09 | |
*** shardy has quit IRC | 20:10 | |
*** achanda has quit IRC | 20:10 | |
*** shardy_ has quit IRC | 20:14 | |
*** shardy has joined #heat | 20:15 | |
*** achanda has joined #heat | 20:15 | |
*** Marga_ has joined #heat | 20:24 | |
*** sorantis has joined #heat | 20:32 | |
*** achanda has quit IRC | 20:35 | |
*** andersonvom has quit IRC | 20:45 | |
*** achanda has joined #heat | 20:52 | |
*** aweiteka has quit IRC | 20:54 | |
*** pm90__ has quit IRC | 20:55 | |
*** neelashah has quit IRC | 20:58 | |
*** jonesbr has left #heat | 21:06 | |
*** e0ne has joined #heat | 21:21 | |
*** jasond has quit IRC | 21:27 | |
*** randallburt1 has joined #heat | 21:31 | |
*** randallburt has quit IRC | 21:31 | |
*** yassine__ has quit IRC | 21:33 | |
*** Raj2 has quit IRC | 21:38 | |
*** andersonvom has joined #heat | 21:42 | |
*** Raj2 has joined #heat | 21:44 | |
*** andersonvom has quit IRC | 21:46 | |
*** sorantis has quit IRC | 21:49 | |
*** Raj2 has quit IRC | 21:50 | |
*** Marga_ has quit IRC | 21:55 | |
openstackgerrit | James Combs proposed openstack/heat: Adding functional integration test for encrypted parameters. https://review.openstack.org/196846 | 21:58 |
*** lapalm has quit IRC | 21:59 | |
*** e0ne has quit IRC | 22:00 | |
*** achanda_ has joined #heat | 22:07 | |
*** Raj2 has joined #heat | 22:10 | |
*** achanda has quit IRC | 22:11 | |
*** spzala has quit IRC | 22:15 | |
*** ddaskal has quit IRC | 22:22 | |
*** kebray has quit IRC | 22:23 | |
*** achanda_ has quit IRC | 22:28 | |
*** Raj2 has quit IRC | 22:44 | |
*** Raj2 has joined #heat | 22:44 | |
*** dimsum__ has quit IRC | 23:02 | |
*** dimsum__ has joined #heat | 23:05 | |
*** randallburt1 has quit IRC | 23:05 | |
*** sabeen2 has quit IRC | 23:09 | |
*** Raj2 has quit IRC | 23:15 | |
*** achanda has joined #heat | 23:22 | |
*** Marga_ has joined #heat | 23:26 | |
*** achanda has quit IRC | 23:28 | |
*** jistr|afk has quit IRC | 23:29 | |
*** Marga_ has quit IRC | 23:30 | |
*** achanda has joined #heat | 23:31 | |
*** andersonvom has joined #heat | 23:31 | |
*** daneyon has quit IRC | 23:33 | |
*** daneyon has joined #heat | 23:33 | |
*** andersonvom has quit IRC | 23:35 | |
*** dsneddon is now known as dsneddon_away | 23:39 | |
*** achanda has quit IRC | 23:43 | |
*** EricGonczer_ has quit IRC | 23:43 | |
*** achanda has joined #heat | 23:45 | |
*** achanda has quit IRC | 23:47 | |
*** daneyon has quit IRC | 23:49 | |
*** daneyon has joined #heat | 23:49 | |
*** tchaypo_ has joined #heat | 23:51 | |
*** pfreund_ has joined #heat | 23:51 | |
*** htruta_ has joined #heat | 23:53 | |
*** pfreund has quit IRC | 23:54 | |
*** tchaypo has quit IRC | 23:54 | |
*** pleia2 has quit IRC | 23:54 | |
*** pleia2 has joined #heat | 23:54 | |
*** pfreund_ is now known as pfreund | 23:54 | |
*** tchaypo_ is now known as tchaypo | 23:55 | |
*** EricGonczer_ has joined #heat | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!