Advertisement
Guest User

Untitled

a guest
Mar 15th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.10 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', 'debian', 'oraclelinux', 'rhel', 'ubuntu']
  15. kolla_base_distro: "centos"
  16.  
  17. # Valid options are [ binary, source ]
  18. kolla_install_type: "source"
  19.  
  20. # Valid option is Docker repository tag
  21. openstack_release: "queens"
  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. If you want to run an
  28. # All-In-One without haproxy and keepalived, you can set enable_haproxy to no
  29. # in "OpenStack options" section, and set this value to the IP of your
  30. # 'network_interface' as set in the Networking section below.
  31. kolla_internal_vip_address: "172.10.1.250"
  32.  
  33. # This is the DNS name that maps to the kolla_internal_vip_address VIP. By
  34. # default it is the same as kolla_internal_vip_address.
  35. #kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"
  36.  
  37. # This should be a VIP, an unused IP on your network that will float between
  38. # the hosts running keepalived for high-availability. It defaults to the
  39. # kolla_internal_vip_address, allowing internal and external communication to
  40. # share the same address. Specify a kolla_external_vip_address to separate
  41. # internal and external requests between two VIPs.
  42. #kolla_external_vip_address: "{{ kolla_internal_vip_address }}"
  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.  
  49. ################
  50. # Docker options
  51. ################
  52. # Below is an example of a private repository with authentication. Note the
  53. # Docker registry password can also be set in the passwords.yml file.
  54.  
  55. #docker_registry: "172.16.0.10:4000"
  56. #docker_namespace: "companyname"
  57. #docker_registry_username: "sam"
  58. #docker_registry_password: "correcthorsebatterystaple"
  59.  
  60. ###################
  61. # Messaging options
  62. ###################
  63. # Below is an example of an separate backend that provides brokerless
  64. # messaging for oslo.messaging RPC communications
  65.  
  66. #om_rpc_transport: "amqp"
  67. #om_rpc_user: "{{ qdrouterd_user }}"
  68. #om_rpc_password: "{{ qdrouterd_password }}"
  69. #om_rpc_port: "{{ qdrouterd_port }}"
  70. #om_rpc_group: "qdrouterd"
  71.  
  72.  
  73. ##############################
  74. # Neutron - Networking Options
  75. ##############################
  76. # This interface is what all your api services will be bound to by default.
  77. # Additionally, all vxlan/tunnel and storage network traffic will go over this
  78. # interface by default. This interface must contain an IPv4 address.
  79. # It is possible for hosts to have non-matching names of interfaces - these can
  80. # be set in an inventory file per host or per group or stored separately, see
  81. # http://docs.ansible.com/ansible/intro_inventory.html
  82. # Yet another way to workaround the naming problem is to create a bond for the
  83. # interface on all hosts and give the bond name here. Similar strategy can be
  84. # followed for other types of interfaces.
  85. network_interface: "enp0s25"
  86.  
  87. # These can be adjusted for even more customization. The default is the same as
  88. # the 'network_interface'. These interfaces must contain an IPv4 address.
  89. #kolla_external_vip_interface: "{{ network_interface }}"
  90. #api_interface: "{{ network_interface }}"
  91. #storage_interface: "{{ network_interface }}"
  92. #cluster_interface: "{{ network_interface }}"
  93. #tunnel_interface: "{{ network_interface }}"
  94. #dns_interface: "{{ network_interface }}"
  95.  
  96. # This is the raw interface given to neutron as its external network port. Even
  97. # though an IP address can exist on this interface, it will be unusable in most
  98. # configurations. It is recommended this interface not be configured with any IP
  99. # addresses for that reason.
  100. neutron_external_interface: "enp0s25.1"
  101.  
  102. # Valid options are [ openvswitch, linuxbridge, vmware_nsxv, vmware_dvs, opendaylight ]
  103. #neutron_plugin_agent: "openvswitch"
  104.  
  105.  
  106. ####################
  107. # keepalived options
  108. ####################
  109. # Arbitrary unique number from 0..255
  110. #keepalived_virtual_router_id: "51"
  111.  
  112.  
  113. #############
  114. # TLS options
  115. #############
  116. # To provide encryption and authentication on the kolla_external_vip_interface,
  117. # TLS can be enabled. When TLS is enabled, certificates must be provided to
  118. # allow clients to perform authentication.
  119. #kolla_enable_tls_external: "no"
  120. #kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"
  121.  
  122.  
  123. ##############
  124. # OpenDaylight
  125. ##############
  126. #enable_opendaylight_qos: "no"
  127. #enable_opendaylight_l3: "yes"
  128.  
  129. ###################
  130. # OpenStack options
  131. ###################
  132. # Use these options to set the various log levels across all OpenStack projects
  133. # Valid options are [ True, False ]
  134. #openstack_logging_debug: "False"
  135.  
  136. # Valid options are [ none, novnc, spice, rdp ]
  137. #nova_console: "novnc"
  138.  
  139. # OpenStack services can be enabled or disabled with these options
  140. #enable_aodh: "no"
  141. #enable_barbican: "no"
  142. #enable_blazar: "no"
  143. #enable_ceilometer: "no"
  144. #enable_central_logging: "no"
  145. #enable_ceph: "no"
  146. #enable_ceph_mds: "no"
  147. #enable_ceph_rgw: "no"
  148. #enable_ceph_nfs: "no"
  149. #enable_chrony: "no"
  150. #enable_cinder: "no"
  151. #enable_cinder_backup: "yes"
  152. #enable_cinder_backend_hnas_iscsi: "no"
  153. #enable_cinder_backend_hnas_nfs: "no"
  154. #enable_cinder_backend_iscsi: "no"
  155. #enable_cinder_backend_lvm: "no"
  156. #enable_cinder_backend_nfs: "no"
  157. #enable_cloudkitty: "no"
  158. #enable_collectd: "no"
  159. #enable_congress: "no"
  160. #enable_designate: "no"
  161. #enable_destroy_images: "no"
  162. #enable_etcd: "no"
  163. #enable_fluentd: "yes"
  164. #enable_freezer: "no"
  165. #enable_gnocchi: "no"
  166. #enable_grafana: "no"
  167. #enable_haproxy: "yes"
  168. #enable_heat: "yes"
  169. #enable_horizon: "yes"
  170. #enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"
  171. #enable_horizon_designate: "{{ enable_designate | bool }}"
  172. #enable_horizon_freezer: "{{ enable_freezer | bool }}"
  173. #enable_horizon_ironic: "{{ enable_ironic | bool }}"
  174. #enable_horizon_karbor: "{{ enable_karbor | bool }}"
  175. #enable_horizon_magnum: "{{ enable_magnum | bool }}"
  176. #enable_horizon_manila: "{{ enable_manila | bool }}"
  177. #enable_horizon_mistral: "{{ enable_mistral | bool }}"
  178. #enable_horizon_murano: "{{ enable_murano | bool }}"
  179. #enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}"
  180. #enable_horizon_sahara: "{{ enable_sahara | bool }}"
  181. #enable_horizon_searchlight: "{{ enable_searchlight | bool }}"
  182. #enable_horizon_senlin: "{{ enable_senlin | bool }}"
  183. #enable_horizon_solum: "{{ enable_solum | bool }}"
  184. #enable_horizon_tacker: "{{ enable_tacker | bool }}"
  185. #enable_horizon_trove: "{{ enable_trove | bool }}"
  186. #enable_horizon_watcher: "{{ enable_watcher | bool }}"
  187. #enable_horizon_zun: "{{ enable_zun | bool }}"
  188. #enable_hyperv: "no"
  189. #enable_influxdb: "no"
  190. #enable_ironic: "no"
  191. #enable_ironic_pxe_uefi: "no"
  192. #enable_karbor: "no"
  193. #enable_kuryr: "no"
  194. #enable_magnum: "no"
  195. #enable_manila: "no"
  196. #enable_manila_backend_generic: "no"
  197. #enable_manila_backend_hnas: "no"
  198. #enable_manila_backend_cephfs_native: "no"
  199. #enable_manila_backend_cephfs_nfs: "no"
  200. #enable_mistral: "no"
  201. #enable_mongodb: "no"
  202. #enable_murano: "no"
  203. #enable_multipathd: "no"
  204. #enable_neutron_bgp_dragent: "no"
  205. #enable_neutron_dvr: "no"
  206. #enable_neutron_lbaas: "no"
  207. #enable_neutron_fwaas: "no"
  208. #enable_neutron_qos: "no"
  209. #enable_neutron_agent_ha: "no"
  210. #enable_neutron_vpnaas: "no"
  211. #enable_neutron_sriov: "no"
  212. #enable_neutron_sfc: "no"
  213. #enable_nova_fake: "no"
  214. #enable_nova_serialconsole_proxy: "no"
  215. #enable_octavia: "no"
  216. #enable_opendaylight: "no"
  217. #enable_openvswitch: "{{ neutron_plugin_agent != 'linuxbridge' }}"
  218. #enable_ovs_dpdk: "no"
  219. #enable_osprofiler: "no"
  220. #enable_panko: "no"
  221. #enable_qdrouterd: "no"
  222. #enable_rally: "no"
  223. #enable_redis: "no"
  224. #enable_sahara: "no"
  225. #enable_searchlight: "no"
  226. #enable_senlin: "no"
  227. #enable_skydive: "no"
  228. #enable_solum: "no"
  229. #enable_swift: "no"
  230. #enable_telegraf: "no"
  231. #enable_tacker: "no"
  232. #enable_tempest: "no"
  233. #enable_trove: "no"
  234. #enable_vitrage: "no"
  235. #enable_vmtp: "no"
  236. #enable_watcher: "no"
  237. #enable_zun: "no"
  238.  
  239. ##############
  240. # Ceph options
  241. ##############
  242. # Ceph can be setup with a caching to improve performance. To use the cache you
  243. # must provide separate disks than those for the OSDs
  244. #ceph_enable_cache: "no"
  245.  
  246. # Set to no if using external Ceph without cephx.
  247. #external_ceph_cephx_enabled: "yes"
  248.  
  249. # Ceph is not able to determine the size of a cache pool automatically,
  250. # so the configuration on the absolute size is required here, otherwise the flush/evict will not work.
  251. #ceph_target_max_bytes: ""
  252. #ceph_target_max_objects: ""
  253.  
  254. # Valid options are [ forward, none, writeback ]
  255. #ceph_cache_mode: "writeback"
  256.  
  257. # A requirement for using the erasure-coded pools is you must setup a cache tier
  258. # Valid options are [ erasure, replicated ]
  259. #ceph_pool_type: "replicated"
  260.  
  261. # Integrate ceph rados object gateway with openstack keystone
  262. #enable_ceph_rgw_keystone: "no"
  263.  
  264. # Set the pgs and pgps for pool
  265. #ceph_pool_pg_num: 128
  266. #ceph_pool_pgp_num: 128
  267.  
  268. #############################
  269. # Keystone - Identity Options
  270. #############################
  271.  
  272. # Valid options are [ uuid, fernet ]
  273. #keystone_token_provider: 'uuid'
  274.  
  275. # Interval to rotate fernet keys by (in seconds). Must be an interval of
  276. # 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),
  277. # 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),
  278. # 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),
  279. # 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).
  280. #fernet_token_expiry: 86400
  281.  
  282.  
  283. ########################
  284. # Glance - Image Options
  285. ########################
  286. # Configure image backend.
  287. #glance_backend_file: "yes"
  288. #glance_backend_ceph: "no"
  289. #glance_backend_vmware: "no"
  290. #glance_backend_swift: "no"
  291.  
  292.  
  293. ##################
  294. # Barbican options
  295. ##################
  296. # Valid options are [ simple_crypto, p11_crypto ]
  297. #barbican_crypto_plugin: "simple_crypto"
  298. #barbican_library_path: "/usr/lib/libCryptoki2_64.so"
  299.  
  300. ################
  301. ## Panko options
  302. ################
  303. # Valid options are [ mongodb, mysql ]
  304. #panko_database_type: "mysql"
  305.  
  306. #################
  307. # Gnocchi options
  308. #################
  309. # Valid options are [ file, ceph ]
  310. #gnocchi_backend_storage: "{{ 'ceph' if enable_ceph|bool else 'file' }}"
  311.  
  312.  
  313. ################################
  314. # Cinder - Block Storage Options
  315. ################################
  316. # Enable / disable Cinder backends
  317. #cinder_backend_ceph: "{{ enable_ceph }}"
  318. #cinder_backend_vmwarevc_vmdk: "no"
  319. #cinder_volume_group: "cinder-volumes"
  320.  
  321. # Valid options are [ nfs, swift, ceph ]
  322. #cinder_backup_driver: "ceph"
  323. #cinder_backup_share: ""
  324. #cinder_backup_mount_options_nfs: ""
  325.  
  326.  
  327. ###################
  328. # Designate options
  329. ###################
  330. # Valid options are [ bind9 ]
  331. #designate_backend: "bind9"
  332. #designate_ns_record: "sample.openstack.org"
  333.  
  334. ########################
  335. # Nova - Compute Options
  336. ########################
  337. #nova_backend_ceph: "{{ enable_ceph }}"
  338.  
  339. # Valid options are [ qemu, kvm, vmware, xenapi ]
  340. #nova_compute_virt_type: "kvm"
  341.  
  342. # The number of fake driver per compute node
  343. #num_nova_fake_per_node: 5
  344.  
  345. #################
  346. # Hyper-V options
  347. #################
  348. # Hyper-V can be used as hypervisor
  349. #hyperv_username: "user"
  350. #hyperv_password: "password"
  351. #vswitch_name: "vswitch"
  352. # URL from which Nova Hyper-V MSI is downloaded
  353. #nova_msi_url: "https://www.cloudbase.it/downloads/HyperVNovaCompute_Beta.msi"
  354.  
  355. #############################
  356. # Horizon - Dashboard Options
  357. #############################
  358. #horizon_backend_database: "{{ enable_murano | bool }}"
  359.  
  360. #############################
  361. # Ironic options
  362. #############################
  363. #ironic_dnsmasq_dhcp_range:
  364.  
  365. ######################################
  366. # Manila - Shared File Systems Options
  367. ######################################
  368. # HNAS backend configuration
  369. #hnas_ip:
  370. #hnas_user:
  371. #hnas_password:
  372. #hnas_evs_id:
  373. #hnas_evs_ip:
  374. #hnas_file_system_name:
  375.  
  376. ################################
  377. # Swift - Object Storage Options
  378. ################################
  379. # Swift expects block devices to be available for storage. Two types of storage
  380. # are supported: 1 - storage device with a special partition name and filesystem
  381. # label, 2 - unpartitioned disk with a filesystem. The label of this filesystem
  382. # is used to detect the disk which Swift will be using.
  383.  
  384. # Swift support two matching modes, valid options are [ prefix, strict ]
  385. #swift_devices_match_mode: "strict"
  386.  
  387. # This parameter defines matching pattern: if "strict" mode was selected,
  388. # for swift_devices_match_mode then swift_device_name should specify the name of
  389. # the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
  390. # selected then swift_devices_name should specify a pattern which would match to
  391. # filesystems' labels prepared for swift.
  392. #swift_devices_name: "KOLLA_SWIFT_DATA"
  393.  
  394.  
  395. ################################################
  396. # Tempest - The OpenStack Integration Test Suite
  397. ################################################
  398. # following value must be set when enable tempest
  399. tempest_image_id:
  400. tempest_flavor_ref_id:
  401. tempest_public_network_id:
  402. tempest_floating_network_name:
  403.  
  404. # tempest_image_alt_id: "{{ tempest_image_id }}"
  405. # tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
  406.  
  407. ###################################
  408. # VMware - OpenStack VMware support
  409. ###################################
  410. #vmware_vcenter_host_ip:
  411. #vmware_vcenter_host_username:
  412. #vmware_vcenter_host_password:
  413. #vmware_datastore_name:
  414. #vmware_vcenter_name:
  415. #vmware_vcenter_cluster_name:
  416.  
  417. #######################################
  418. # XenAPI - Support XenAPI for XenServer
  419. #######################################
  420. # XenAPI driver use HIMN(Host Internal Management Network)
  421. # to communicate with XenServer host.
  422. #xenserver_himn_ip:
  423. #xenserver_username:
  424. #xenserver_connect_protocol:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement