Advertisement
Guest User

globals.yml

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