spacepaste

  1.  
  2. ---
  3. # You can use this file to override _any_ variable throughout Kolla.
  4. # Additional options can be found in the 'kolla/ansible/group_vars/all.yml' file.
  5. # Default value of all the commented parameters are shown here, To override
  6. # the default value uncomment the parameter and change its value.
  7. ###################
  8. # Kolla options
  9. ###################
  10. # Valid options are [ COPY_ONCE, COPY_ALWAYS ]
  11. #config_strategy: "COPY_ALWAYS"
  12. # Valid options are [ centos, fedora, oraclelinux, ubuntu ]
  13. kolla_base_distro: "centos"
  14. # Valid options are [ binary, source ]
  15. kolla_install_type: "binary"
  16. # Valid option is Docker repository tag
  17. #openstack_release: "3.0.0"
  18. # This should be a VIP, an unused IP on your network that will float between
  19. # the hosts running keepalived for high-availability. When running an All-In-One
  20. # without haproxy and keepalived, this should be the first IP on your
  21. # 'network_interface' as set in the Networking section below.
  22. kolla_internal_vip_address: "192.168.188.254"
  23. # This is the DNS name that maps to the kolla_internal_vip_address VIP. By
  24. # default it is the same as kolla_internal_vip_address.
  25. #kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"
  26. # This should be a VIP, an unused IP on your network that will float between
  27. # the hosts running keepalived for high-availability. It defaults to the
  28. # kolla_internal_vip_address, allowing internal and external communication to
  29. # share the same address. Specify a kolla_external_vip_address to separate
  30. # internal and external requests between two VIPs.
  31. #kolla_external_vip_address: "{{ kolla_internal_vip_address }}"
  32. # The Public address used to communicate with OpenStack as set in the public_url
  33. # for the endpoints that will be created. This DNS name should map to
  34. # kolla_external_vip_address.
  35. #kolla_external_fqdn: "{{ kolla_external_vip_address }}"
  36. ####################
  37. # Docker options
  38. ####################
  39. ### Example: Private repository with authentication
  40. docker_registry: "deployer.local:4000"
  41. #docker_namespace: "companyname"
  42. #docker_registry_username: "sam"
  43. #docker_registry_password: "correcthorsebatterystaple"
  44. ####################
  45. # Networking options
  46. ####################
  47. # This interface is what all your api services will be bound to by default.
  48. # Additionally, all vxlan/tunnel and storage network traffic will go over this
  49. # interface by default. This interface must contain an IPv4 address.
  50. network_interface: "eth1"
  51. # These can be adjusted for even more customization. The default is the same as
  52. # the 'network_interface'. These interfaces must contain an IPv4 address.
  53. #kolla_external_vip_interface: "{{ network_interface }}"
  54. #api_interface: "{{ network_interface }}"
  55. #storage_interface: "{{ network_interface }}"
  56. #cluster_interface: "{{ network_interface }}"
  57. #tunnel_interface: "{{ network_interface }}"
  58. # This is the raw interface given to neutron as its external network port. Even
  59. # though an IP address can exist on this interface, it will be unusable in most
  60. # configurations. It is recommended this interface not be configured with any IP
  61. # addresses for that reason.
  62. neutron_external_interface: "eth0"
  63. # Valid options are [ openvswitch, linuxbridge ]
  64. #neutron_plugin_agent: "openvswitch"
  65. ####################
  66. # keepalived options
  67. ####################
  68. # Arbitrary unique number from 0..255
  69. #keepalived_virtual_router_id: "51"
  70. ####################
  71. # TLS options
  72. ####################
  73. # To provide encryption and authentication on the kolla_external_vip_interface,
  74. # TLS can be enabled. When TLS is enabled, certificates must be provided to
  75. # allow clients to perform authentication.
  76. #kolla_enable_tls_external: "no"
  77. #kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"
  78. ####################
  79. # OpenStack options
  80. ####################
  81. # Use these options to set the various log levels across all OpenStack projects
  82. # Valid options are [ True, False ]
  83. #openstack_logging_debug: "False"
  84. # Valid options are [ novnc, spice ]
  85. #nova_console: "novnc"
  86. # OpenStack services can be enabled or disabled with these options
  87. #enable_ceilometer: "no"
  88. #enable_central_logging: "no"
  89. #enable_ceph: "no"
  90. #enable_ceph_rgw: "no"
  91. #enable_cinder: "no"
  92. #enable_cinder_backend_lvm: "no"
  93. #enable_heat: "yes"
  94. #enable_horizon: "yes"
  95. #enable_ironic: "no"
  96. #enable_magnum: "no"
  97. #enable_manila: "no"
  98. #enable_mistral: "no"
  99. #enable_mongodb: "no"
  100. #enable_murano: "no"
  101. #enable_multipathd: "no"
  102. #enable_neutron_lbaas: "no"
  103. #enable_neutron_qos: "no"
  104. #enable_swift: "no"
  105. #enable_tempest: "no"
  106. #enable_watcher: "no"
  107. ###################
  108. # Ceph options
  109. ###################
  110. # Ceph can be setup with a caching to improve performance. To use the cache you
  111. # must provide separate disks than those for the OSDs
  112. #ceph_enable_cache: "no"
  113. # Valid options are [ forward, none, writeback ]
  114. #ceph_cache_mode: "writeback"
  115. # A requirement for using the erasure-coded pools is you must setup a cache tier
  116. # Valid options are [ erasure, replicated ]
  117. #ceph_pool_type: "replicated"
  118. #######################
  119. # Glance options
  120. #######################
  121. # Configure image backend.
  122. glance_backend_file: "yes"
  123. #glance_backend_ceph: "no"
  124. #######################
  125. # Cinder options
  126. #######################
  127. # Enable / disable Cinder backends
  128. #cinder_backend_ceph: "{{ enable_ceph }}"
  129. # Cinder's iSCSI backend !!!REQUIRES!!! two parameters:
  130. # 1 - IP address of the server hosting LVM Volume group
  131. # 2 - The name of Volume group which Cinder will use.
  132. #cinder_volume_group:
  133. #######################
  134. # Nova options
  135. #######################
  136. nova_backend_ceph: "{{ enable_ceph }}"
  137. #######################################
  138. # Manila - Shared File Systems Options
  139. #######################################
  140. #manila_enable_dhss: "yes"
  141. ##################################
  142. # Swift - Object Storage Options
  143. ##################################
  144. # Swift expects block devices to be available for storage. Two types of storage
  145. # are supported: 1 - storage device with a special partition name and filesystem
  146. # label, 2 - unpartitioned disk with a filesystem. The label of this filesystem
  147. # is used to detect the disk which Swift will be using.
  148. # Swift support two mathcing modes, valid options are [ prefix, strict ]
  149. #swift_devices_match_mode: "strict"
  150. # This parameter defines matching pattern: if "strict" mode was selected,
  151. # for swift_devices_match_mode then swift_device_name should specify the name of
  152. # the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
  153. # selected then swift_devices_name should specify a pattern which would match to
  154. # filesystems' labels prepared for swift.
  155. #swift_devices_name: "KOLLA_SWIFT_DATA"
  156. ################################################
  157. # Tempest - The OpenStack Integration Test Suite
  158. ################################################
  159. # following value must be set when enable tempest
  160. tempest_image_id:
  161. tempest_flavor_ref_id:
  162. tempest_public_network_id:
  163. tempest_floating_network_name:
  164. # tempest_image_alt_id: "{{ tempest_image_id }}"
  165. # tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
  166.