Advertisement
Guest User

Untitled

a guest
Oct 10th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.63 KB | None | 0 0
  1. ---
  2. # You can use this file to override _any_ variable throughout Kolla.
  3. # Additional options can be found in the 'kolla/ansible/group_vars/all.yml' file.
  4. # Default value of all the commented parameters are shown here, To override
  5. # the default value uncomment the parameter and change its value.
  6.  
  7. ###################
  8. # Kolla options
  9. ###################
  10. # Valid options are [ COPY_ONCE, COPY_ALWAYS ]
  11. #config_strategy: "COPY_ALWAYS"
  12.  
  13. # Valid options are [ centos, fedora, oraclelinux, ubuntu ]
  14. #kolla_base_distro: "centos"
  15. kolla_base_distro: "ubuntu"
  16.  
  17. # Valid options are [ binary, source ]
  18. #kolla_install_type: "binary"
  19. kolla_install_type: "source"
  20.  
  21. # Valid option is Docker repository tag
  22. openstack_release: "3.0.0"
  23.  
  24. # This should be a VIP, an unused IP on your network that will float between
  25. # the hosts running keepalived for high-availability. When running an All-In-One
  26. # without haproxy and keepalived, this should be the first IP on your
  27. # 'network_interface' as set in the Networking section below.
  28. kolla_internal_vip_address: "10.10.10.254"
  29.  
  30. # This is the DNS name that maps to the kolla_internal_vip_address VIP. By
  31. # default it is the same as kolla_internal_vip_address.
  32. #kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"
  33.  
  34. # This should be a VIP, an unused IP on your network that will float between
  35. # the hosts running keepalived for high-availability. It defaults to the
  36. # kolla_internal_vip_address, allowing internal and external communication to
  37. # share the same address. Specify a kolla_external_vip_address to separate
  38. # internal and external requests between two VIPs.
  39. #kolla_external_vip_address: "{{ kolla_internal_vip_address }}"
  40.  
  41. # The Public address used to communicate with OpenStack as set in the public_url
  42. # for the endpoints that will be created. This DNS name should map to
  43. # kolla_external_vip_address.
  44. #kolla_external_fqdn: "{{ kolla_external_vip_address }}"
  45.  
  46. ####################
  47. # Docker options
  48. ####################
  49. ### Example: Private repository with authentication
  50.  
  51. #docker_registry: "172.16.0.10:4000"
  52. #docker_namespace: "companyname"
  53. #docker_registry_username: "sam"
  54. #docker_registry_password: "correcthorsebatterystaple"
  55.  
  56.  
  57. ####################
  58. # Networking options
  59. ####################
  60. # This interface is what all your api services will be bound to by default.
  61. # Additionally, all vxlan/tunnel and storage network traffic will go over this
  62. # interface by default. This interface must contain an IPv4 address.
  63. # It is possible for hosts to have non-matching names of interfaces - these can
  64. # be set in an inventory file per host or per group or stored separately, see
  65. # http://docs.ansible.com/ansible/intro_inventory.html
  66. # Yet another way to workaround the naming problem is to create a bond for the
  67. # interface on all hosts and give the bond name here. Similar strategy can be
  68. # followed for other types of interfaces.
  69. #network_interface: "eth0"
  70.  
  71. # These can be adjusted for even more customization. The default is the same as
  72. # the 'network_interface'. These interfaces must contain an IPv4 address.
  73. #kolla_external_vip_interface: "{{ network_interface }}"
  74. #api_interface: "{{ network_interface }}"
  75. #storage_interface: "{{ network_interface }}"
  76. #cluster_interface: "{{ network_interface }}"
  77. #tunnel_interface: "{{ network_interface }}"
  78.  
  79. # This is the raw interface given to neutron as its external network port. Even
  80. # though an IP address can exist on this interface, it will be unusable in most
  81. # configurations. It is recommended this interface not be configured with any IP
  82. # addresses for that reason.
  83. #neutron_external_interface: "eth1"
  84.  
  85. # Valid options are [ openvswitch, linuxbridge ]
  86. #neutron_plugin_agent: "openvswitch"
  87.  
  88.  
  89. ####################
  90. # keepalived options
  91. ####################
  92. # Arbitrary unique number from 0..255
  93. #keepalived_virtual_router_id: "51"
  94.  
  95.  
  96. ####################
  97. # TLS options
  98. ####################
  99. # To provide encryption and authentication on the kolla_external_vip_interface,
  100. # TLS can be enabled. When TLS is enabled, certificates must be provided to
  101. # allow clients to perform authentication.
  102. #kolla_enable_tls_external: "no"
  103. #kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"
  104.  
  105.  
  106. ####################
  107. # OpenStack options
  108. ####################
  109. # Use these options to set the various log levels across all OpenStack projects
  110. # Valid options are [ True, False ]
  111. #openstack_logging_debug: "False"
  112.  
  113. # Valid options are [ novnc, spice ]
  114. #nova_console: "novnc"
  115.  
  116. # OpenStack services can be enabled or disabled with these options
  117. #enable_aodh: "no"
  118. #enable_barbican: "no"
  119. #enable_ceilometer: "no"
  120. #enable_central_logging: "no"
  121. #enable_ceph: "no"
  122. #enable_ceph_rgw: "no"
  123. #enable_cinder: "no"
  124. #enable_cinder_backend_iscsi: "no"
  125. #enable_cinder_backend_lvm: "no"
  126. #enable_cloudkitty: "no"
  127. #enable_congress: "no"
  128. #enable_etcd: "no"
  129. #enable_gnocchi: "no"
  130. #enable_grafana: "no"
  131. enable_heat: "no"
  132. #enable_horizon: "yes"
  133. #enable_influxdb: "no"
  134. #enable_ironic: "no"
  135. #enable_kuryr: "no"
  136. #enable_magnum: "no"
  137. #enable_manila: "no"
  138. #enable_mistral: "no"
  139. #enable_mongodb: "no"
  140. #enable_murano: "no"
  141. #enable_multipathd: "no"
  142. #enable_neutron_dvr: "no"
  143. #enable_neutron_lbaas: "no"
  144. #enable_neutron_qos: "no"
  145. #enable_neutron_agent_ha: "no"
  146. #enable_neutron_vpnaas: "no"
  147. #enable_rally: "no"
  148. #enable_sahara: "no"
  149. #enable_senlin: "no"
  150. #enable_swift: "no"
  151. #enable_telegraf: "no"
  152. #enable_tempest: "no"
  153. #enable_watcher: "no"
  154.  
  155. ###################
  156. # Ceph options
  157. ###################
  158. # Ceph can be setup with a caching to improve performance. To use the cache you
  159. # must provide separate disks than those for the OSDs
  160. #ceph_enable_cache: "no"
  161. # Valid options are [ forward, none, writeback ]
  162. #ceph_cache_mode: "writeback"
  163.  
  164. # A requirement for using the erasure-coded pools is you must setup a cache tier
  165. # Valid options are [ erasure, replicated ]
  166. #ceph_pool_type: "replicated"
  167.  
  168.  
  169. #######################
  170. # Keystone options
  171. #######################
  172.  
  173. # Valid options are [ uuid, fernet ]
  174. #keystone_token_provider: 'uuid'
  175.  
  176. # Interval to rotate fernet keys by (in seconds). Must be an interval of
  177. # 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),
  178. # 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),
  179. # 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),
  180. # 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).
  181. #fernet_token_expiry: 86400
  182.  
  183.  
  184. #######################
  185. # Glance options
  186. #######################
  187. # Configure image backend.
  188. #glance_backend_file: "yes"
  189. #glance_backend_ceph: "no"
  190.  
  191. #######################
  192. # Ceilometer options
  193. #######################
  194. # Valid options are [ mongodb, mysql ]
  195. #ceilometer_database_type: "mongodb"
  196.  
  197. #######################
  198. # Cinder options
  199. #######################
  200. # Enable / disable Cinder backends
  201. #cinder_backend_ceph: "{{ enable_ceph }}"
  202.  
  203. #cinder_volume_group: "cinder-volumes"
  204.  
  205.  
  206. #######################
  207. # Nova options
  208. #######################
  209. #nova_backend_ceph: "{{ enable_ceph }}"
  210.  
  211.  
  212. #######################
  213. # Horizon options
  214. #######################
  215. #horizon_backend_database: "no"
  216.  
  217.  
  218. #######################################
  219. # Manila - Shared File Systems Options
  220. #######################################
  221. # Valid options are [ True, False ]
  222. #driver_handles_share_servers: "True"
  223.  
  224.  
  225. ##################################
  226. # Swift - Object Storage Options
  227. ##################################
  228. # Swift expects block devices to be available for storage. Two types of storage
  229. # are supported: 1 - storage device with a special partition name and filesystem
  230. # label, 2 - unpartitioned disk with a filesystem. The label of this filesystem
  231. # is used to detect the disk which Swift will be using.
  232.  
  233. # Swift support two mathcing modes, valid options are [ prefix, strict ]
  234. #swift_devices_match_mode: "strict"
  235.  
  236. # This parameter defines matching pattern: if "strict" mode was selected,
  237. # for swift_devices_match_mode then swift_device_name should specify the name of
  238. # the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
  239. # selected then swift_devices_name should specify a pattern which would match to
  240. # filesystems' labels prepared for swift.
  241. #swift_devices_name: "KOLLA_SWIFT_DATA"
  242.  
  243.  
  244. ################################################
  245. # Tempest - The OpenStack Integration Test Suite
  246. ################################################
  247. # following value must be set when enable tempest
  248. tempest_image_id:
  249. tempest_flavor_ref_id:
  250. tempest_public_network_id:
  251. tempest_floating_network_name:
  252.  
  253. # tempest_image_alt_id: "{{ tempest_image_id }}"
  254. # tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement