Advertisement
Guest User

globals.yml

a guest
Aug 29th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.52 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: "ubuntu"
  15.  
  16. # Valid options are [ binary, source ]
  17. #kolla_install_type: "binary"
  18.  
  19. # Valid option is Docker repository tag
  20. openstack_release: "2.0.2"
  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: "10.3.66.1"
  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: "{{ kolla_internal_vip_address }}"
  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: "172.16.0.10: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. network_interface: "eth0"
  62.  
  63. # These can be adjusted for even more customization. The default is the same as
  64. # the 'network_interface'. These interfaces must contain an IPv4 address.
  65. #kolla_external_vip_interface: "{{ network_interface }}"
  66. #api_interface: "{{ network_interface }}"
  67. #storage_interface: "{{ network_interface }}"
  68. #cluster_interface: "{{ network_interface }}"
  69. #tunnel_interface: "{{ network_interface }}"
  70.  
  71. # This is the raw interface given to neutron as its external network port. Even
  72. # though an IP address can exist on this interface, it will be unusable in most
  73. # configurations. It is recommended this interface not be configured with any IP
  74. # addresses for that reason.
  75. neutron_external_interface: "eth0"
  76.  
  77. # Valid options are [ openvswitch, linuxbridge ]
  78. #neutron_plugin_agent: "openvswitch"
  79.  
  80.  
  81. ####################
  82. # keepalived options
  83. ####################
  84. # Arbitrary unique number from 0..255
  85. #keepalived_virtual_router_id: "51"
  86.  
  87.  
  88. ####################
  89. # TLS options
  90. ####################
  91. # To provide encryption and authentication on the kolla_external_vip_interface,
  92. # TLS can be enabled. When TLS is enabled, certificates must be provided to
  93. # allow clients to perform authentication.
  94. #kolla_enable_tls_external: "no"
  95. #kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"
  96.  
  97.  
  98. ####################
  99. # OpenStack options
  100. ####################
  101. # Use these options to set the various log levels across all OpenStack projects
  102. # Valid options are [ True, False ]
  103. openstack_logging_debug: "True"
  104.  
  105. # Valid options are [ novnc, spice ]
  106. #nova_console: "novnc"
  107.  
  108. # Valid options are [ uuid, fernet ]
  109. #keystone_token_provider: 'uuid'
  110. # Interval to rotate fernet keys by (in seconds). Must be an interval of
  111. # 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),
  112. # 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),
  113. # 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),
  114. # 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).
  115. #fernet_token_expiry: 86400
  116.  
  117. # OpenStack services can be enabled or disabled with these options
  118. #enable_ceilometer: "no"
  119. #enable_central_logging: "no"
  120. enable_ceph: "yes"
  121. enable_ceph_rgw: "yes"
  122. #enable_cinder: "no"
  123. #enable_cinder_backend_lvm: "no"
  124. #enable_heat: "yes"
  125. enable_horizon: "yes"
  126. #enable_ironic: "no"
  127. #enable_magnum: "no"
  128. #enable_manila: "no"
  129. #enable_mistral: "no"
  130. #enable_mongodb: "no"
  131. #enable_murano: "no"
  132. #enable_multipathd: "no"
  133. #enable_neutron_lbaas: "no"
  134. #enable_neutron_qos: "no"
  135. #enable_swift: "no"
  136. #enable_tempest: "no"
  137. #enable_watcher: "no"
  138.  
  139.  
  140. ###################
  141. # Ceph options
  142. ###################
  143. # Ceph can be setup with a caching to improve performance. To use the cache you
  144. # must provide separate disks than those for the OSDs
  145. #ceph_enable_cache: "no"
  146. # Valid options are [ forward, none, writeback ]
  147. #ceph_cache_mode: "writeback"
  148.  
  149. # A requirement for using the erasure-coded pools is you must setup a cache tier
  150. # Valid options are [ erasure, replicated ]
  151. #ceph_pool_type: "replicated"
  152.  
  153. #######################
  154. # Glance options
  155. #######################
  156. # Configure image backend.
  157. glance_backend_file: "yes"
  158. #glance_backend_ceph: "no"
  159.  
  160.  
  161. #######################
  162. # Cinder options
  163. #######################
  164. # Enable / disable Cinder backends
  165. #cinder_backend_ceph: "{{ enable_ceph }}"
  166.  
  167. # Cinder's iSCSI backend !!!REQUIRES!!! two parameters:
  168. # 1 - IP address of the server hosting LVM Volume group
  169. # 2 - The name of Volume group which Cinder will use.
  170. #cinder_volume_group:
  171.  
  172.  
  173. #######################
  174. # Nova options
  175. #######################
  176. nova_backend_ceph: "{{ enable_ceph }}"
  177.  
  178.  
  179. #######################################
  180. # Manila - Shared File Systems Options
  181. #######################################
  182. #manila_enable_dhss: "yes"
  183.  
  184.  
  185. ##################################
  186. # Swift - Object Storage Options
  187. ##################################
  188. # Swift expects block devices to be available for storage. Two types of storage
  189. # are supported: 1 - storage device with a special partition name and filesystem
  190. # label, 2 - unpartitioned disk with a filesystem. The label of this filesystem
  191. # is used to detect the disk which Swift will be using.
  192.  
  193. # Swift support two mathcing modes, valid options are [ prefix, strict ]
  194. #swift_devices_match_mode: "strict"
  195.  
  196. # This parameter defines matching pattern: if "strict" mode was selected,
  197. # for swift_devices_match_mode then swift_device_name should specify the name of
  198. # the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
  199. # selected then swift_devices_name should specify a pattern which would match to
  200. # filesystems' labels prepared for swift.
  201. #swift_devices_name: "KOLLA_SWIFT_DATA"
  202.  
  203.  
  204. ################################################
  205. # Tempest - The OpenStack Integration Test Suite
  206. ################################################
  207. # following value must be set when enable tempest
  208. tempest_image_id:
  209. tempest_flavor_ref_id:
  210. tempest_public_network_id:
  211. tempest_floating_network_name:
  212.  
  213. # tempest_image_alt_id: "{{ tempest_image_id }}"
  214. # tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement