ichundu

kolla_globals.yml

Jun 25th, 2020
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 25.30 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', 'rhel', 'ubuntu']
  15. #kolla_base_distro: "centos"
  16. kolla_base_distro: "centos"
  17.  
  18. # Valid options are [ binary, source ]
  19. #kolla_install_type: "binary"
  20. kolla_install_type: "binary"
  21.  
  22. # Valid option is Docker repository tag
  23. #openstack_release: ""
  24. openstack_release: "ussuri"
  25.  
  26. # Docker image tag used by default.
  27. #openstack_tag: "{{ openstack_release ~ openstack_tag_suffix }}"
  28.  
  29. # Suffix applied to openstack_release to generate openstack_tag.
  30. #openstack_tag_suffix: "{{ '' if base_distro != 'centos' or ansible_distribution_major_version == '7' else  '-centos8' }}"
  31. openstack_tag_suffix: ""
  32.  
  33. # Location of configuration overrides
  34. #node_custom_config: "/etc/kolla/config"
  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. If you want to run an
  38. # All-In-One without haproxy and keepalived, you can set enable_haproxy to no
  39. # in "OpenStack options" section, and set this value to the IP of your
  40. # 'network_interface' as set in the Networking section below.
  41. #kolla_internal_vip_address: "10.10.10.254"
  42. kolla_internal_vip_address: "192.168.1.220"
  43.  
  44. # This is the DNS name that maps to the kolla_internal_vip_address VIP. By
  45. # default it is the same as kolla_internal_vip_address.
  46. #kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"
  47.  
  48. # This should be a VIP, an unused IP on your network that will float between
  49. # the hosts running keepalived for high-availability. It defaults to the
  50. # kolla_internal_vip_address, allowing internal and external communication to
  51. # share the same address.  Specify a kolla_external_vip_address to separate
  52. # internal and external requests between two VIPs.
  53. #kolla_external_vip_address: "{{ kolla_internal_vip_address }}"
  54.  
  55. # The Public address used to communicate with OpenStack as set in the public_url
  56. # for the endpoints that will be created. This DNS name should map to
  57. # kolla_external_vip_address.
  58. #kolla_external_fqdn: "{{ kolla_external_vip_address }}"
  59.  
  60. ################
  61. # Docker options
  62. ################
  63.  
  64. # Custom docker registry settings:
  65. #docker_registry:
  66. #docker_registry_insecure: "{{ 'yes' if docker_registry else 'no' }}"
  67. #docker_registry_username:
  68. # docker_registry_password is set in the passwords.yml file.
  69.  
  70. # Namespace of images:
  71. #docker_namespace: "kolla"
  72.  
  73. # Docker client timeout in seconds.
  74. #docker_client_timeout: 120
  75.  
  76. #docker_configure_for_zun: "no"
  77.  
  78. ###################
  79. # Messaging options
  80. ###################
  81. # Below is an example of an separate backend that provides brokerless
  82. # messaging for oslo.messaging RPC communications
  83.  
  84. #om_rpc_transport: "amqp"
  85. #om_rpc_user: "{{ qdrouterd_user }}"
  86. #om_rpc_password: "{{ qdrouterd_password }}"
  87. #om_rpc_port: "{{ qdrouterd_port }}"
  88. #om_rpc_group: "qdrouterd"
  89.  
  90.  
  91. ##############################
  92. # Neutron - Networking Options
  93. ##############################
  94. # This interface is what all your api services will be bound to by default.
  95. # Additionally, all vxlan/tunnel and storage network traffic will go over this
  96. # interface by default. This interface must contain an IP address.
  97. # It is possible for hosts to have non-matching names of interfaces - these can
  98. # be set in an inventory file per host or per group or stored separately, see
  99. #     http://docs.ansible.com/ansible/intro_inventory.html
  100. # Yet another way to workaround the naming problem is to create a bond for the
  101. # interface on all hosts and give the bond name here. Similar strategy can be
  102. # followed for other types of interfaces.
  103. #network_interface: "eth0"
  104. network_interface: "enp3s0f0"
  105.  
  106. # These can be adjusted for even more customization. The default is the same as
  107. # the 'network_interface'. These interfaces must contain an IP address.
  108. #kolla_external_vip_interface: "{{ network_interface }}"
  109. #api_interface: "{{ network_interface }}"
  110. #storage_interface: "{{ network_interface }}"
  111. #cluster_interface: "{{ network_interface }}"
  112. #swift_storage_interface: "{{ storage_interface }}"
  113. #swift_replication_interface: "{{ swift_storage_interface }}"
  114. #tunnel_interface: "{{ network_interface }}"
  115. #dns_interface: "{{ network_interface }}"
  116. #octavia_network_interface: "{{ api_interface }}"
  117.  
  118. # Configure the address family (AF) per network.
  119. # Valid options are [ ipv4, ipv6 ]
  120. #network_address_family: "ipv4"
  121. #api_address_family: "{{ network_address_family }}"
  122. #storage_address_family: "{{ network_address_family }}"
  123. #cluster_address_family: "{{ network_address_family }}"
  124. #swift_storage_address_family: "{{ storage_address_family }}"
  125. #swift_replication_address_family: "{{ swift_storage_address_family }}"
  126. #migration_address_family: "{{ network_address_family }}"
  127. #tunnel_address_family: "{{ network_address_family }}"
  128. #octavia_network_address_family: "{{ api_address_family }}"
  129. #bifrost_network_address_family: "{{ network_address_family }}"
  130. #dns_address_family: "{{ network_address_family }}"
  131.  
  132. # This is the raw interface given to neutron as its external network port. Even
  133. # though an IP address can exist on this interface, it will be unusable in most
  134. # configurations. It is recommended this interface not be configured with any IP
  135. # addresses for that reason.
  136. #neutron_external_interface: "eth1"
  137.  
  138. # Valid options are [ openvswitch, linuxbridge, vmware_nsxv, vmware_nsxv3, vmware_dvs, opendaylight ]
  139. # if vmware_nsxv3 is selected, enable_openvswitch MUST be set to "no" (default is yes)
  140. #neutron_plugin_agent: "openvswitch"
  141.  
  142. # Valid options are [ internal, infoblox ]
  143. #neutron_ipam_driver: "internal"
  144.  
  145. # Configure Neutron upgrade option, currently Kolla support
  146. # two upgrade ways for Neutron: legacy_upgrade and rolling_upgrade
  147. # The variable "neutron_enable_rolling_upgrade: yes" is meaning rolling_upgrade
  148. # were enabled and opposite
  149. # Neutron rolling upgrade were enable by default
  150. #neutron_enable_rolling_upgrade: "yes"
  151.  
  152.  
  153. ####################
  154. # keepalived options
  155. ####################
  156. # Arbitrary unique number from 0..255
  157. # This should be changed from the default in the event of a multi-region deployment
  158. # where the VIPs of different regions reside on a common subnet.
  159. #keepalived_virtual_router_id: "51"
  160.  
  161. ###################
  162. # Dimension options
  163. ###################
  164. # This is to provide an extra option to deploy containers with Resource constraints.
  165. # We call it dimensions here.
  166. # The dimensions for each container are defined by a mapping, where each dimension value should be a
  167. # string.
  168. # Reference_Docs
  169. # https://docs.docker.com/config/containers/resource_constraints/
  170. # eg:
  171. # <container_name>_dimensions:
  172. #    blkio_weight:
  173. #    cpu_period:
  174. #    cpu_quota:
  175. #    cpu_shares:
  176. #    cpuset_cpus:
  177. #    cpuset_mems:
  178. #    mem_limit:
  179. #    mem_reservation:
  180. #    memswap_limit:
  181. #    kernel_memory:
  182. #    ulimits:
  183.  
  184.  
  185. #############
  186. # TLS options
  187. #############
  188. # To provide encryption and authentication on the kolla_external_vip_interface,
  189. # TLS can be enabled.  When TLS is enabled, certificates must be provided to
  190. # allow clients to perform authentication.
  191. #kolla_enable_tls_internal: "no"
  192. #kolla_enable_tls_external: "{{ kolla_enable_tls_internal if kolla_same_external_internal_vip | bool else 'no' }}"
  193. #kolla_external_fqdn_cert: "{{ node_config }}/certificates/haproxy.pem"
  194. #kolla_internal_fqdn_cert: "{{ node_config }}/certificates/haproxy-internal.pem"
  195. #kolla_external_fqdn_cacert: "{{ node_config }}/certificates/haproxy-ca.crt"
  196. #kolla_internal_fqdn_cacert: "{{ node_config }}/certificates/haproxy-ca-internal.crt"
  197.  
  198. ################
  199. # Region options
  200. ################
  201. # Use this option to change the name of this region.
  202. #openstack_region_name: "RegionOne"
  203.  
  204. # Use this option to define a list of region names - only needs to be configured
  205. # in a multi-region deployment, and then only in the *first* region.
  206. #multiple_regions_names: ["{{ openstack_region_name }}"]
  207.  
  208. ##############
  209. # OpenDaylight
  210. ##############
  211. #enable_opendaylight_qos: "no"
  212. #enable_opendaylight_l3: "yes"
  213.  
  214. ###################
  215. # OpenStack options
  216. ###################
  217. # Use these options to set the various log levels across all OpenStack projects
  218. # Valid options are [ True, False ]
  219. #openstack_logging_debug: "False"
  220.  
  221. # Enable core OpenStack services. This includes:
  222. # glance, keystone, neutron, nova, heat, and horizon.
  223. #enable_openstack_core: "yes"
  224.  
  225. # These roles are required for Kolla to be operation, however a savvy deployer
  226. # could disable some of these required roles and run their own services.
  227. #enable_glance: "{{ enable_openstack_core | bool }}"
  228. #enable_haproxy: "yes"
  229. #enable_keepalived: "{{ enable_haproxy | bool }}"
  230. #enable_keystone: "{{ enable_openstack_core | bool }}"
  231. #enable_mariadb: "yes"
  232. #enable_memcached: "yes"
  233. #enable_neutron: "{{ enable_openstack_core | bool }}"
  234. #enable_nova: "{{ enable_openstack_core | bool }}"
  235. #enable_rabbitmq: "{{ 'yes' if om_rpc_transport == 'rabbit' or om_notify_transport == 'rabbit' else 'no' }}"
  236. #enable_outward_rabbitmq: "{{ enable_murano | bool }}"
  237.  
  238. # OpenStack services can be enabled or disabled with these options
  239. #enable_aodh: "no"
  240. #enable_barbican: "no"
  241. enable_barbican: "yes"
  242. #enable_blazar: "no"
  243. # NOTE: This variable has been deprecated and will be removed in the U cycle.
  244. #enable_cadf_notifications: "no"
  245. #enable_ceilometer: "no"
  246. #enable_ceilometer_ipmi: "no"
  247. #enable_cells: "no"
  248. #enable_central_logging: "no"
  249. #enable_ceph: "no"
  250. #enable_ceph_mds: "no"
  251. #enable_ceph_rgw: "no"
  252. #enable_ceph_nfs: "no"
  253. #enable_ceph_dashboard: "{{ enable_ceph | bool }}"
  254. #enable_chrony: "yes"
  255. #enable_cinder: "no"
  256. enable_cinder: "yes"
  257. #enable_cinder_backup: "yes"
  258. #enable_cinder_backend_hnas_nfs: "no"
  259. #enable_cinder_backend_iscsi: "{{ enable_cinder_backend_lvm | bool or enable_cinder_backend_zfssa_iscsi | bool }}"
  260. #enable_cinder_backend_lvm: "no"
  261. enable_cinder_backend_lvm: "yes"
  262. #enable_cinder_backend_nfs: "no"
  263. #enable_cinder_backend_zfssa_iscsi: "no"
  264. #enable_cinder_backend_quobyte: "no"
  265. #enable_cloudkitty: "no"
  266. enable_cloudkitty: "yes"
  267. #enable_collectd: "no"
  268. #enable_congress: "no"
  269. #enable_cyborg: "no"
  270. #enable_designate: "no"
  271. #enable_destroy_images: "no"
  272. #enable_elasticsearch: "{{ 'yes' if enable_central_logging | bool or enable_osprofiler | bool or enable_skydive | bool or enable_monasca | bool else 'no' }}"
  273. #enable_etcd: "no"
  274. #enable_fluentd: "yes"
  275. #enable_freezer: "no"
  276. #enable_gnocchi: "no"
  277. #enable_grafana: "no"
  278. #enable_heat: "{{ enable_openstack_core | bool }}"
  279. #enable_horizon: "{{ enable_openstack_core | bool }}"
  280. #enable_horizon_blazar: "{{ enable_blazar | bool }}"
  281. #enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"
  282. #enable_horizon_congress: "{{ enable_congress | bool }}"
  283. #enable_horizon_designate: "{{ enable_designate | bool }}"
  284. #enable_horizon_fwaas: "{{ enable_neutron_fwaas | bool }}"
  285. #enable_horizon_freezer: "{{ enable_freezer | bool }}"
  286. #enable_horizon_heat: "{{ enable_heat | bool }}"
  287. #enable_horizon_ironic: "{{ enable_ironic | bool }}"
  288. #enable_horizon_karbor: "{{ enable_karbor | bool }}"
  289. #enable_horizon_magnum: "{{ enable_magnum | bool }}"
  290. #enable_horizon_manila: "{{ enable_manila | bool }}"
  291. #enable_horizon_masakari: "{{ enable_masakari | bool }}"
  292. #enable_horizon_mistral: "{{ enable_mistral | bool }}"
  293. #enable_horizon_murano: "{{ enable_murano | bool }}"
  294. #enable_horizon_neutron_vpnaas: "{{ enable_neutron_vpnaas | bool }}"
  295. #enable_horizon_octavia: "{{ enable_octavia | bool }}"
  296. #enable_horizon_qinling: "{{ enable_qinling | bool }}"
  297. #enable_horizon_sahara: "{{ enable_sahara | bool }}"
  298. #enable_horizon_searchlight: "{{ enable_searchlight | bool }}"
  299. #enable_horizon_senlin: "{{ enable_senlin | bool }}"
  300. #enable_horizon_solum: "{{ enable_solum | bool }}"
  301. #enable_horizon_tacker: "{{ enable_tacker | bool }}"
  302. #enable_horizon_trove: "{{ enable_trove | bool }}"
  303. #enable_horizon_vitrage: "{{ enable_vitrage | bool }}"
  304. #enable_horizon_watcher: "{{ enable_watcher | bool }}"
  305. #enable_horizon_zun: "{{ enable_zun | bool }}"
  306. #enable_hyperv: "no"
  307. #enable_influxdb: "{{ enable_monasca | bool or (enable_cloudkitty | bool and cloudkitty_storage_backend == 'influxdb') }}"
  308. #enable_ironic: "no"
  309.  
  310. #enable_ironic_ipxe: "no"
  311. #enable_ironic_neutron_agent: "{{ enable_neutron | bool and enable_ironic | bool }}"
  312. #enable_ironic_pxe_uefi: "no"
  313. #enable_iscsid: "{{ (enable_cinder | bool and enable_cinder_backend_iscsi | bool) or enable_ironic | bool }}"
  314. #enable_karbor: "no"
  315. #enable_kafka: "{{ enable_monasca | bool }}"
  316. #enable_kibana: "{{ 'yes' if enable_central_logging | bool or enable_monasca | bool else 'no' }}"
  317. #enable_kuryr: "no"
  318. #enable_magnum: "no"
  319. #enable_manila: "no"
  320. #enable_manila_backend_generic: "no"
  321. #enable_manila_backend_hnas: "no"
  322. #enable_manila_backend_cephfs_native: "no"
  323. #enable_manila_backend_cephfs_nfs: "no"
  324. #enable_mariabackup: "no"
  325. #enable_masakari: "no"
  326. #enable_mistral: "no"
  327. #enable_monasca: "no"
  328. #enable_mongodb: "no"
  329. #enable_multipathd: "no"
  330. #enable_murano: "no"
  331. enable_murano: "yes"
  332. #enable_neutron_vpnaas: "no"
  333. #enable_neutron_sriov: "no"
  334. #enable_neutron_dvr: "no"
  335. #enable_neutron_fwaas: "no"
  336. #enable_neutron_qos: "no"
  337. #enable_neutron_agent_ha: "no"
  338. #enable_neutron_bgp_dragent: "no"
  339. #enable_neutron_provider_networks: "no"
  340. #enable_neutron_segments: "no"
  341. #enable_neutron_sfc: "no"
  342. #enable_neutron_metering: "no"
  343. #enable_neutron_infoblox_ipam_agent: "no"
  344. #enable_neutron_port_forwarding: "no"
  345. #enable_nova_serialconsole_proxy: "no"
  346. #enable_nova_ssh: "yes"
  347. #enable_octavia: "no"
  348. #enable_onos: "no"
  349. #enable_opendaylight: "no"
  350. #enable_openvswitch: "{{ enable_neutron | bool and neutron_plugin_agent != 'linuxbridge' }}"
  351. #enable_ovs_dpdk: "no"
  352. #enable_osprofiler: "no"
  353. #enable_panko: "no"
  354. #enable_placement: "{{ enable_nova | bool or enable_zun | bool }}"
  355. #enable_prometheus: "no"
  356. #enable_qdrouterd: "{{ 'yes' if om_rpc_transport == 'amqp' else 'no' }}"
  357. #enable_qinling: "no"
  358. #enable_rally: "no"
  359. #enable_redis: "no"
  360. #enable_sahara: "no"
  361. #enable_searchlight: "no"
  362. #enable_senlin: "no"
  363. #enable_skydive: "no"
  364. #enable_solum: "no"
  365. #enable_storm: "{{ enable_monasca | bool }}"
  366. #enable_swift: "no"
  367. enable_swift: "yes"
  368. #enable_swift_s3api: "no"
  369. enable_swift_s3api: "yes"
  370. #enable_tacker: "no"
  371. #enable_telegraf: "no"
  372. #enable_tempest: "no"
  373. #enable_trove: "no"
  374. #enable_trove_singletenant: "no"
  375. #enable_vitrage: "no"
  376. #enable_vmtp: "no"
  377. #enable_watcher: "no"
  378. #enable_zookeeper: "{{ enable_kafka | bool }}"
  379. #enable_zun: "no"
  380.  
  381. ##################
  382. # RabbitMQ options
  383. ##################
  384. # Options passed to RabbitMQ server startup script via the
  385. # RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS environment var.
  386. # See Kolla Ansible docs RabbitMQ section for details.
  387. # These are appended to args already provided by Kolla Ansible
  388. # to configure IPv6 in RabbitMQ server.
  389. #rabbitmq_server_additional_erl_args: ""
  390.  
  391. ##############
  392. # Ceph options
  393. ##############
  394. # Ceph can be setup with a caching to improve performance. To use the cache you
  395. # must provide separate disks than those for the OSDs
  396. #ceph_enable_cache: "no"
  397.  
  398. # Set to no if using external Ceph without cephx.
  399. #external_ceph_cephx_enabled: "yes"
  400.  
  401. # Ceph is not able to determine the size of a cache pool automatically,
  402. # so the configuration on the absolute size is required here, otherwise the flush/evict will not work.
  403. #ceph_target_max_bytes: ""
  404. #ceph_target_max_objects: ""
  405.  
  406. # Valid options are [ forward, none, writeback ]
  407. #ceph_cache_mode: "writeback"
  408.  
  409. # A requirement for using the erasure-coded pools is you must setup a cache tier
  410. # Valid options are [ erasure, replicated ]
  411. #ceph_pool_type: "replicated"
  412.  
  413. # Integrate ceph rados object gateway with openstack keystone
  414. #enable_ceph_rgw_keystone: "no"
  415.  
  416. # Set the pgs and pgps for pool
  417. # WARNING! These values are dependant on the size and shape of your cluster -
  418. # the default values are not suitable for production use. Please refer to the
  419. # Kolla Ceph documentation for more information.
  420. #ceph_pool_pg_num: 8
  421. #ceph_pool_pgp_num: 8
  422.  
  423. #############################
  424. # Keystone - Identity Options
  425. #############################
  426.  
  427. # Valid options are [ fernet ]
  428. #keystone_token_provider: 'fernet'
  429.  
  430. #keystone_admin_user: "admin"
  431.  
  432. #keystone_admin_project: "admin"
  433.  
  434. # Interval to rotate fernet keys by (in seconds). Must be an interval of
  435. # 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),
  436. # 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),
  437. # 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),
  438. # 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).
  439. #fernet_token_expiry: 86400
  440.  
  441.  
  442. ########################
  443. # Glance - Image Options
  444. ########################
  445. # Configure image backend.
  446. #glance_backend_ceph: "no"
  447. #glance_backend_file: "yes"
  448. #glance_backend_swift: "no"
  449. glance_backend_swift: "yes"
  450. #glance_backend_vmware: "no"
  451. #enable_glance_image_cache: "no"
  452. # Configure glance upgrade option.
  453. # Due to this feature being experimental in glance,
  454. # the default value is "no".
  455. #glance_enable_rolling_upgrade: "no"
  456.  
  457. ####################
  458. # Osprofiler options
  459. ####################
  460. # valid values: ["elasticsearch", "redis"]
  461. #osprofiler_backend: "elasticsearch"
  462.  
  463. ##################
  464. # Barbican options
  465. ##################
  466. # Valid options are [ simple_crypto, p11_crypto ]
  467. #barbican_crypto_plugin: "simple_crypto"
  468. #barbican_library_path: "/usr/lib/libCryptoki2_64.so"
  469.  
  470. ################
  471. ## Panko options
  472. ################
  473. # Valid options are [ mongodb, mysql ]
  474. #panko_database_type: "mysql"
  475.  
  476. #################
  477. # Gnocchi options
  478. #################
  479. # Valid options are [ file, ceph ]
  480. #gnocchi_backend_storage: "{{ 'ceph' if enable_ceph|bool else 'file' }}"
  481.  
  482. # Valid options are [redis, '']
  483. #gnocchi_incoming_storage: "{{ 'redis' if enable_redis | bool else '' }}"
  484.  
  485. ################################
  486. # Cinder - Block Storage Options
  487. ################################
  488. # Enable / disable Cinder backends
  489. #cinder_backend_ceph: "{{ enable_ceph }}"
  490. #cinder_backend_vmwarevc_vmdk: "no"
  491. #cinder_volume_group: "cinder-volumes"
  492. # Valid options are [ '', redis, etcd ]
  493. #cinder_coordination_backend: "{{ 'redis' if enable_redis|bool else 'etcd' if enable_etcd|bool else '' }}"
  494.  
  495. # Valid options are [ nfs, swift, ceph ]
  496. #cinder_backup_driver: "ceph"
  497. #cinder_backup_share: ""
  498. #cinder_backup_mount_options_nfs: ""
  499.  
  500. #######################
  501. # Cloudkitty options
  502. #######################
  503. # Valid option is gnocchi
  504. #cloudkitty_collector_backend: "gnocchi"
  505. # Valid options are 'sqlalchemy' or 'influxdb'. The default value is
  506. # 'influxdb', which matches the default in Cloudkitty since the Stein release.
  507. # When the backend is "influxdb", we also enable Influxdb.
  508. # Also, when using 'influxdb' as the backend, we trigger the configuration/use
  509. # of Cloudkitty storage backend version 2.
  510. #cloudkitty_storage_backend: "influxdb"
  511.  
  512. ###################
  513. # Designate options
  514. ###################
  515. # Valid options are [ bind9 ]
  516. #designate_backend: "bind9"
  517. #designate_ns_record: "sample.openstack.org"
  518. # Valid options are [ '', redis ]
  519. #designate_coordination_backend: "{{ 'redis' if enable_redis|bool else '' }}"
  520.  
  521. ########################
  522. # Nova - Compute Options
  523. ########################
  524. #nova_backend_ceph: "{{ enable_ceph }}"
  525.  
  526. # Valid options are [ qemu, kvm, vmware, xenapi ]
  527. #nova_compute_virt_type: "kvm"
  528. nova_compute_virt_type: "kvm"
  529.  
  530. # The number of fake driver per compute node
  531. #num_nova_fake_per_node: 5
  532.  
  533. # The flag "nova_safety_upgrade" need to be consider when
  534. # "nova_enable_rolling_upgrade" is enabled. The "nova_safety_upgrade"
  535. # controls whether the nova services are all stopped before rolling
  536. # upgrade to the new version, for the safety and availability.
  537. # If "nova_safety_upgrade" is "yes", that will stop all nova services (except
  538. # nova-compute) for no failed API operations before upgrade to the
  539. # new version. And opposite.
  540. #nova_safety_upgrade: "no"
  541.  
  542. # Valid options are [ none, novnc, spice, rdp ]
  543. #nova_console: "novnc"
  544.  
  545. #################
  546. # Hyper-V options
  547. #################
  548. # Hyper-V can be used as hypervisor
  549. #hyperv_username: "user"
  550. #hyperv_password: "password"
  551. #vswitch_name: "vswitch"
  552. # URL from which Nova Hyper-V MSI is downloaded
  553. #nova_msi_url: "https://www.cloudbase.it/downloads/HyperVNovaCompute_Beta.msi"
  554.  
  555. #############################
  556. # Horizon - Dashboard Options
  557. #############################
  558. #horizon_backend_database: "{{ enable_murano | bool }}"
  559.  
  560. #############################
  561. # Ironic options
  562. #############################
  563. # dnsmasq bind interface for Ironic Inspector, by default is network_interface
  564. #ironic_dnsmasq_interface: "{{ network_interface }}"
  565. # The following value must be set when enabling ironic,
  566. # the value format is "192.168.0.10,192.168.0.100".
  567. #ironic_dnsmasq_dhcp_range:
  568. # PXE bootloader file for Ironic Inspector, relative to /tftpboot.
  569. #ironic_dnsmasq_boot_file: "pxelinux.0"
  570.  
  571. # Configure ironic upgrade option, due to currently kolla support
  572. # two upgrade ways for ironic: legacy_upgrade and rolling_upgrade
  573. # The variable "ironic_enable_rolling_upgrade: yes" is meaning rolling_upgrade
  574. # were enabled and opposite
  575. # Rolling upgrade were enable by default
  576. #ironic_enable_rolling_upgrade: "yes"
  577.  
  578. # List of extra kernel parameters passed to the kernel used during inspection
  579. #ironic_inspector_kernel_cmdline_extras: []
  580.  
  581. ######################################
  582. # Manila - Shared File Systems Options
  583. ######################################
  584. # HNAS backend configuration
  585. #hnas_ip:
  586. #hnas_user:
  587. #hnas_password:
  588. #hnas_evs_id:
  589. #hnas_evs_ip:
  590. #hnas_file_system_name:
  591.  
  592. ################################
  593. # Swift - Object Storage Options
  594. ################################
  595. # Swift expects block devices to be available for storage. Two types of storage
  596. # are supported: 1 - storage device with a special partition name and filesystem
  597. # label, 2 - unpartitioned disk  with a filesystem. The label of this filesystem
  598. # is used to detect the disk which Swift will be using.
  599.  
  600. # Swift support two matching modes, valid options are [ prefix, strict ]
  601. #swift_devices_match_mode: "strict"
  602.  
  603. # This parameter defines matching pattern: if "strict" mode was selected,
  604. # for swift_devices_match_mode then swift_device_name should specify the name of
  605. # the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
  606. # selected then swift_devices_name should specify a pattern which would match to
  607. # filesystems' labels prepared for swift.
  608. #swift_devices_name: "KOLLA_SWIFT_DATA"
  609.  
  610. # Configure swift upgrade option, due to currently kolla support
  611. # two upgrade ways for swift: legacy_upgrade and rolling_upgrade
  612. # The variable "swift_enable_rolling_upgrade: yes" is meaning rolling_upgrade
  613. # were enabled and opposite
  614. # Rolling upgrade were enable by default
  615. #swift_enable_rolling_upgrade: "yes"
  616.  
  617.  
  618. ################################################
  619. # Tempest - The OpenStack Integration Test Suite
  620. ################################################
  621. # The following values must be set when enabling tempest
  622. #tempest_image_id:
  623. #tempest_flavor_ref_id:
  624. #tempest_public_network_id:
  625. #tempest_floating_network_name:
  626.  
  627. # tempest_image_alt_id: "{{ tempest_image_id }}"
  628. # tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
  629.  
  630. ###################################
  631. # VMware - OpenStack VMware support
  632. ###################################
  633. #vmware_vcenter_host_ip:
  634. #vmware_vcenter_host_username:
  635. #vmware_vcenter_host_password:
  636. #vmware_datastore_name:
  637. #vmware_vcenter_name:
  638. #vmware_vcenter_cluster_name:
  639.  
  640. #######################################
  641. # XenAPI - Support XenAPI for XenServer
  642. #######################################
  643. # XenAPI driver use HIMN(Host Internal Management Network)
  644. # to communicate with XenServer host.
  645. #xenserver_himn_ip:
  646. #xenserver_username:
  647. #xenserver_connect_protocol:
  648.  
  649. ############
  650. # Prometheus
  651. ############
  652. #enable_prometheus_haproxy_exporter: "{{ enable_haproxy | bool }}"
  653. #enable_prometheus_mysqld_exporter: "{{ enable_mariadb | bool }}"
  654. #enable_prometheus_node_exporter: "{{ enable_prometheus | bool }}"
  655. #enable_prometheus_cadvisor: "{{ enable_prometheus | bool }}"
  656. #enable_prometheus_memcached: "{{ enable_prometheus | bool }}"
  657. #enable_prometheus_alertmanager: "{{ enable_prometheus | bool }}"
  658. #enable_prometheus_ceph_mgr_exporter: "{{ enable_prometheus | bool and enable_ceph | bool }}"
  659. #enable_prometheus_openstack_exporter: "{{ enable_prometheus | bool }}"
  660. #enable_prometheus_elasticsearch_exporter: "{{ enable_prometheus | bool and enable_elasticsearch | bool }}"
  661. #enable_prometheus_blackbox_exporter: "{{ enable_prometheus | bool }}"
  662.  
  663. # List of extra parameters passed to prometheus. You can add as many to the list.
  664. #prometheus_cmdline_extras:
  665.  
  666. #########
  667. # Freezer
  668. #########
  669. # Freezer can utilize two different database backends, elasticsearch or mariadb.
  670. # Elasticsearch is preferred, however it is not compatible with the version deployed
  671. # by kolla-ansible. You must first setup an external elasticsearch with 2.3.0.
  672. # By default, kolla-ansible deployed mariadb is the used database backend.
  673. #freezer_database_backend: "mariadb"
  674.  
  675. ##########
  676. # Telegraf
  677. ##########
  678. # Configure telegraf to use the docker daemon itself as an input for
  679. # telemetry data.
  680. #telegraf_enable_docker_input: "no"
Add Comment
Please, Sign In to add comment