Advertisement
Guest User

Untitled

a guest
May 4th, 2021
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.39 KB | None | 0 0
  1. ---
  2. ###############################################################################
  3. # Neutron configuration.
  4.  
  5. # List of Neutron ML2 mechanism drivers to use. If unset the kolla-ansible
  6. # defaults will be used.
  7. #kolla_neutron_ml2_mechanism_drivers:
  8.  
  9. # List of Neutron ML2 type drivers to use.
  10. kolla_neutron_ml2_type_drivers:
  11.  - flat
  12.   - vlan
  13.   - vxlan
  14.  
  15. # List of Neutron ML2 tenant network types to use.
  16. kolla_neutron_ml2_tenant_network_types:
  17.  - flat
  18.   - vlan
  19.   - vxlan
  20.  
  21. # List of Neutron ML2 network VLAN ranges to use. Each item should be a dict
  22. # containing the following items:
  23. # physical_network: The physical network
  24. # range: Range of allowed VLANs on this physical network (format <min>:<max>,
  25. # optional)
  26. kolla_neutron_ml2_network_vlan_ranges:
  27.  - {
  28.      'physical_network': 'physnet2',
  29.      'range': '20:20'
  30.     }
  31.    
  32.  
  33.  
  34. # List of Neutron ML2 extention drivers to use.
  35. #kolla_neutron_ml2_extension_drivers:
  36.  
  37. ###############################################################################
  38. # Neutron ML2 generic switch driver configuration.
  39.  
  40. # List of switches to configure for use by genericswitch ML2 mechanism driver.
  41. # Each item should be a dict containing the following items:
  42. # name: Hostname of the switch
  43. # ip: IP address on which to reach the switch
  44. # username: SSH username
  45. # password: SSH password (optional)
  46. # key_file: SSH key file (optional)
  47. # secret: SSH secret (optional)
  48. #kolla_neutron_ml2_generic_switches:
  49.  
  50. # List of Ansible hosts representing switches to configure for use by
  51. # genericswitch ML2 mechanism driver. These switches will be appended to
  52. # kolla_neutron_ml2_generic_switches and their configuration will be determined
  53. # by the following host variables:
  54. # name: inventory_hostname
  55. # ip: ansible_host
  56. # username: ansible_user
  57. # password: ansible_ssh_pass
  58. # key_file: not currently supported
  59. # secret: not currently supported
  60. #kolla_neutron_ml2_generic_switch_hosts:
  61.  
  62. # Dict containing additional configuration for switches managed by the
  63. # genericswitch ML2 mechanism driver. For per-switch configuration of switches
  64. # in kolla_neutron_ml2_generic_switch_hosts, this may be set as a group or
  65. # host variable for the switch host.
  66. #kolla_neutron_ml2_generic_switch_extra:
  67.  
  68. ###############################################################################
  69. # Dummy variable to allow Ansible to accept this file.
  70. workaround_ansible_issue_8743: yes
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement