Advertisement
Guest User

new-globals.yml

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