Advertisement
Guest User

Untitled

a guest
Aug 28th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.36 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
  4. # 'kolla-ansible/ansible/group_vars/all.yml' file. Default value of all the
  5. # commented parameters are shown here, To override the default value uncomment
  6. # 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, oraclelinux, ubuntu ]
  15. kolla_base_distro: "ubuntu"
  16.  
  17. # Valid options are [ binary, source ]
  18. #kolla_install_type: "binary"
  19.  
  20. # Valid option is Docker repository tag
  21. openstack_release: "4.0.2"
  22.  
  23. # Location of configuration overrides
  24. #node_custom_config: "/etc/kolla/config"
  25.  
  26. # This should be a VIP, an unused IP on your network that will float between
  27. # the hosts running keepalived for high-availability. When running an All-In-One
  28. # without haproxy and keepalived, this should be the first IP on your
  29. # 'network_interface' as set in the Networking section below.
  30. kolla_internal_vip_address: "<IP>"
  31.  
  32. # This is the DNS name that maps to the kolla_internal_vip_address VIP. By
  33. # default it is the same as kolla_internal_vip_address.
  34. #kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"
  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. # Below is an example of a private repository with authentication. Note the
  52. # Docker registry password can also be set in the passwords.yml file.
  53.  
  54. docker_registry: "<REGISTRY>:5000"
  55. docker_namespace: "kolla"
  56. #docker_registry_username: ""
  57. #docker_registry_password: ""
  58.  
  59.  
  60. ###############################
  61. # Neutron - Networking Options
  62. ###############################
  63. # This interface is what all your api services will be bound to by default.
  64. # Additionally, all vxlan/tunnel and storage network traffic will go over this
  65. # interface by default. This interface must contain an IPv4 address.
  66. # It is possible for hosts to have non-matching names of interfaces - these can
  67. # be set in an inventory file per host or per group or stored separately, see
  68. # http://docs.ansible.com/ansible/intro_inventory.html
  69. # Yet another way to workaround the naming problem is to create a bond for the
  70. # interface on all hosts and give the bond name here. Similar strategy can be
  71. # followed for other types of interfaces.
  72. network_interface: "enp2s0"
  73.  
  74. # These can be adjusted for even more customization. The default is the same as
  75. # the 'network_interface'. These interfaces must contain an IPv4 address.
  76. #kolla_external_vip_interface: "{{ network_interface }}"
  77. #api_interface: "{{ network_interface }}"
  78. #storage_interface: "{{ network_interface }}"
  79. #cluster_interface: "{{ network_interface }}"
  80. #tunnel_interface: "{{ network_interface }}"
  81. #dns_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: "eno1"
  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. ################ubuntu TLS options
  101. ####################
  102. # To provide encryption and authentication on the kolla_external_vip_interface,
  103. # TLS can be enabled. When TLS is enabled, certificates must be provided to
  104. # allow clients to perform authentication.
  105. #kolla_enable_tls_external: "no"
  106. #kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"
  107.  
  108.  
  109. ####################
  110. # OpenStack options
  111. ####################
  112. # Use these options to set the various log levels across all OpenStack projects
  113. # Valid options are [ True, False ]
  114. #openstack_logging_debug: "False"
  115.  
  116. # Valid options are [ novnc, spice ]
  117. nova_console: "novnc"
  118.  
  119. # OpenStack services can be enabled or disabled with these options
  120. #enable_aodh: "no"
  121. #enable_barbican: "no"
  122. #enable_ceilometer: "no"
  123. enable_central_logging: "yes"
  124. #enable_ceph: "no"
  125. #enable_ceph_rgw: "no"
  126. #enable_chrony: "no"
  127. #enable_cinder: "no"
  128. #enable_cinder_backend_hnas_iscsi: "no"
  129. #enable_cinder_backend_hnas_nfs: "no"
  130. #enable_cinder_backend_iscsi: "no"
  131. #enable_cinder_backend_lvm: "no"
  132. #enable_cinder_backend_nfs: "no"
  133. #enable_cloudkitty: "no"
  134. #enable_collectd: "no"
  135. #enable_congress: "no"
  136. #enable_designate: "no"
  137. #enable_destroy_images: "no"
  138. #enable_etcd: "no"
  139. #enable_freezer: "no"
  140. #enable_gnocchi: "no"
  141. enable_grafana: "yes"
  142. enable_heat: "yes"
  143. enable_horizon: "yes"
  144. #enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"
  145. #enable_horizon_freezer: "{{ enable_freezer | bool }}"
  146. #enable_horizon_ironic: "{{ enable_ironic | bool }}"
  147. #enable_horizon_karbor: "{{ enable_karbor | bool }}"
  148. #enable_horizon_magnum: "{{ enable_magnum | bool }}"
  149. #enable_horizon_manila: "{{ enable_manila | bool }}"
  150. #enable_horizon_mistral: "{{ enable_mistral | bool }}"
  151. #enable_horizon_murano: "{{ enable_murano | bool }}"
  152. #enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}"
  153. #enable_horizon_sahara: "{{ enable_sahara | bool }}"
  154. #enable_horizon_searchlight: "{{ enable_searchlight | bool }}"
  155. #enable_horizon_senlin: "{{ enable_senlin | bool }}"
  156. #enable_horizon_solum: "{{ enable_solum | bool }}"
  157. #enable_horizon_tacker: "{{ enable_tacker | bool }}"
  158. #enable_horizon_trove: "{{ enable_trove | bool }}"
  159. #enable_horizon_watcher: "{{ enable_watcher | bool }}"
  160. #enable_influxdb: "no"
  161. #enable_ironic: "no"
  162. #enable_karbor: "no"
  163. #enable_kuryr: "no"
  164. #enable_magnum: "no"
  165. #enable_manila: "no"
  166. #enable_manila_backend_generic: "no"
  167. #enable_manila_backend_hnas: "no"
  168. #enable_mistral: "no"
  169. #enable_mongodb: "no"
  170. #enable_murano: "no"
  171. #enable_multipathd: "no"
  172. #enable_neutron_dvr: "no"
  173. #enable_neutron_lbaas: "no"
  174. #enable_neutron_fwaas: "no"
  175. #enable_neutron_qos: "no"
  176. #enable_neutron_agent_ha: "no"
  177. #enable_neutron_vpnaas: "no"
  178. #enable_nova_serialconsole_proxy: "no"
  179. #enable_octavia: "no"
  180. #enable_panko: "no"
  181. #enable_rally: "no"
  182. #enable_sahara: "no"
  183. #enable_searchlight: "no"
  184. #enable_senlin: "no"
  185. #enable_solum: "no"
  186. #enable_swift: "no"
  187. #enable_telegraf: "no"
  188. #enable_tacker: "no"
  189. #enable_tempest: "no"
  190. #enable_trove: "no"
  191. #enable_vmtp: "no"
  192. #enable_watcher: "no"
  193.  
  194. ###################
  195. # Ceph options
  196. ###################
  197. # Ceph can be setup with a caching to improve performance. To use the cache you
  198. # must provide separate disks than those for the OSDs
  199. #ceph_enable_cache: "no"
  200. # Valid options are [ forward, none, writeback ]
  201. #ceph_cache_mode: "writeback"
  202.  
  203. # A requirement for using the erasure-coded pools is you must setup a cache tier
  204. # Valid options are [ erasure, replicated ]
  205. #ceph_pool_type: "replicated"
  206.  
  207. # Integrate ceph rados object gateway with openstack keystone
  208. #enable_ceph_rgw_keystone: "no"
  209.  
  210.  
  211. ##############################
  212. # Keystone - Identity Options
  213. ##############################
  214.  
  215. # Valid options are [ uuid, fernet ]
  216. #keystone_token_provider: 'uuid'
  217.  
  218. # Interval to rotate fernet keys by (in seconds). Must be an interval of
  219. # 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),
  220. # 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),
  221. # 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),
  222. # 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).
  223. #fernet_token_expiry: 86400
  224.  
  225.  
  226. #########################
  227. # Glance - Image Options
  228. #########################
  229. # Configure image backend.
  230. #glance_backend_file: "yes"
  231. #glance_backend_ceph: "no"
  232.  
  233. #######################
  234. # Ceilometer options
  235. #######################
  236. # Valid options are [ mongodb, mysql, gnocchi ]
  237. #ceilometer_database_type: "mongodb"
  238.  
  239. # Valid options are [ mongodb, gnocchi, panko ]
  240. #ceilometer_event_type: "mongodb"
  241.  
  242.  
  243. #######################
  244. # Barbican options
  245. #######################
  246. # Valid options are [ simple_crypto, p11_crypto ]
  247. #barbican_crypto_plugin: "simple_crypto"
  248. #barbican_library_path: "/usr/lib/libCryptoki2_64.so"
  249.  
  250. #######################
  251. ## Panko options
  252. #######################
  253. # Valid options are [ mongodb, mysql ]
  254. #panko_database_type: "mysql"
  255.  
  256. #######################
  257. # Gnocchi options
  258. #######################
  259. # Valid options are [ file, ceph ]
  260. #gnocchi_backend_storage: "{{ 'ceph' if enable_ceph|bool else 'file' }}"
  261.  
  262.  
  263. #################################
  264. # Cinder - Block Storage Options
  265. #################################
  266. # Enable / disable Cinder backends
  267. #cinder_backend_ceph: "{{ enable_ceph }}"
  268. #cinder_volume_group: "cinder-volumes"
  269. #cinder_backup_driver: "nfs"
  270. #cinder_backup_share: ""
  271. #cinder_backup_mount_options_nfs: ""
  272.  
  273.  
  274. #######################
  275. # Designate options
  276. #######################
  277. # Valid options are [ bind9 ]
  278. designate_backend: "bind9"
  279. designate_ns_record: "sample.openstack.org"
  280.  
  281. #########################
  282. # Nova - Compute Options
  283. #########################
  284. #nova_backend_ceph: "{{ enable_ceph }}"
  285.  
  286.  
  287. ##############################
  288. # Horizon - Dashboard Options
  289. ##############################
  290. #horizon_backend_database: "{{ enable_murano | bool }}"
  291.  
  292.  
  293. #######################################
  294. # Manila - Shared File Systems Options
  295. #######################################
  296. # HNAS backend configuration
  297. #hnas_ip:
  298. #hnas_user:
  299. #hnas_password:
  300. #hnas_evs_id:
  301. #hnas_evs_ip:
  302. #hnas_file_system_name:
  303.  
  304. ##################################
  305. # Swift - Object Storage Options
  306. ##################################
  307. # Swift expects block devices to be available for storage. Two types of storage
  308. # are supported: 1 - storage device with a special partition name and filesystem
  309. # label, 2 - unpartitioned disk with a filesystem. The label of this filesystem
  310. # is used to detect the disk which Swift will be using.
  311.  
  312. # Swift support two mathcing modes, valid options are [ prefix, strict ]
  313. #swift_devices_match_mode: "strict"
  314.  
  315. # This parameter defines matching pattern: if "strict" mode was selected,
  316. # for swift_devices_match_mode then swift_device_name should specify the name of
  317. # the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
  318. # selected then swift_devices_name should specify a pattern which would match to
  319. # filesystems' labels prepared for swift.
  320. #swift_devices_name: "KOLLA_SWIFT_DATA"
  321.  
  322.  
  323. ################################################
  324. # Tempest - The OpenStack Integration Test Suite
  325. ################################################
  326. # following value must be set when enable tempest
  327. tempest_image_id:
  328. tempest_flavor_ref_id:
  329. tempest_public_network_id:
  330. tempest_floating_network_name:
  331.  
  332. # tempest_image_alt_id: "{{ tempest_image_id }}"
  333. # tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement