blob: 9ee240facc1975dbf5c442869d0ad36189085bd5 [file] [log] [blame]
Aleš Komárek41e82312017-04-11 13:37:44 +02001===============
2Neutron Formula
3===============
Filip Pytlouncd028e42015-10-06 16:28:32 +02004
Jakub Pavlik9ecf0262016-05-20 11:20:58 +02005Neutron is an OpenStack project to provide "networking as a service" between
6interface devices (e.g., vNICs) managed by other Openstack services (e.g.,
7nova).
Filip Pytlouncd028e42015-10-06 16:28:32 +02008
Jakub Pavlik9ecf0262016-05-20 11:20:58 +02009Starting in the Folsom release, Neutron is a core and supported part of the
10OpenStack platform (for Essex, we were an "incubated" project, which means use
Vasyl Saienko2fffc842017-06-14 10:35:26 +030011is suggested only for those who really know what they're doing with Neutron).
Filip Pytlouncd028e42015-10-06 16:28:32 +020012
Aleš Komárek41e82312017-04-11 13:37:44 +020013Sample Pillars
Filip Pytlouncd028e42015-10-06 16:28:32 +020014==============
15
16Neutron Server on the controller node
17
18.. code-block:: yaml
19
20 neutron:
21 server:
22 enabled: true
Jiri Broulik74f61112016-11-21 20:23:47 +010023 version: mitaka
Swann Croiset9407daf2017-02-02 15:27:56 +010024 allow_pagination: true
25 pagination_max_limit: 100
Mykyta Karpin253406d2017-12-08 17:01:37 +020026 api_workers: 2
27 rpc_workers: 2
28 rpc_state_report_workers: 2
Michael Polenchuk1ff88652018-03-06 16:15:57 +040029 root_helper_daemon: false
Michael Polenchuk2151b272018-06-19 18:32:31 +040030 dhcp_lease_duration: 600
Michael Polenchukcece76d2018-06-21 14:56:17 +040031 firewall_driver: iptables_hybrid
Filip Pytlouncd028e42015-10-06 16:28:32 +020032 bind:
33 address: 172.20.0.1
34 port: 9696
Filip Pytlouncd028e42015-10-06 16:28:32 +020035 database:
36 engine: mysql
37 host: 127.0.0.1
38 port: 3306
39 name: neutron
40 user: neutron
41 password: pwd
42 identity:
43 engine: keystone
44 host: 127.0.0.1
45 port: 35357
46 user: neutron
47 password: pwd
48 tenant: service
Dennis Dmitriev37114722017-03-06 16:52:26 +020049 endpoint_type: internal
Filip Pytlouncd028e42015-10-06 16:28:32 +020050 message_queue:
51 engine: rabbitmq
52 host: 127.0.0.1
53 port: 5672
54 user: openstack
55 password: pwd
56 virtual_host: '/openstack'
57 metadata:
58 host: 127.0.0.1
59 port: 8775
60 password: pass
Mykyta Karpin253406d2017-12-08 17:01:37 +020061 workers: 2
Petr Michalec61f7ab22016-11-29 16:29:09 +010062 audit:
63 enabled: false
Filip Pytlouncd028e42015-10-06 16:28:32 +020064
Swann Croiset9407daf2017-02-02 15:27:56 +010065Note: The pagination is useful to retrieve a large bunch of resources,
66because a single request may fail (timeout). This is enabled with both
67parameters *allow_pagination* and *pagination_max_limit* as shown above.
68
Dmitry Ukov596ddcf2017-05-04 18:16:16 +040069
70Configuration of policy.json file
71
72.. code-block:: yaml
73
74 neutron:
75 server:
76 ....
77 policy:
78 create_subnet: 'rule:admin_or_network_owner'
79 'get_network:queue_id': 'rule:admin_only'
80 # Add key without value to remove line from policy.json
81 'create_network:shared':
82
Elena Ezhovacd67cfe2017-06-16 23:35:07 +040083Neutron LBaaSv2 enablement
84--------------------------
Ondrej Smola314eee22017-03-08 21:21:16 +010085
86.. code-block:: yaml
87
88 neutron:
89 server:
90 lbaas:
91 enabled: true
92 providers:
Elena Ezhovacd67cfe2017-06-16 23:35:07 +040093 octavia:
94 engine: octavia
95 driver_path: 'neutron_lbaas.drivers.octavia.driver.OctaviaDriver'
96 base_url: 'http://127.0.0.1:9876'
Ondrej Smola314eee22017-03-08 21:21:16 +010097 avi_adc:
Ondrej Smola314eee22017-03-08 21:21:16 +010098 engine: avinetworks
Elena Ezhovacd67cfe2017-06-16 23:35:07 +040099 driver_path: 'avi_lbaasv2.avi_driver.AviDriver'
Ondrej Smola314eee22017-03-08 21:21:16 +0100100 controller_address: 10.182.129.239
101 controller_user: admin
102 controller_password: Cloudlab2016
103 controller_cloud_name: Default-Cloud
104 avi_adc2:
105 engine: avinetworks
106 ...
107
Elena Ezhovacd67cfe2017-06-16 23:35:07 +0400108Note: If the Contrail backend is set, Opencontrail loadbalancer would be enabled
109automatically. In this case lbaas should disabled in pillar:
Ondrej Smola314eee22017-03-08 21:21:16 +0100110
111.. code-block:: yaml
112
113 neutron:
114 server:
115 lbaas:
Elena Ezhovacd67cfe2017-06-16 23:35:07 +0400116 enabled: false
Ondrej Smola314eee22017-03-08 21:21:16 +0100117
Elena Ezhova166d4012017-08-17 12:53:52 +0400118
119Neutron FWaaSv1 enablement
120--------------------------
121
122.. code-block:: yaml
123
124 neutron:
125 fwaas:
126 enabled: true
127 version: ocata
128 api_version: v1
129
130
Ondrej Smola12ff8192017-04-28 12:39:11 +0200131Enable CORS parameters
Elena Ezhova166d4012017-08-17 12:53:52 +0400132----------------------
Ondrej Smola12ff8192017-04-28 12:39:11 +0200133
134.. code-block:: yaml
135
136 neutron:
137 server:
138 cors:
139 allowed_origin: https:localhost.local,http:localhost.local
140 expose_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token
141 allow_methods: GET,PUT,POST,DELETE,PATCH
142 allow_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token
143 allow_credentials: True
144 max_age: 86400
145
146
Aleš Komárek41e82312017-04-11 13:37:44 +0200147Neutron VXLAN tenant networks with Network nodes
148------------------------------------------------
Swann Croiset9407daf2017-02-02 15:27:56 +0100149
Aleš Komárek41e82312017-04-11 13:37:44 +0200150With DVR for East-West and Network node for North-South.
Jiri Broulik74f61112016-11-21 20:23:47 +0100151
152This use case describes a model utilising VxLAN overlay with DVR. The DVR
Aleš Komárek41e82312017-04-11 13:37:44 +0200153routers will only be utilized for traffic that is router within the cloud
Vasyl Saienko2fffc842017-06-14 10:35:26 +0300154infrastructure and that remains encapsulated. External traffic will be
155routed to via the network nodes.
Jiri Broulik74f61112016-11-21 20:23:47 +0100156
Vasyl Saienko2fffc842017-06-14 10:35:26 +0300157The intention is that each tenant will require at least two (2) vrouters
158one to be utilised
Jiri Broulik74f61112016-11-21 20:23:47 +0100159
Aleš Komárek41e82312017-04-11 13:37:44 +0200160Neutron Server
marcoa4428a32016-06-10 11:50:16 +0200161
162.. code-block:: yaml
163
164 neutron:
165 server:
Jiri Broulik74f61112016-11-21 20:23:47 +0100166 version: mitaka
Dmitry Stremkouski3c1be3e2017-11-18 11:04:20 +0300167 path_mtu: 1500
Jiri Broulik74f61112016-11-21 20:23:47 +0100168 bind:
169 address: 172.20.0.1
170 port: 9696
171 database:
172 engine: mysql
173 host: 127.0.0.1
174 port: 3306
175 name: neutron
176 user: neutron
177 password: pwd
178 identity:
179 engine: keystone
180 host: 127.0.0.1
181 port: 35357
182 user: neutron
183 password: pwd
184 tenant: service
Dennis Dmitriev37114722017-03-06 16:52:26 +0200185 endpoint_type: internal
Jiri Broulik74f61112016-11-21 20:23:47 +0100186 message_queue:
187 engine: rabbitmq
188 host: 127.0.0.1
189 port: 5672
190 user: openstack
191 password: pwd
192 virtual_host: '/openstack'
193 global_physnet_mtu: 9000
194 l3_ha: False # Which type of router will be created by default
195 dvr: True # disabled for non DVR use case
196 backend:
197 engine: ml2
198 tenant_network_types: "flat,vxlan"
199 external_mtu: 9000
200 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400201 ovs:
202 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100203
Aleš Komárek41e82312017-04-11 13:37:44 +0200204Network Node
Jiri Broulik74f61112016-11-21 20:23:47 +0100205
206.. code-block:: yaml
207
208 neutron:
209 gateway:
210 enabled: True
211 version: mitaka
Michael Polenchuk2151b272018-06-19 18:32:31 +0400212 dhcp_lease_duration: 600
Michael Polenchukcece76d2018-06-21 14:56:17 +0400213 firewall_driver: iptables_hybrid
Jiri Broulik74f61112016-11-21 20:23:47 +0100214 message_queue:
215 engine: rabbitmq
216 host: 127.0.0.1
217 port: 5672
218 user: openstack
219 password: pwd
220 virtual_host: '/openstack'
221 local_ip: 192.168.20.20 # br-mesh ip address
222 dvr: True # disabled for non DVR use case
223 agent_mode: dvr_snat
224 metadata:
225 host: 127.0.0.1
226 password: pass
227 backend:
228 engine: ml2
229 tenant_network_types: "flat,vxlan"
230 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400231 ovs:
232 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100233
234Compute Node
Jiri Broulik74f61112016-11-21 20:23:47 +0100235
236.. code-block:: yaml
237
238 neutron:
239 compute:
240 enabled: True
241 version: mitaka
242 message_queue:
243 engine: rabbitmq
244 host: 127.0.0.1
245 port: 5672
246 user: openstack
247 password: pwd
248 virtual_host: '/openstack'
249 local_ip: 192.168.20.20 # br-mesh ip address
250 dvr: True # disabled for non DVR use case
251 agent_mode: dvr
252 external_access: false # Compute node with DVR for east-west only, Network Node has True as default
253 metadata:
254 host: 127.0.0.1
Vasyl Saienko2fffc842017-06-14 10:35:26 +0300255 password: pass
Jiri Broulik74f61112016-11-21 20:23:47 +0100256 backend:
257 engine: ml2
258 tenant_network_types: "flat,vxlan"
259 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400260 ovs:
261 driver: openvswitch
Petr Michalec61f7ab22016-11-29 16:29:09 +0100262 audit:
263 enabled: false
Jiri Broulik74f61112016-11-21 20:23:47 +0100264
Aleš Komárek41e82312017-04-11 13:37:44 +0200265
Dmitry Stremkouskia3a4ab42017-10-23 17:37:12 +0300266Disable physnet1 bridge
267-----------------------
268
269By default we have external access turned on, so among any physnets in
270your reclass there would be additional one: physnet1, which is mapped to
271br-floating
272
273If you need internal nets only without this bridge, remove br-floating
274and configurations mappings. Disable mappings for this bridge on
275neutron-servers:
276
277.. code-block:: yaml
278
279 neutron:
280 server:
281 external_access: false
282
283gateways:
284
285.. code-block:: yaml
286
287 neutron:
288 gateway:
289 external_access: false
290
291compute nodes:
292
293.. code-block:: yaml
294
295 neutron:
296 compute:
297 external_access: false
298
299
Marcin Iwinskic50137a2018-01-22 14:18:24 +0100300Add additional bridge mappings for OVS bridges
301----------------------------------------------
302
303By default we have external access turned on, so among any physnets in
304your reclass there would be additional one: physnet1, which is mapped to
305br-floating
306
307If you need to add extra non-default bridge mappings they can be defined
308separately for both gateways and compute nodes:
309
310gateways:
311
312.. code-block:: yaml
313
314 neutron:
315 gateway:
316 bridge_mappings:
317 physnet4: br-floating-internet
318
319compute nodes:
320
321.. code-block:: yaml
322
323 neutron:
324 compute:
325 bridge_mappings:
326 physnet4: br-floating-internet
327
328
Dmitry Stremkouski4b410222017-11-18 11:29:55 +0300329Specify different mtu values for different physnets
330---------------------------------------------------
331
332Neutron Server
333
334.. code-block:: yaml
335
336 neutron:
337 server:
338 version: mitaka
339 backend:
340 external_mtu: 1500
341 tenant_net_mtu: 9000
342 ironic_net_mtu: 9000
343
Jiri Broulik74f61112016-11-21 20:23:47 +0100344Neutron VXLAN tenant networks with Network Nodes (non DVR)
Aleš Komárek41e82312017-04-11 13:37:44 +0200345----------------------------------------------------------
Jiri Broulik74f61112016-11-21 20:23:47 +0100346
347This section describes a network solution that utilises VxLAN overlay
348 networks without DVR with all routers being managed on the network nodes.
349
Aleš Komárek41e82312017-04-11 13:37:44 +0200350Neutron Server
Jiri Broulik74f61112016-11-21 20:23:47 +0100351
352.. code-block:: yaml
353
354 neutron:
355 server:
356 version: mitaka
Jiri Broulik74f61112016-11-21 20:23:47 +0100357 bind:
358 address: 172.20.0.1
359 port: 9696
360 database:
361 engine: mysql
362 host: 127.0.0.1
363 port: 3306
364 name: neutron
365 user: neutron
366 password: pwd
367 identity:
368 engine: keystone
369 host: 127.0.0.1
370 port: 35357
371 user: neutron
372 password: pwd
373 tenant: service
Dennis Dmitriev37114722017-03-06 16:52:26 +0200374 endpoint_type: internal
Jiri Broulik74f61112016-11-21 20:23:47 +0100375 message_queue:
376 engine: rabbitmq
377 host: 127.0.0.1
378 port: 5672
379 user: openstack
380 password: pwd
381 virtual_host: '/openstack'
382 global_physnet_mtu: 9000
383 l3_ha: True
384 dvr: False
385 backend:
386 engine: ml2
387 tenant_network_types= "flat,vxlan"
388 external_mtu: 9000
389 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400390 ovs:
391 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100392
Aleš Komárek41e82312017-04-11 13:37:44 +0200393Network Node
Jiri Broulik74f61112016-11-21 20:23:47 +0100394
395.. code-block:: yaml
396
397 neutron:
398 gateway:
399 enabled: True
400 version: mitaka
401 message_queue:
402 engine: rabbitmq
403 host: 127.0.0.1
404 port: 5672
405 user: openstack
406 password: pwd
407 virtual_host: '/openstack'
408 local_ip: 192.168.20.20 # br-mesh ip address
409 dvr: False
410 agent_mode: legacy
Simon Pasquierc03af112017-04-10 10:35:14 +0200411 availability_zone: az1
Jiri Broulik74f61112016-11-21 20:23:47 +0100412 metadata:
413 host: 127.0.0.1
414 password: pass
415 backend:
416 engine: ml2
417 tenant_network_types: "flat,vxlan"
418 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400419 ovs:
420 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100421
422Compute Node
Jiri Broulik74f61112016-11-21 20:23:47 +0100423
424.. code-block:: yaml
425
426 neutron:
427 compute:
428 enabled: True
429 version: mitaka
430 message_queue:
431 engine: rabbitmq
432 host: 127.0.0.1
433 port: 5672
434 user: openstack
435 password: pwd
436 virtual_host: '/openstack'
437 local_ip: 192.168.20.20 # br-mesh ip address
438 external_access: False
Vasyl Saienko2fffc842017-06-14 10:35:26 +0300439 dvr: False
Jiri Broulik74f61112016-11-21 20:23:47 +0100440 backend:
441 engine: ml2
442 tenant_network_types: "flat,vxlan"
443 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400444 ovs:
445 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100446
Aleš Komárek41e82312017-04-11 13:37:44 +0200447Neutron VXLAN tenant networks with Network Nodes with DVR
448---------------------------------------------------------
449
450With DVR for East-West and North-South, DVR everywhere, Network node for SNAT.
Jiri Broulik74f61112016-11-21 20:23:47 +0100451
Vasyl Saienko2fffc842017-06-14 10:35:26 +0300452This section describes a network solution that utilises VxLAN
453overlay networks with DVR with North-South and East-West. Network
Jiri Broulik74f61112016-11-21 20:23:47 +0100454Node is used only for SNAT.
455
Aleš Komárek41e82312017-04-11 13:37:44 +0200456Neutron Server
Jiri Broulik74f61112016-11-21 20:23:47 +0100457
458.. code-block:: yaml
459
460 neutron:
461 server:
462 version: mitaka
Jiri Broulik74f61112016-11-21 20:23:47 +0100463 bind:
464 address: 172.20.0.1
465 port: 9696
466 database:
467 engine: mysql
468 host: 127.0.0.1
469 port: 3306
470 name: neutron
471 user: neutron
472 password: pwd
473 identity:
474 engine: keystone
475 host: 127.0.0.1
476 port: 35357
477 user: neutron
478 password: pwd
479 tenant: service
Dennis Dmitriev37114722017-03-06 16:52:26 +0200480 endpoint_type: internal
Jiri Broulik74f61112016-11-21 20:23:47 +0100481 message_queue:
482 engine: rabbitmq
483 host: 127.0.0.1
484 port: 5672
485 user: openstack
486 password: pwd
487 virtual_host: '/openstack'
488 global_physnet_mtu: 9000
489 l3_ha: False
490 dvr: True
491 backend:
492 engine: ml2
493 tenant_network_types= "flat,vxlan"
494 external_mtu: 9000
495 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400496 ovs:
497 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100498
Aleš Komárek41e82312017-04-11 13:37:44 +0200499Network Node
Jiri Broulik74f61112016-11-21 20:23:47 +0100500
501.. code-block:: yaml
502
503 neutron:
504 gateway:
505 enabled: True
506 version: mitaka
507 message_queue:
508 engine: rabbitmq
509 host: 127.0.0.1
510 port: 5672
511 user: openstack
512 password: pwd
513 virtual_host: '/openstack'
514 local_ip: 192.168.20.20 # br-mesh ip address
515 dvr: True
516 agent_mode: dvr_snat
Simon Pasquierc03af112017-04-10 10:35:14 +0200517 availability_zone: az1
Jiri Broulik74f61112016-11-21 20:23:47 +0100518 metadata:
519 host: 127.0.0.1
520 password: pass
521 backend:
522 engine: ml2
523 tenant_network_types: "flat,vxlan"
524 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400525 ovs:
526 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100527
528Compute Node
Jiri Broulik74f61112016-11-21 20:23:47 +0100529
530.. code-block:: yaml
531
532 neutron:
533 compute:
534 enabled: True
535 version: mitaka
536 message_queue:
537 engine: rabbitmq
538 host: 127.0.0.1
539 port: 5672
540 user: openstack
541 password: pwd
542 virtual_host: '/openstack'
543 local_ip: 192.168.20.20 # br-mesh ip address
544 dvr: True
Vasyl Saienko2fffc842017-06-14 10:35:26 +0300545 external_access: True
Jiri Broulik74f61112016-11-21 20:23:47 +0100546 agent_mode: dvr
Simon Pasquierc03af112017-04-10 10:35:14 +0200547 availability_zone: az1
Jiri Broulik74f61112016-11-21 20:23:47 +0100548 metadata:
549 host: 127.0.0.1
550 password: pass
551 backend:
552 engine: ml2
553 tenant_network_types: "flat,vxlan"
554 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400555 ovs:
556 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100557
558Sample Linux network configuration for DVR
Jiri Broulik74f61112016-11-21 20:23:47 +0100559
560.. code-block:: yaml
561
562 linux:
563 network:
564 bridge: openvswitch
565 interface:
566 eth1:
567 enabled: true
568 type: eth
569 mtu: 9000
570 proto: manual
571 eth2:
572 enabled: true
573 type: eth
574 mtu: 9000
575 proto: manual
576 eth3:
577 enabled: true
578 type: eth
579 mtu: 9000
580 proto: manual
581 br-int:
582 enabled: true
583 mtu: 9000
584 type: ovs_bridge
585 br-floating:
586 enabled: true
587 mtu: 9000
588 type: ovs_bridge
589 float-to-ex:
590 enabled: true
591 type: ovs_port
592 mtu: 65000
593 bridge: br-floating
594 br-mgmt:
595 enabled: true
596 type: bridge
597 mtu: 9000
598 address: ${_param:single_address}
599 netmask: 255.255.255.0
600 use_interfaces:
601 - eth1
602 br-mesh:
603 enabled: true
604 type: bridge
605 mtu: 9000
606 address: ${_param:tenant_address}
607 netmask: 255.255.255.0
608 use_interfaces:
609 - eth2
610 br-ex:
611 enabled: true
612 type: bridge
613 mtu: 9000
614 address: ${_param:external_address}
615 netmask: 255.255.255.0
616 use_interfaces:
617 - eth3
618 use_ovs_ports:
619 - float-to-ex
620
Thom Gerdes3282d072017-05-30 22:06:04 +0000621Additonal VXLAN tenant network settings
622---------------------------------------
623
624The default multicast group of 224.0.0.1 only multicasts to a single subnet.
625Allow overriding it to allow larger underlay network topologies.
626
627Neutron Server
628
629.. code-block:: yaml
630
631 neutron:
632 server:
633 vxlan:
634 group: 239.0.0.0/8
635 vni_ranges: "2:65535"
636
Jiri Broulik74f61112016-11-21 20:23:47 +0100637Neutron VLAN tenant networks with Network Nodes
Aleš Komárek41e82312017-04-11 13:37:44 +0200638-----------------------------------------------
Jiri Broulik74f61112016-11-21 20:23:47 +0100639
640VLAN tenant provider
641
642Neutron Server only
Jiri Broulik74f61112016-11-21 20:23:47 +0100643
644.. code-block:: yaml
645
646 neutron:
647 server:
648 version: mitaka
Jiri Broulik74f61112016-11-21 20:23:47 +0100649 ...
650 global_physnet_mtu: 9000
651 l3_ha: False
652 dvr: True
653 backend:
654 engine: ml2
655 tenant_network_types: "flat,vlan" # Can be mixed flat,vlan,vxlan
656 tenant_vlan_range: "1000:2000"
657 external_vlan_range: "100:200" # Does not have to be defined.
658 external_mtu: 9000
659 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400660 ovs:
661 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100662
663Compute node
Jiri Broulik74f61112016-11-21 20:23:47 +0100664
665.. code-block:: yaml
666
667 neutron:
668 compute:
669 version: mitaka
Jiri Broulik74f61112016-11-21 20:23:47 +0100670 ...
671 dvr: True
672 agent_mode: dvr
673 external_access: False
674 backend:
675 engine: ml2
676 tenant_network_types: "flat,vlan" # Can be mixed flat,vlan,vxlan
677 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400678 ovs:
679 driver: openvswitch
Jiri Broulik74f61112016-11-21 20:23:47 +0100680
Oleg Bondarevada324f2018-06-04 14:55:38 +0400681Neutron with additional physical networks
682-----------------------------------------
683
684Neutron Server only
685
686.. code-block:: yaml
687
688 neutron:
689 server:
690 version: ocata
691 ...
692 backend:
693 engine: ml2
694 tenant_network_types: "flat,vlan" # Can be mixed flat,vlan,vxlan
695 ...
696 # also need to configure corresponding additional bridge_mappings on
697 # compute and gateway nodes
698 physnets:
699 sriov_net:
700 mtu: 9000 # Optional, defaults to 1500
701 vlan_range: '100:200' # Optional
702 ext_net2:
703 mtu: 1500
704 mechanism:
705 ovs:
706 driver: openvswitch
707
Aleš Komárek41e82312017-04-11 13:37:44 +0200708Advanced Neutron Features (DPDK, SR-IOV)
Oleg Bondarev0575ae42017-07-28 16:36:25 +0400709----------------------------------------
Aleš Komárek41e82312017-04-11 13:37:44 +0200710
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100711Neutron OVS DPDK
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100712
713Enable datapath netdev for neutron openvswitch agent
714
715.. code-block:: yaml
716
717 neutron:
718 server:
719 version: mitaka
720 ...
721 dpdk: True
722 ...
723
724 neutron:
725 compute:
726 version: mitaka
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100727 dpdk: True
Michael Polenchuk52911652018-04-12 22:09:49 +0400728 vhost_mode: client # options: client|server (default)
Oleg Bondarevee7e8302017-10-16 17:20:38 +0400729 vhost_socket_dir: /var/run/openvswitch
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100730 backend:
731 engine: ml2
732 ...
733 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400734 ovs:
735 driver: openvswitch
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100736
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100737Neutron OVS SR-IOV
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100738
739.. code-block:: yaml
740
741 neutron:
742 server:
743 version: mitaka
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100744 backend:
745 engine: ml2
746 ...
747 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400748 ovs:
749 driver: openvswitch
750 sriov:
751 driver: sriovnicswitch
Michael Polenchuk0bf59a72018-06-19 18:06:56 +0400752 # Driver w/ highest number will be placed ahead in the list (default is 0).
753 # It's recommended for SR-IOV driver to set an order >0 to get it
754 # before (for example) the opendaylight one.
755 order: 9
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100756
757 neutron:
758 compute:
759 version: mitaka
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100760 ...
761 backend:
762 engine: ml2
763 tenant_network_types: "flat,vlan" # Can be mixed flat,vlan,vxlan
764 sriov:
765 nic_one:
766 devname: eth1
767 physical_network: physnet3
768 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400769 ovs:
770 driver: openvswitch
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100771
Ilya Chukhnakovf4c2bb32017-06-08 02:03:15 +0300772Neutron with VLAN-aware-VMs
Oleg Bondarev0575ae42017-07-28 16:36:25 +0400773---------------------------
Ilya Chukhnakovf4c2bb32017-06-08 02:03:15 +0300774
775.. code-block:: yaml
776
777 neutron:
778 server:
779 vlan_aware_vms: true
780 ....
781 compute:
782 vlan_aware_vms: true
783 ....
784 gateway:
785 vlan_aware_vms: true
786
Oleg Bondarevacb2e532018-03-06 10:43:59 +0400787Neutron with BGP VPN (BaGPipe driver)
Oleg Bondarevb63d27f2018-02-14 19:21:06 +0400788---------------------------
789
790.. code-block:: yaml
791
792 neutron:
793 server:
794 version: pike
795 bgp_vpn:
Oleg Bondarevacb2e532018-03-06 10:43:59 +0400796 enabled: true
Michael Polenchuk0b3c5dd2018-06-27 12:04:32 +0400797 driver: bagpipe # Options: bagpipe/opencontrail/opendaylight[_v2]
Oleg Bondarevb63d27f2018-02-14 19:21:06 +0400798 ....
799 compute:
800 version: pike
801 bgp_vpn:
Oleg Bondarevacb2e532018-03-06 10:43:59 +0400802 enabled: true
Michael Polenchuk0b3c5dd2018-06-27 12:04:32 +0400803 driver: bagpipe # Options: bagpipe/opencontrail/opendaylight[_v2]
Oleg Bondarevacb2e532018-03-06 10:43:59 +0400804 bagpipe:
805 local_address: 192.168.20.20 # IP address for mpls/gre tunnels
806 peers: 192.168.20.30 # IP addresses of BGP peers
807 autonomous_system: 64512 # Autonomous System number
808 enable_rtc: True # Enable RT Constraint (RFC4684)
Oleg Bondarevb63d27f2018-02-14 19:21:06 +0400809 backend:
Oleg Bondarev878ac462018-04-23 17:48:15 +0400810 ovs_extension: # for OVS agent only, not supported in SRIOV agent
Oleg Bondarevb63d27f2018-02-14 19:21:06 +0400811 bagpipe_bgpvpn:
812 enabled: True
813
Oleksii Chupryn16cb4e02018-02-26 14:20:39 +0200814Neutron with DHCP agent on compute node
815---------------------------------------
816
817.. code-block:: yaml
818
819 neutron:
820 ....
821 compute:
822 dhcp_agent_enabled: true
823 ....
824
Oleg Bondarev0575ae42017-07-28 16:36:25 +0400825Neutron with OVN
826----------------
827
828Control node:
829
830.. code-block:: yaml
831
832 neutron:
833 server:
834 backend:
835 engine: ovn
836 mechanism:
837 ovn:
838 driver: ovn
839 tenant_network_types: "geneve,flat"
Michael Polenchukf59229b2018-06-19 16:24:49 +0400840 ovn:
841 ovn_l3_scheduler: leastloaded # valid options: chance, leastloaded
842 neutron_sync_mode: repair # valid options: log, off, repair
Michael Polenchuka3d492b2017-12-27 15:49:43 +0400843 ovn_ctl_opts:
844 db-nb-create-insecure-remote: 'yes'
845 db-sb-create-insecure-remote: 'yes'
Oleg Bondarev0575ae42017-07-28 16:36:25 +0400846
847Compute node:
848
849.. code-block:: yaml
850
851 neutron:
852 compute:
853 local_ip: 10.2.0.105
854 controller_vip: 10.1.0.101
855 external_access: false
856 backend:
857 engine: ovn
858
Michael Polenchukcccd1a52018-02-02 17:41:16 +0400859
860Neutron L2 Gateway
861----------------
862
863Control node:
864
865.. code-block:: yaml
866
867 neutron:
868 server:
869 version: pike
870 l2gw:
871 enabled: true
872 periodic_monitoring_interval: 5
873 quota_l2_gateway: 20
874 # service_provider=<service_type>:<name>:<driver>[:default]
875 service_provider: L2GW:OpenDaylight:networking_odl.l2gateway.driver.OpenDaylightL2gwDriver:default
876 backend:
877 engine: ml2
878
879Network/Gateway node:
880
881.. code-block:: yaml
882
883 neutron:
884 gateway:
885 version: pike
886 l2gw:
887 enabled: true
888 debug: true
889 socket_timeout: 20
890 ovsdb_hosts:
891 # <ovsdb_name>: <ip address>:<port>
892 # - ovsdb_name: a user defined symbolic identifier of physical switch
893 # - ip address: the address or dns name for the OVSDB server (i.e. pointer to the switch)
894 ovsdb1: 10.164.5.33:6632
895 ovsdb2: 10.164.4.33:6632
896
897
Michael Polenchuk87d2b742017-06-29 12:05:25 +0400898OpenDaylight integration
899------------------------
900
901Control node:
902
903.. code-block:: yaml
904
905 neutron:
906 server:
907 backend:
908 opendaylight: true
909 router: odl-router_v2
910 host: 10.20.0.77
911 rest_api_port: 8282
912 user: admin
913 password: admin
914 ovsdb_connection: tcp:127.0.0.1:6639
915 enable_websocket: true
916 enable_dhcp_service: false
917 mechanism:
918 ovs:
919 driver: opendaylight_v2
Michael Polenchuk0bf59a72018-06-19 18:06:56 +0400920 order: 1
Michael Polenchuk87d2b742017-06-29 12:05:25 +0400921
922Network/Gateway node:
923
924.. code-block:: yaml
925
926 neutron:
927 gateway:
928 backend:
929 router: odl-router_v2
930 ovsdb_connection: tcp:127.0.0.1:6639
931 opendaylight:
932 ovsdb_server_iface: ptcp:6639:127.0.0.1
933 ovsdb_odl_iface: tcp:10.20.0.77:6640
934 tunnel_ip: 10.1.0.110
935 provider_mappings: physnet1:br-floating
936
937Compute node:
938
939.. code-block:: yaml
940
941 neutron:
942 compute:
943 opendaylight:
944 ovsdb_server_iface: ptcp:6639:127.0.0.1
945 ovsdb_odl_iface: tcp:10.20.0.77:6640
946 tunnel_ip: 10.1.0.105
947 provider_mappings: physnet1:br-floating
948
949
Aleš Komárek41e82312017-04-11 13:37:44 +0200950Neutron Server
951--------------
952
Jiri Broulik74f61112016-11-21 20:23:47 +0100953Neutron Server with OpenContrail
Jiri Broulik74f61112016-11-21 20:23:47 +0100954
955.. code-block:: yaml
956
957 neutron:
958 server:
marcoa4428a32016-06-10 11:50:16 +0200959 backend:
960 engine: contrail
961 host: contrail_discovery_host
962 port: 8082
963 user: admin
964 password: password
965 tenant: admin
966 token: token
967
968Neutron Server with Midonet
969
970.. code-block:: yaml
971
972 neutron:
973 server:
974 backend:
975 engine: midonet
976 host: midonet_api_host
977 port: 8181
978 user: admin
979 password: password
980
Jakub Pavlik6dd5c0a2016-03-09 14:18:15 +0100981Neutron Keystone region
982
983.. code-block:: yaml
984
985 neutron:
986 server:
987 enabled: true
988 version: kilo
989 ...
990 identity:
991 region: RegionTwo
992 ...
993 compute:
994 region: RegionTwo
995 ...
996
Jiri Konecny93b19992016-04-12 11:15:39 +0200997Client-side RabbitMQ HA setup
998
999.. code-block:: yaml
1000
1001 neutron:
1002 server:
1003 ....
1004 message_queue:
1005 engine: rabbitmq
1006 members:
1007 - host: 10.0.16.1
1008 - host: 10.0.16.2
1009 - host: 10.0.16.3
1010 user: openstack
1011 password: pwd
1012 virtual_host: '/openstack'
1013 ....
1014
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001015
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001016Configuring TLS communications
1017------------------------------
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001018
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001019
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001020**Note:** by default system wide installed CA certs are used, so ``cacert_file`` param is optional, as well as ``cacert``.
1021
1022
1023- **RabbitMQ TLS**
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001024
1025.. code-block:: yaml
1026
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001027 neutron:
1028 server, gateway, compute:
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001029 message_queue:
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001030 port: 5671
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001031 ssl:
1032 enabled: True
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001033 (optional) cacert: cert body if the cacert_file does not exists
1034 (optional) cacert_file: /etc/openstack/rabbitmq-ca.pem
1035 (optional) version: TLSv1_2
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001036
1037
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001038- **MySQL TLS**
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001039
1040.. code-block:: yaml
1041
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001042 neutron:
1043 server:
1044 database:
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001045 ssl:
1046 enabled: True
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001047 (optional) cacert: cert body if the cacert_file does not exists
1048 (optional) cacert_file: /etc/openstack/mysql-ca.pem
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001049
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001050- **Openstack HTTPS API**
1051
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001052
1053.. code-block:: yaml
1054
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001055 neutron:
1056 server:
1057 identity:
1058 protocol: https
1059 (optional) cacert_file: /etc/openstack/proxy.pem
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001060
1061
Petr Michalec61f7ab22016-11-29 16:29:09 +01001062Enable auditing filter, ie: CADF
1063
1064.. code-block:: yaml
1065
1066 neutron:
1067 server:
1068 audit:
1069 enabled: true
1070 ....
1071 filter_factory: 'keystonemiddleware.audit:filter_factory'
1072 map_file: '/etc/pycadf/neutron_api_audit_map.conf'
1073 ....
1074 compute:
1075 audit:
1076 enabled: true
1077 ....
1078 filter_factory: 'keystonemiddleware.audit:filter_factory'
1079 map_file: '/etc/pycadf/neutron_api_audit_map.conf'
1080 ....
Jiri Konecny93b19992016-04-12 11:15:39 +02001081
Oleg Bondarev98870a32017-05-29 16:53:19 +04001082Neutron with security groups disabled
1083
1084.. code-block:: yaml
1085
1086 neutron:
1087 server:
1088 security_groups_enabled: False
1089 ....
1090 compute:
1091 security_groups_enabled: False
1092 ....
1093 gateway:
1094 security_groups_enabled: False
1095
Jiri Konecny93b19992016-04-12 11:15:39 +02001096
Aleš Komárek41e82312017-04-11 13:37:44 +02001097Neutron Client
1098--------------
Jiri Broulik5368cc52017-02-08 18:53:59 +01001099
1100Neutron networks
1101
1102.. code-block:: yaml
1103
1104 neutron:
1105 client:
1106 enabled: true
1107 server:
1108 identity:
Richard Felklaac256a2017-03-23 15:43:49 +01001109 endpoint_type: internalURL
Jiri Broulik5368cc52017-02-08 18:53:59 +01001110 network:
1111 inet1:
1112 tenant: demo
1113 shared: False
1114 admin_state_up: True
1115 router_external: True
1116 provider_physical_network: inet
1117 provider_network_type: flat
1118 provider_segmentation_id: 2
1119 subnet:
1120 inet1-subnet1:
1121 cidr: 192.168.90.0/24
1122 enable_dhcp: False
1123 inet2:
1124 tenant: admin
1125 shared: False
1126 router_external: True
1127 provider_network_type: "vlan"
1128 subnet:
1129 inet2-subnet1:
1130 cidr: 192.168.92.0/24
1131 enable_dhcp: False
1132 inet2-subnet2:
1133 cidr: 192.168.94.0/24
1134 enable_dhcp: True
1135 identity1:
1136 network:
1137 ...
1138
Jiri Broulik5368cc52017-02-08 18:53:59 +01001139Neutron routers
1140
1141.. code-block:: yaml
1142
1143 neutron:
1144 client:
1145 enabled: true
1146 server:
1147 identity:
Richard Felklaac256a2017-03-23 15:43:49 +01001148 endpoint_type: internalURL
Jiri Broulik5368cc52017-02-08 18:53:59 +01001149 router:
1150 inet1-router:
1151 tenant: demo
1152 admin_state_up: True
1153 gateway_network: inet
1154 interfaces:
1155 - inet1-subnet1
1156 - inet1-subnet2
1157 identity1:
1158 router:
1159 ...
1160
1161 TODO: implement adding new interfaces to a router while updating it
1162
1163
1164Neutron security groups
1165
1166.. code-block:: yaml
1167
1168 neutron:
1169 client:
1170 enabled: true
1171 server:
1172 identity:
Richard Felklaac256a2017-03-23 15:43:49 +01001173 endpoint_type: internalURL
Jiri Broulik5368cc52017-02-08 18:53:59 +01001174 security_group:
1175 security_group1:
1176 tenant: demo
1177 description: security group 1
1178 rules:
1179 - direction: ingress
1180 ethertype: IPv4
1181 protocol: TCP
1182 port_range_min: 1
1183 port_range_max: 65535
1184 remote_ip_prefix: 0.0.0.0/0
1185 - direction: ingress
1186 ethertype: IPv4
1187 protocol: UDP
1188 port_range_min: 1
1189 port_range_max: 65535
1190 remote_ip_prefix: 0.0.0.0/0
1191 - direction: ingress
1192 protocol: ICMP
1193 remote_ip_prefix: 0.0.0.0/0
1194 identity1:
1195 security_group:
1196 ...
1197
1198 TODO: implement updating existing security rules (now it adds new rule if trying to update existing one)
1199
Jiri Broulikde2e2902017-02-13 15:03:47 +01001200
1201Floating IP addresses
1202
1203.. code-block:: yaml
1204
1205 neutron:
1206 client:
1207 enabled: true
1208 server:
1209 identity:
Richard Felklaac256a2017-03-23 15:43:49 +01001210 endpoint_type: internalURL
Jiri Broulikde2e2902017-02-13 15:03:47 +01001211 floating_ip:
1212 prx01-instance:
1213 server: prx01.mk22-lab-basic.local
1214 subnet: private-subnet1
1215 network: public-net1
1216 tenant: demo
1217 gtw01-instance:
1218 ...
1219
1220.. note:: The network must have flag router:external set to True.
1221 Instance port in the stated subnet will be associated with the dynamically generated floating IP.
1222
1223
Oleg Iurchenkode71cc22017-09-18 17:58:56 +03001224
1225Enable Neutron extensions (QoS, DNS, etc.)
1226------------------------------------------
1227.. code-block:: yaml
1228
1229 neutron:
1230 server:
1231 backend:
1232 extension:
Oleg Iurchenkoac17f4f2017-10-06 11:24:27 +03001233 dns:
1234 enabled: True
1235 host: 127.0.0.1
1236 port: 9001
1237 protocol: http
1238 ....
1239 qos
1240 enabled: True
Oleg Iurchenkode71cc22017-09-18 17:58:56 +03001241
Oleg Bondarev878ac462018-04-23 17:48:15 +04001242Different Neutron extensions for different agents
1243-------------------------------------------------
1244.. code-block:: yaml
1245
1246 neutron:
1247 server:
1248 backend:
1249 extension: # common extensions for OVS and SRIOV agents
1250 dns:
1251 enabled: True
1252 ...
1253 qos
1254 enabled: True
1255 ovs_extension: # OVS specific extensions
1256 bagpipe_bgpvpn:
1257 enabled: True
1258 sriov_extension: # SRIOV specific extensions
1259 dummy:
1260 enabled: True
Oleg Iurchenkode71cc22017-09-18 17:58:56 +03001261
Oleg Iurchenko8cf6cf52017-09-18 15:44:03 +03001262
1263Neutron with Designate
1264-----------------------------------------
1265.. code-block:: yaml
1266
1267 neutron:
1268 server:
1269 backend:
1270 extension:
1271 dns:
1272 enabled: True
1273 host: 127.0.0.1
1274 port: 9001
1275 protocol: http
1276
Marek Celoud67ce2062018-01-31 13:44:55 +01001277Enable RBAC for OpenContrail engine
1278-----------------------------------
1279.. code-block:: yaml
1280
1281 neutron:
1282 server:
1283 backend:
1284 engine: contrail
1285 rbac:
1286 enabled: True
Oleg Iurchenko8cf6cf52017-09-18 15:44:03 +03001287
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001288Enhanced logging with logging.conf
1289----------------------------------
1290
1291By default logging.conf is disabled.
1292
1293That is possible to enable per-binary logging.conf with new variables:
1294 * openstack_log_appender - set it to true to enable log_config_append for all OpenStack services;
1295 * openstack_fluentd_handler_enabled - set to true to enable FluentHandler for all Openstack services.
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001296 * openstack_ossyslog_handler_enabled - set to true to enable OSSysLogHandler for all Openstack services.
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001297
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001298Only WatchedFileHandler, OSSysLogHandler and FluentHandler are available.
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001299
1300Also it is possible to configure this with pillar:
1301
1302.. code-block:: yaml
1303
1304 neutron:
1305 server:
1306 logging:
1307 log_appender: true
1308 log_handlers:
1309 watchedfile:
1310 enabled: true
1311 fluentd:
1312 enabled: true
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001313 ossyslog:
1314 enabled: true
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001315 ....
1316 compute:
1317 logging:
1318 log_appender: true
1319 log_handlers:
1320 watchedfile:
1321 enabled: true
1322 fluentd:
1323 enabled: true
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001324 ossyslog:
1325 enabled: true
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001326 ....
1327 gateway:
1328 logging:
1329 log_appender: true
1330 log_handlers:
1331 watchedfile:
1332 enabled: true
1333 fluentd:
1334 enabled: true
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001335 ossyslog:
1336 enabled: true
Oleg Iurchenko8cf6cf52017-09-18 15:44:03 +03001337
Oleksii Grudevfe73ee52018-05-14 14:08:11 +03001338Logging levels pillar example:
1339
1340.. code-block:: yaml
1341
1342 neutron:
1343 server:
1344 logging:
1345 log_appender: true
1346 loggers:
1347 root:
1348 level: 'DEBUG'
1349 neutron:
1350 level: 'DEBUG'
1351 amqplib:
1352 level: 'DEBUG'
1353 sqlalchemy:
1354 level: 'DEBUG'
1355 boto:
1356 level: 'DEBUG'
1357 suds:
1358 level: 'DEBUG'
1359 eventletwsgi:
1360 level: 'DEBUG'
1361 ......
1362
1363
Filip Pytloun20c0a442017-02-02 13:05:13 +01001364Documentation and Bugs
1365======================
1366
1367To learn how to install and update salt-formulas, consult the documentation
1368available online at:
1369
1370 http://salt-formulas.readthedocs.io/
1371
1372In the unfortunate event that bugs are discovered, they should be reported to
1373the appropriate issue tracker. Use Github issue tracker for specific salt
1374formula:
1375
1376 https://github.com/salt-formulas/salt-formula-neutron/issues
1377
1378For feature requests, bug reports or blueprints affecting entire ecosystem,
1379use Launchpad salt-formulas project:
1380
1381 https://launchpad.net/salt-formulas
1382
1383You can also join salt-formulas-users team and subscribe to mailing list:
1384
1385 https://launchpad.net/~salt-formulas-users
1386
1387Developers wishing to work on the salt-formulas projects should always base
1388their work on master branch and submit pull request against specific formula.
1389
1390 https://github.com/salt-formulas/salt-formula-neutron
1391
1392Any questions or feedback is always welcome so feel free to join our IRC
1393channel:
1394
1395 #salt-formulas @ irc.freenode.net