blob: a5f8e8ad994f404db1f8cc25b4c347fe72a23043 [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 Bondarevddb9af12018-07-02 19:07:57 +0400681Neutron with explicit physical networks
682---------------------------------------
Oleg Bondarevada324f2018-06-04 14:55:38 +0400683
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 ...
Oleg Bondarevddb9af12018-07-02 19:07:57 +0400696 # also need to configure corresponding bridge_mappings on
Oleg Bondarevada324f2018-06-04 14:55:38 +0400697 # compute and gateway nodes
Oleg Bondarevddb9af12018-07-02 19:07:57 +0400698 physnets: # only listed physnets will be configured (overrides physnet1/2/3)
699 external:
700 mtu: 1500
Oleg Bondarevada324f2018-06-04 14:55:38 +0400701 sriov_net:
702 mtu: 9000 # Optional, defaults to 1500
703 vlan_range: '100:200' # Optional
704 ext_net2:
705 mtu: 1500
706 mechanism:
707 ovs:
708 driver: openvswitch
709
Aleš Komárek41e82312017-04-11 13:37:44 +0200710Advanced Neutron Features (DPDK, SR-IOV)
Oleg Bondarev0575ae42017-07-28 16:36:25 +0400711----------------------------------------
Aleš Komárek41e82312017-04-11 13:37:44 +0200712
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100713Neutron OVS DPDK
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100714
715Enable datapath netdev for neutron openvswitch agent
716
717.. code-block:: yaml
718
719 neutron:
720 server:
721 version: mitaka
722 ...
723 dpdk: True
724 ...
725
726 neutron:
727 compute:
728 version: mitaka
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100729 dpdk: True
Michael Polenchuk52911652018-04-12 22:09:49 +0400730 vhost_mode: client # options: client|server (default)
Oleg Bondarevee7e8302017-10-16 17:20:38 +0400731 vhost_socket_dir: /var/run/openvswitch
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100732 backend:
733 engine: ml2
734 ...
735 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400736 ovs:
737 driver: openvswitch
Jakub Pavlik8f83ccc2017-02-27 11:15:39 +0100738
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100739Neutron OVS SR-IOV
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100740
741.. code-block:: yaml
742
743 neutron:
744 server:
745 version: mitaka
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100746 backend:
747 engine: ml2
748 ...
749 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400750 ovs:
751 driver: openvswitch
752 sriov:
753 driver: sriovnicswitch
Michael Polenchuk0bf59a72018-06-19 18:06:56 +0400754 # Driver w/ highest number will be placed ahead in the list (default is 0).
755 # It's recommended for SR-IOV driver to set an order >0 to get it
756 # before (for example) the opendaylight one.
757 order: 9
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100758
759 neutron:
760 compute:
761 version: mitaka
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100762 ...
763 backend:
764 engine: ml2
765 tenant_network_types: "flat,vlan" # Can be mixed flat,vlan,vxlan
766 sriov:
767 nic_one:
768 devname: eth1
769 physical_network: physnet3
770 mechanism:
Elena Ezhovad6a080c2017-10-09 15:25:16 +0400771 ovs:
772 driver: openvswitch
Jakub Pavlik70555cb2017-02-26 18:48:02 +0100773
Ilya Chukhnakovf4c2bb32017-06-08 02:03:15 +0300774Neutron with VLAN-aware-VMs
Oleg Bondarev0575ae42017-07-28 16:36:25 +0400775---------------------------
Ilya Chukhnakovf4c2bb32017-06-08 02:03:15 +0300776
777.. code-block:: yaml
778
779 neutron:
780 server:
781 vlan_aware_vms: true
782 ....
783 compute:
784 vlan_aware_vms: true
785 ....
786 gateway:
787 vlan_aware_vms: true
788
Oleg Bondarevacb2e532018-03-06 10:43:59 +0400789Neutron with BGP VPN (BaGPipe driver)
Oleg Bondarevb63d27f2018-02-14 19:21:06 +0400790---------------------------
791
792.. code-block:: yaml
793
794 neutron:
795 server:
796 version: pike
797 bgp_vpn:
Oleg Bondarevacb2e532018-03-06 10:43:59 +0400798 enabled: true
Michael Polenchuk0b3c5dd2018-06-27 12:04:32 +0400799 driver: bagpipe # Options: bagpipe/opencontrail/opendaylight[_v2]
Oleg Bondarevb63d27f2018-02-14 19:21:06 +0400800 ....
801 compute:
802 version: pike
803 bgp_vpn:
Oleg Bondarevacb2e532018-03-06 10:43:59 +0400804 enabled: true
Michael Polenchuk0b3c5dd2018-06-27 12:04:32 +0400805 driver: bagpipe # Options: bagpipe/opencontrail/opendaylight[_v2]
Oleg Bondarevacb2e532018-03-06 10:43:59 +0400806 bagpipe:
807 local_address: 192.168.20.20 # IP address for mpls/gre tunnels
808 peers: 192.168.20.30 # IP addresses of BGP peers
809 autonomous_system: 64512 # Autonomous System number
810 enable_rtc: True # Enable RT Constraint (RFC4684)
Oleg Bondarevb63d27f2018-02-14 19:21:06 +0400811 backend:
Oleg Bondarev878ac462018-04-23 17:48:15 +0400812 ovs_extension: # for OVS agent only, not supported in SRIOV agent
Oleg Bondarevb63d27f2018-02-14 19:21:06 +0400813 bagpipe_bgpvpn:
814 enabled: True
815
Oleksii Chupryn16cb4e02018-02-26 14:20:39 +0200816Neutron with DHCP agent on compute node
817---------------------------------------
818
819.. code-block:: yaml
820
821 neutron:
822 ....
823 compute:
824 dhcp_agent_enabled: true
825 ....
826
Oleg Bondarev0575ae42017-07-28 16:36:25 +0400827Neutron with OVN
828----------------
829
830Control node:
831
832.. code-block:: yaml
833
834 neutron:
835 server:
836 backend:
837 engine: ovn
838 mechanism:
839 ovn:
840 driver: ovn
841 tenant_network_types: "geneve,flat"
Michael Polenchukf59229b2018-06-19 16:24:49 +0400842 ovn:
843 ovn_l3_scheduler: leastloaded # valid options: chance, leastloaded
844 neutron_sync_mode: repair # valid options: log, off, repair
Michael Polenchuka3d492b2017-12-27 15:49:43 +0400845 ovn_ctl_opts:
846 db-nb-create-insecure-remote: 'yes'
847 db-sb-create-insecure-remote: 'yes'
Oleg Bondarev0575ae42017-07-28 16:36:25 +0400848
849Compute node:
850
851.. code-block:: yaml
852
853 neutron:
854 compute:
855 local_ip: 10.2.0.105
856 controller_vip: 10.1.0.101
857 external_access: false
858 backend:
859 engine: ovn
860
Michael Polenchukcccd1a52018-02-02 17:41:16 +0400861
862Neutron L2 Gateway
863----------------
864
865Control node:
866
867.. code-block:: yaml
868
869 neutron:
870 server:
871 version: pike
872 l2gw:
873 enabled: true
874 periodic_monitoring_interval: 5
875 quota_l2_gateway: 20
876 # service_provider=<service_type>:<name>:<driver>[:default]
877 service_provider: L2GW:OpenDaylight:networking_odl.l2gateway.driver.OpenDaylightL2gwDriver:default
878 backend:
879 engine: ml2
880
881Network/Gateway node:
882
883.. code-block:: yaml
884
885 neutron:
886 gateway:
887 version: pike
888 l2gw:
889 enabled: true
890 debug: true
891 socket_timeout: 20
892 ovsdb_hosts:
893 # <ovsdb_name>: <ip address>:<port>
894 # - ovsdb_name: a user defined symbolic identifier of physical switch
895 # - ip address: the address or dns name for the OVSDB server (i.e. pointer to the switch)
896 ovsdb1: 10.164.5.33:6632
897 ovsdb2: 10.164.4.33:6632
898
899
Michael Polenchuk87d2b742017-06-29 12:05:25 +0400900OpenDaylight integration
901------------------------
902
903Control node:
904
905.. code-block:: yaml
906
907 neutron:
908 server:
909 backend:
910 opendaylight: true
911 router: odl-router_v2
912 host: 10.20.0.77
913 rest_api_port: 8282
914 user: admin
915 password: admin
916 ovsdb_connection: tcp:127.0.0.1:6639
917 enable_websocket: true
918 enable_dhcp_service: false
919 mechanism:
920 ovs:
921 driver: opendaylight_v2
Michael Polenchuk0bf59a72018-06-19 18:06:56 +0400922 order: 1
Michael Polenchuk87d2b742017-06-29 12:05:25 +0400923
924Network/Gateway node:
925
926.. code-block:: yaml
927
928 neutron:
929 gateway:
930 backend:
931 router: odl-router_v2
932 ovsdb_connection: tcp:127.0.0.1:6639
933 opendaylight:
934 ovsdb_server_iface: ptcp:6639:127.0.0.1
935 ovsdb_odl_iface: tcp:10.20.0.77:6640
936 tunnel_ip: 10.1.0.110
937 provider_mappings: physnet1:br-floating
938
939Compute node:
940
941.. code-block:: yaml
942
943 neutron:
944 compute:
945 opendaylight:
946 ovsdb_server_iface: ptcp:6639:127.0.0.1
947 ovsdb_odl_iface: tcp:10.20.0.77:6640
948 tunnel_ip: 10.1.0.105
949 provider_mappings: physnet1:br-floating
950
951
Aleš Komárek41e82312017-04-11 13:37:44 +0200952Neutron Server
953--------------
954
Jiri Broulik74f61112016-11-21 20:23:47 +0100955Neutron Server with OpenContrail
Jiri Broulik74f61112016-11-21 20:23:47 +0100956
957.. code-block:: yaml
958
959 neutron:
960 server:
marcoa4428a32016-06-10 11:50:16 +0200961 backend:
962 engine: contrail
963 host: contrail_discovery_host
964 port: 8082
965 user: admin
966 password: password
967 tenant: admin
968 token: token
969
970Neutron Server with Midonet
971
972.. code-block:: yaml
973
974 neutron:
975 server:
976 backend:
977 engine: midonet
978 host: midonet_api_host
979 port: 8181
980 user: admin
981 password: password
982
Jakub Pavlik6dd5c0a2016-03-09 14:18:15 +0100983Neutron Keystone region
984
985.. code-block:: yaml
986
987 neutron:
988 server:
989 enabled: true
990 version: kilo
991 ...
992 identity:
993 region: RegionTwo
994 ...
995 compute:
996 region: RegionTwo
997 ...
998
Jiri Konecny93b19992016-04-12 11:15:39 +0200999Client-side RabbitMQ HA setup
1000
1001.. code-block:: yaml
1002
1003 neutron:
1004 server:
1005 ....
1006 message_queue:
1007 engine: rabbitmq
1008 members:
1009 - host: 10.0.16.1
1010 - host: 10.0.16.2
1011 - host: 10.0.16.3
1012 user: openstack
1013 password: pwd
1014 virtual_host: '/openstack'
1015 ....
1016
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001017
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001018Configuring TLS communications
1019------------------------------
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001020
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001021
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001022**Note:** by default system wide installed CA certs are used, so ``cacert_file`` param is optional, as well as ``cacert``.
1023
1024
1025- **RabbitMQ TLS**
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001026
1027.. code-block:: yaml
1028
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001029 neutron:
1030 server, gateway, compute:
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001031 message_queue:
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001032 port: 5671
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001033 ssl:
1034 enabled: True
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001035 (optional) cacert: cert body if the cacert_file does not exists
1036 (optional) cacert_file: /etc/openstack/rabbitmq-ca.pem
1037 (optional) version: TLSv1_2
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001038
1039
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001040- **MySQL TLS**
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001041
1042.. code-block:: yaml
1043
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001044 neutron:
1045 server:
1046 database:
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001047 ssl:
1048 enabled: True
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001049 (optional) cacert: cert body if the cacert_file does not exists
1050 (optional) cacert_file: /etc/openstack/mysql-ca.pem
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001051
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001052- **Openstack HTTPS API**
1053
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001054
1055.. code-block:: yaml
1056
Kirill Bespalovdd748b62017-11-21 10:42:57 +03001057 neutron:
1058 server:
1059 identity:
1060 protocol: https
1061 (optional) cacert_file: /etc/openstack/proxy.pem
Kirill Bespalov8fffe022017-08-03 17:55:02 +03001062
1063
Petr Michalec61f7ab22016-11-29 16:29:09 +01001064Enable auditing filter, ie: CADF
1065
1066.. code-block:: yaml
1067
1068 neutron:
1069 server:
1070 audit:
1071 enabled: true
1072 ....
1073 filter_factory: 'keystonemiddleware.audit:filter_factory'
1074 map_file: '/etc/pycadf/neutron_api_audit_map.conf'
1075 ....
1076 compute:
1077 audit:
1078 enabled: true
1079 ....
1080 filter_factory: 'keystonemiddleware.audit:filter_factory'
1081 map_file: '/etc/pycadf/neutron_api_audit_map.conf'
1082 ....
Jiri Konecny93b19992016-04-12 11:15:39 +02001083
Oleg Bondarev98870a32017-05-29 16:53:19 +04001084Neutron with security groups disabled
1085
1086.. code-block:: yaml
1087
1088 neutron:
1089 server:
1090 security_groups_enabled: False
1091 ....
1092 compute:
1093 security_groups_enabled: False
1094 ....
1095 gateway:
1096 security_groups_enabled: False
1097
Jiri Konecny93b19992016-04-12 11:15:39 +02001098
Aleš Komárek41e82312017-04-11 13:37:44 +02001099Neutron Client
1100--------------
Jiri Broulik5368cc52017-02-08 18:53:59 +01001101
1102Neutron networks
1103
1104.. code-block:: yaml
1105
1106 neutron:
1107 client:
1108 enabled: true
1109 server:
1110 identity:
Richard Felklaac256a2017-03-23 15:43:49 +01001111 endpoint_type: internalURL
Jiri Broulik5368cc52017-02-08 18:53:59 +01001112 network:
1113 inet1:
1114 tenant: demo
1115 shared: False
1116 admin_state_up: True
1117 router_external: True
1118 provider_physical_network: inet
1119 provider_network_type: flat
1120 provider_segmentation_id: 2
1121 subnet:
1122 inet1-subnet1:
1123 cidr: 192.168.90.0/24
1124 enable_dhcp: False
1125 inet2:
1126 tenant: admin
1127 shared: False
1128 router_external: True
1129 provider_network_type: "vlan"
1130 subnet:
1131 inet2-subnet1:
1132 cidr: 192.168.92.0/24
1133 enable_dhcp: False
1134 inet2-subnet2:
1135 cidr: 192.168.94.0/24
1136 enable_dhcp: True
1137 identity1:
1138 network:
1139 ...
1140
Jiri Broulik5368cc52017-02-08 18:53:59 +01001141Neutron routers
1142
1143.. code-block:: yaml
1144
1145 neutron:
1146 client:
1147 enabled: true
1148 server:
1149 identity:
Richard Felklaac256a2017-03-23 15:43:49 +01001150 endpoint_type: internalURL
Jiri Broulik5368cc52017-02-08 18:53:59 +01001151 router:
1152 inet1-router:
1153 tenant: demo
1154 admin_state_up: True
1155 gateway_network: inet
1156 interfaces:
1157 - inet1-subnet1
1158 - inet1-subnet2
1159 identity1:
1160 router:
1161 ...
1162
1163 TODO: implement adding new interfaces to a router while updating it
1164
1165
1166Neutron security groups
1167
1168.. code-block:: yaml
1169
1170 neutron:
1171 client:
1172 enabled: true
1173 server:
1174 identity:
Richard Felklaac256a2017-03-23 15:43:49 +01001175 endpoint_type: internalURL
Jiri Broulik5368cc52017-02-08 18:53:59 +01001176 security_group:
1177 security_group1:
1178 tenant: demo
1179 description: security group 1
1180 rules:
1181 - direction: ingress
1182 ethertype: IPv4
1183 protocol: TCP
1184 port_range_min: 1
1185 port_range_max: 65535
1186 remote_ip_prefix: 0.0.0.0/0
1187 - direction: ingress
1188 ethertype: IPv4
1189 protocol: UDP
1190 port_range_min: 1
1191 port_range_max: 65535
1192 remote_ip_prefix: 0.0.0.0/0
1193 - direction: ingress
1194 protocol: ICMP
1195 remote_ip_prefix: 0.0.0.0/0
1196 identity1:
1197 security_group:
1198 ...
1199
1200 TODO: implement updating existing security rules (now it adds new rule if trying to update existing one)
1201
Jiri Broulikde2e2902017-02-13 15:03:47 +01001202
1203Floating IP addresses
1204
1205.. code-block:: yaml
1206
1207 neutron:
1208 client:
1209 enabled: true
1210 server:
1211 identity:
Richard Felklaac256a2017-03-23 15:43:49 +01001212 endpoint_type: internalURL
Jiri Broulikde2e2902017-02-13 15:03:47 +01001213 floating_ip:
1214 prx01-instance:
1215 server: prx01.mk22-lab-basic.local
1216 subnet: private-subnet1
1217 network: public-net1
1218 tenant: demo
1219 gtw01-instance:
1220 ...
1221
1222.. note:: The network must have flag router:external set to True.
1223 Instance port in the stated subnet will be associated with the dynamically generated floating IP.
1224
1225
Oleg Iurchenkode71cc22017-09-18 17:58:56 +03001226
1227Enable Neutron extensions (QoS, DNS, etc.)
1228------------------------------------------
1229.. code-block:: yaml
1230
1231 neutron:
1232 server:
1233 backend:
1234 extension:
Oleg Iurchenkoac17f4f2017-10-06 11:24:27 +03001235 dns:
1236 enabled: True
1237 host: 127.0.0.1
1238 port: 9001
1239 protocol: http
1240 ....
1241 qos
1242 enabled: True
Oleg Iurchenkode71cc22017-09-18 17:58:56 +03001243
Oleg Bondarev878ac462018-04-23 17:48:15 +04001244Different Neutron extensions for different agents
1245-------------------------------------------------
1246.. code-block:: yaml
1247
1248 neutron:
1249 server:
1250 backend:
1251 extension: # common extensions for OVS and SRIOV agents
1252 dns:
1253 enabled: True
1254 ...
1255 qos
1256 enabled: True
1257 ovs_extension: # OVS specific extensions
1258 bagpipe_bgpvpn:
1259 enabled: True
1260 sriov_extension: # SRIOV specific extensions
1261 dummy:
1262 enabled: True
Oleg Iurchenkode71cc22017-09-18 17:58:56 +03001263
Oleg Iurchenko8cf6cf52017-09-18 15:44:03 +03001264
1265Neutron with Designate
1266-----------------------------------------
1267.. code-block:: yaml
1268
1269 neutron:
1270 server:
1271 backend:
1272 extension:
1273 dns:
1274 enabled: True
1275 host: 127.0.0.1
1276 port: 9001
1277 protocol: http
1278
Marek Celoud67ce2062018-01-31 13:44:55 +01001279Enable RBAC for OpenContrail engine
1280-----------------------------------
1281.. code-block:: yaml
1282
1283 neutron:
1284 server:
1285 backend:
1286 engine: contrail
1287 rbac:
1288 enabled: True
Oleg Iurchenko8cf6cf52017-09-18 15:44:03 +03001289
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001290Enhanced logging with logging.conf
1291----------------------------------
1292
1293By default logging.conf is disabled.
1294
1295That is possible to enable per-binary logging.conf with new variables:
1296 * openstack_log_appender - set it to true to enable log_config_append for all OpenStack services;
1297 * openstack_fluentd_handler_enabled - set to true to enable FluentHandler for all Openstack services.
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001298 * openstack_ossyslog_handler_enabled - set to true to enable OSSysLogHandler for all Openstack services.
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001299
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001300Only WatchedFileHandler, OSSysLogHandler and FluentHandler are available.
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001301
1302Also it is possible to configure this with pillar:
1303
1304.. code-block:: yaml
1305
1306 neutron:
1307 server:
1308 logging:
1309 log_appender: true
1310 log_handlers:
1311 watchedfile:
1312 enabled: true
1313 fluentd:
1314 enabled: true
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001315 ossyslog:
1316 enabled: true
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001317 ....
1318 compute:
1319 logging:
1320 log_appender: true
1321 log_handlers:
1322 watchedfile:
1323 enabled: true
1324 fluentd:
1325 enabled: true
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001326 ossyslog:
1327 enabled: true
Dmitry Kalashnik35dd0e02017-12-07 14:16:25 +04001328 ....
1329 gateway:
1330 logging:
1331 log_appender: true
1332 log_handlers:
1333 watchedfile:
1334 enabled: true
1335 fluentd:
1336 enabled: true
Oleksii Chupryn156c5f42018-02-07 10:06:50 +02001337 ossyslog:
1338 enabled: true
Oleg Iurchenko8cf6cf52017-09-18 15:44:03 +03001339
Oleksii Grudevfe73ee52018-05-14 14:08:11 +03001340Logging levels pillar example:
1341
1342.. code-block:: yaml
1343
1344 neutron:
1345 server:
1346 logging:
1347 log_appender: true
1348 loggers:
1349 root:
1350 level: 'DEBUG'
1351 neutron:
1352 level: 'DEBUG'
1353 amqplib:
1354 level: 'DEBUG'
1355 sqlalchemy:
1356 level: 'DEBUG'
1357 boto:
1358 level: 'DEBUG'
1359 suds:
1360 level: 'DEBUG'
1361 eventletwsgi:
1362 level: 'DEBUG'
1363 ......
1364
1365
Filip Pytloun20c0a442017-02-02 13:05:13 +01001366Documentation and Bugs
1367======================
1368
1369To learn how to install and update salt-formulas, consult the documentation
1370available online at:
1371
1372 http://salt-formulas.readthedocs.io/
1373
1374In the unfortunate event that bugs are discovered, they should be reported to
1375the appropriate issue tracker. Use Github issue tracker for specific salt
1376formula:
1377
1378 https://github.com/salt-formulas/salt-formula-neutron/issues
1379
1380For feature requests, bug reports or blueprints affecting entire ecosystem,
1381use Launchpad salt-formulas project:
1382
1383 https://launchpad.net/salt-formulas
1384
1385You can also join salt-formulas-users team and subscribe to mailing list:
1386
1387 https://launchpad.net/~salt-formulas-users
1388
1389Developers wishing to work on the salt-formulas projects should always base
1390their work on master branch and submit pull request against specific formula.
1391
1392 https://github.com/salt-formulas/salt-formula-neutron
1393
1394Any questions or feedback is always welcome so feel free to join our IRC
1395channel:
1396
1397 #salt-formulas @ irc.freenode.net