Advertisement
Guest User

Untitled

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