Re: [Openstack] openstack deployment tools

2018-03-26 Thread Jimmy McArthur
Jeffrey/Serge, Apologies. Kolla was misclassified when we moved over to the new Project Map (https://www.openstack.org/assets/openstack-map/openstack-map-v2017112.pdf). It is now showing on the Project Navigator for all relevant releases. Thanks, Jimmy Jeffrey Zhang

Re: [Openstack] openstack deployment tools

2018-03-26 Thread Jeffrey Zhang
Thanks Jimmy for fixing this ;D On Mon, Mar 26, 2018 at 9:55 PM, Jimmy McArthur wrote: > Jeffrey/Serge, > > Apologies. Kolla was misclassified when we moved over to the new Project > Map (https://www.openstack.org/assets/openstack-map/ > openstack-map-v2017112.pdf). It is now showing on the Pr

[Openstack] [openstack][neutron] why doesn't neutron add waf/ips service?

2018-03-26 Thread Guo James
Neutron has services like Router, Firewall, LB, VPN. But Now waf(web application firewall) service has not been included. Does everyone think waf should been implemented by NFVM? ___ Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/opens

[Openstack] parameterizing server creation

2018-03-26 Thread Sashan Govender
Hi I have a HOT file that has 4 Nova::Server resources. They differences between them are minimal and, when I look at the file, I see a lot of duplication. How can I reduce this. I've tried fiddling with the 'repeat' intrinsic and StructuredConfig but with no luck. I basically want to create a loo

Re: [Openstack] parameterizing server creation

2018-03-26 Thread Rathnakumar Kayyar
You can use ResourceGroups. Here is a snippet from a resource file I have created:   my_server_instance:     type: OS::Nova::Server     properties:   image: { get_param: image }   flavor: { get_param: flavor } #  key_name: { get_param: key }   availability_zone: { get_param: [avl

Re: [Openstack] parameterizing server creation

2018-03-26 Thread Sashan Govender
Awesome, thanks! On Tue, Mar 27, 2018 at 4:22 PM Rathnakumar Kayyar wrote: > You can use ResourceGroups. Here is a snippet from a resource file I have > created: > > my_server_instance: > type: OS::Nova::Server > properties: > image: { get_param: image } > flavor: { get_par