| *** longkb has joined #heat | 00:36 | |
| *** spartakos has quit IRC | 00:40 | |
| openstackgerrit | Zane Bitter proposed openstack/heat master: Improve best existing resource selection https://review.openstack.org/599833 | 00:54 |
|---|---|---|
| *** ivve has quit IRC | 01:06 | |
| *** ivve has joined #heat | 01:19 | |
| *** hongbin_ has joined #heat | 01:26 | |
| *** spartakos has joined #heat | 01:56 | |
| *** ricolin has joined #heat | 02:27 | |
| *** zbitter has joined #heat | 02:42 | |
| *** zaneb has quit IRC | 02:45 | |
| *** skramaja has joined #heat | 03:05 | |
| *** gkadam has joined #heat | 03:21 | |
| *** hongbin_ has quit IRC | 03:46 | |
| *** spartakos has quit IRC | 03:57 | |
| *** ramishra has joined #heat | 03:59 | |
| *** gkadam has quit IRC | 04:10 | |
| *** gkadam has joined #heat | 04:10 | |
| openstackgerrit | Andreas Jaeger proposed openstack/heat master: Fix .zuul.yaml https://review.openstack.org/599908 | 04:14 |
| *** hjensas has quit IRC | 05:52 | |
| openstackgerrit | Merged openstack/heat master: remove master-only job templates from zuul config https://review.openstack.org/599843 | 06:12 |
| openstackgerrit | Merged openstack/heat-specs master: Fix rocky template https://review.openstack.org/597646 | 06:35 |
| openstackgerrit | Merged openstack/heat-specs master: import zuul job settings from project-config https://review.openstack.org/597260 | 06:35 |
| openstackgerrit | zhangyifan proposed openstack/heat master: fix function list_stack_resources. This commit uses to make function list_stack_resource can distinguish the resource type like "OS::Nova::Server" and "OS::Nova::ServerGroup". https://review.openstack.org/594002 | 06:40 |
| pas-ha | ricolin: hi, have a question re heat-dashboard - was it released for Rocky? why is there no stable/rocky branch yet? | 06:48 |
| pas-ha | kei-ichi: I guess same question to you as well ^ | 06:49 |
| ricolin | pas-ha, we release 1.4.0 out, 14 days ago, but appears I didn't cut rocky for it, will post another patch for that | 06:54 |
| *** hjensas has joined #heat | 06:54 | |
| pas-ha | cool, thanks :-) | 06:55 |
| ricolin | pas-ha, will you be there in PTG? | 06:57 |
| ricolin | pas-ha, https://review.openstack.org/599939 | 06:59 |
| pas-ha | ricolin: yes, I'll be there | 06:59 |
| ricolin | pas-ha, okay, I will see you in Denver | 07:02 |
| pas-ha | yep, see ya :-) | 07:02 |
| *** rcernin has quit IRC | 07:04 | |
| openstackgerrit | zhangyifan proposed openstack/heat master: fix function list_stack_resources. This commit uses to fix function list_stack_resource, and then this function can distinguish the resource type like "OS::Nova::Server" and "OS::Nova::ServerGroup". https://review.openstack.org/594002 | 07:47 |
| openstackgerrit | zhangyifan proposed openstack/heat master: fix function list_stack_resources. https://review.openstack.org/594002 | 07:59 |
| *** kei-ichi has quit IRC | 08:04 | |
| *** kei-ichi has joined #heat | 08:04 | |
| *** gkadam_ has joined #heat | 08:23 | |
| *** gkadam has quit IRC | 08:27 | |
| *** sshnaidm|afk is now known as sshnaidm | 08:36 | |
| *** gfidente has joined #heat | 08:42 | |
| *** derekh has joined #heat | 08:44 | |
| *** evrardjp has joined #heat | 09:05 | |
| *** ricolin has quit IRC | 09:07 | |
| evrardjp | good morning -- maybe a weird question, but is it possible to use conditionals to conditionally define a property? I want to omit the definition of resource property if some parameter is set to false | 09:07 |
| evrardjp | to be even more precise for my case, I don't want to pass security groups if port_security is set to false, so it still allows flexibility | 09:09 |
| *** gmoro has quit IRC | 09:10 | |
| *** gmoro has joined #heat | 09:11 | |
| therve | evrardjp: You can change the value of a property | 09:16 |
| therve | If you want to omit it altogether, you need 2 different resource defined conditionally | 09:16 |
| evrardjp | therve: that's what I was afraid of | 09:18 |
| evrardjp | now I have to change the whole list of things consuming that resource, because I would now have two resources | 09:18 |
| evrardjp | and add a bunch of "if" | 09:18 |
| evrardjp | thanks for the help | 09:19 |
| therve | evrardjp: Doesn't the property support null or [] ? | 09:19 |
| therve | That would work, instead of omitting it | 09:19 |
| evrardjp | well that property is a list (as this is a security group I'd like to pass or not pass) | 09:20 |
| evrardjp | however I am not sure on the behavior, should I pass [] | 09:20 |
| evrardjp | neutron by default doesn't allow to bind security groups if port security is disabled | 09:21 |
| evrardjp | so I guess providing [] would still try to bind an empty list | 09:21 |
| evrardjp | I guess this is the code that matters: https://github.com/openstack/heat/blob/8cfff53e263e3b59c43ec10958bfaa86204bab63/heat/engine/resources/openstack/neutron/port.py#L506-L514 ? | 09:22 |
| evrardjp | I have my solution in the code comments :) | 09:23 |
| evrardjp | I guess a conditional should be added there? | 09:24 |
| ramishra | evrardjp: something like http://paste.openstack.org/show/729495/ seems to work | 09:53 |
| evrardjp | ramishra: that's exactly what I have right now | 09:57 |
| ramishra | evrardjp: so what's the issue? | 09:57 |
| evrardjp | I have rewritten thanks to your input, so I have to check what's the issue behind it yet : ) | 09:58 |
| evrardjp | I mean thanks to therve 's input :) | 09:58 |
| *** zigo has joined #heat | 10:01 | |
| evrardjp | so it seems that my security group is ignored... but the stack creation fails. | 10:01 |
| evrardjp | I am not using it on Neutron::Port but on Nova::Server | 10:03 |
| evrardjp | I will refactor this to create a port separately and do the right thing, then assign that port to server | 10:04 |
| evrardjp | thanks | 10:04 |
| *** longkb has quit IRC | 10:05 | |
| ramishra | yes, it's always good to create ports in stack, rather than asking nova to do it | 10:05 |
| ramishra | we can possibly have a validation in port resource to ignore sec_groups when port_security_enabled is false | 10:06 |
| *** pbourke has quit IRC | 10:57 | |
| *** pbourke has joined #heat | 10:59 | |
| *** nicolasbock has joined #heat | 11:32 | |
| *** sshnaidm has quit IRC | 11:43 | |
| *** zigo has quit IRC | 11:45 | |
| *** sshnaidm has joined #heat | 11:46 | |
| *** gkadam_ has quit IRC | 11:54 | |
| *** skramaja_ has joined #heat | 12:26 | |
| *** skramaja has quit IRC | 12:29 | |
| *** skramaja_ has quit IRC | 12:45 | |
| openstackgerrit | Pavlo Shchelokovskyy proposed openstack/heat master: Pass role ids to trust if possible https://review.openstack.org/576566 | 12:51 |
| *** zbitter is now known as zaneb | 13:23 | |
| *** ricolin has joined #heat | 13:23 | |
| ricolin | Anyone need to discuss any topic? Feel free to raise. Otherwise we will save this meeting and leave discussion for PTG+Online meet up | 13:47 |
| *** hjensas has quit IRC | 13:48 | |
| zaneb | evrardjp: have you tried passing null? that might work | 13:48 |
| evrardjp | zaneb: I was 'constrained' by the template I had, so I decided to have a different template, more flexible. Thanks for the offer to help zaneb :) | 13:49 |
| zaneb | ricolin: I don't have anything to bring up that I can think of | 13:50 |
| ricolin | zaneb, thanks for letting me know:) | 13:50 |
| zaneb | ricolin: when are you arriving in Denver? | 13:50 |
| ricolin | Saturday evening | 13:51 |
| ricolin | you? | 13:51 |
| zaneb | Sunday afternoon | 13:55 |
| ricolin | zaneb, I think we might need a cross-project with glance this time http://lists.openstack.org/pipermail/openstack-dev/2018-September/134292.html | 13:56 |
| ricolin | *might* | 13:56 |
| ricolin | try to find out if there might be any issue, but I think `web-download` is what we needed | 14:00 |
| *** jtomasek has quit IRC | 14:15 | |
| *** gfidente has quit IRC | 14:45 | |
| *** gfidente has joined #heat | 14:46 | |
| zaneb | ah, that does indeed sound like what we need | 14:48 |
| *** jtomasek has joined #heat | 15:14 | |
| *** spartakos has joined #heat | 15:42 | |
| openstackgerrit | Julien Danjou proposed openstack/heat master: aodh/gnocchi: remove constraints on aggregation methods https://review.openstack.org/584030 | 15:54 |
| *** spartakos has quit IRC | 16:05 | |
| *** spartakos has joined #heat | 16:05 | |
| *** k_mouza has joined #heat | 16:28 | |
| *** shardy has quit IRC | 16:28 | |
| *** ramishra has quit IRC | 16:39 | |
| *** k_mouza has quit IRC | 16:41 | |
| *** mchlumsky has joined #heat | 16:59 | |
| *** gfidente is now known as gfidente|afk | 17:00 | |
| *** derekh has quit IRC | 17:00 | |
| *** zaneb has quit IRC | 17:05 | |
| *** zbitter has joined #heat | 17:05 | |
| *** ricolin has quit IRC | 17:06 | |
| *** zbitter is now known as zaneb | 17:06 | |
| *** mchlumsky has quit IRC | 17:13 | |
| *** mchlumsky has joined #heat | 17:15 | |
| *** k_mouza has joined #heat | 17:29 | |
| *** sshnaidm is now known as sshnaidm|afk | 17:32 | |
| *** k_mouza has quit IRC | 17:33 | |
| *** hjensas has joined #heat | 17:39 | |
| *** openstackgerrit has quit IRC | 18:00 | |
| *** spartakos has quit IRC | 18:09 | |
| *** spartakos has joined #heat | 18:38 | |
| *** spartakos has quit IRC | 18:39 | |
| *** spartakos has joined #heat | 18:40 | |
| *** jtomasek has quit IRC | 19:04 | |
| *** openstackgerrit has joined #heat | 19:28 | |
| openstackgerrit | OpenStack Release Bot proposed openstack/heat-agents master: Update reno for stable/rocky https://review.openstack.org/600189 | 19:28 |
| openstackgerrit | OpenStack Release Bot proposed openstack/heat-dashboard master: Update reno for stable/rocky https://review.openstack.org/600192 | 19:28 |
| openstackgerrit | Merged openstack/heat master: Fix .zuul.yaml https://review.openstack.org/599908 | 19:36 |
| openstackgerrit | Thomas Herve proposed openstack/heat master: aodh/gnocchi: remove constraints on aggregation methods https://review.openstack.org/584030 | 19:38 |
| *** jcoufal has joined #heat | 19:47 | |
| *** jcoufal has quit IRC | 20:07 | |
| openstackgerrit | Merged openstack/heat-agents master: Update reno for stable/rocky https://review.openstack.org/600189 | 20:52 |
| *** sshnaidm|afk has quit IRC | 20:54 | |
| *** sshnaidm has joined #heat | 21:00 | |
| *** sshnaidm has quit IRC | 21:01 | |
| *** mchlumsky has quit IRC | 21:02 | |
| *** gfidente|afk has quit IRC | 21:16 | |
| openstackgerrit | Merged openstack/heat master: Support py36 for test in tox https://review.openstack.org/580298 | 21:33 |
| *** sshnaidm has joined #heat | 22:06 | |
| *** sshnaidm is now known as sshnaidm|off | 22:08 | |
| *** ricolin has joined #heat | 22:14 | |
| *** rcernin has joined #heat | 22:43 | |
| openstackgerrit | Zane Bitter proposed openstack/heat master: Improve best existing resource selection https://review.openstack.org/599833 | 23:28 |
| openstackgerrit | Zane Bitter proposed openstack/heat master: Allow update of previously-replaced resources https://review.openstack.org/600278 | 23:28 |
| openstackgerrit | Zane Bitter proposed openstack/heat master: Allow update of previously-replaced resources https://review.openstack.org/600278 | 23:59 |
| openstackgerrit | Zane Bitter proposed openstack/heat master: Improve best existing resource selection https://review.openstack.org/599833 | 23:59 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!