Advertisement
dcapone2004

Untitled

Aug 7th, 2019
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.64 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: "stein"
  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: "<public IP on part of em1 subnet>"
  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: "em1"
  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. #swift_storage_interface: "{{ storage_interface }}"
  94. #swift_replication_interface: "{{ swift_storage_interface }}"
  95. #tunnel_interface: "{{ network_interface }}"
  96. #dns_interface: "{{ network_interface }}"
  97. #octavia_network_interface: "{{ api_interface }}"
  98.  
  99. # This is the raw interface given to neutron as its external network port. Even
  100. # though an IP address can exist on this interface, it will be unusable in most
  101. # configurations. It is recommended this interface not be configured with any IP
  102. # addresses for that reason.
  103. neutron_external_interface: "em1.300"
  104.  
  105. # Valid options are [ openvswitch, linuxbridge, vmware_nsxv, vmware_nsxv3, vmware_dvs, opendaylight ]
  106. # if vmware_nsxv3 is selected, enable_openvswitch MUST be set to "no" (default is yes)
  107. #neutron_plugin_agent: "openvswitch"
  108.  
  109. # Valid options are [ internal, infoblox ]
  110. #neutron_ipam_driver: "internal"
  111.  
  112. # Configure Neutron upgrade option, currently Kolla support
  113. # two upgrade ways for Neutron: legacy_upgrade and rolling_upgrade
  114. # The variable "neutron_enable_rolling_upgrade: yes" is meaning rolling_upgrade
  115. # were enabled and opposite
  116. # Neutron rolling upgrade were enable by default
  117. #neutron_enable_rolling_upgrade: "yes"
  118.  
  119.  
  120. ####################
  121. # keepalived options
  122. ####################
  123. # Arbitrary unique number from 0..255
  124. #keepalived_virtual_router_id: "51"
  125.  
  126. ###################
  127. # Dimension options
  128. ###################
  129. # This is to provide an extra option to deploy containers with Resource constraints.
  130. # We call it dimensions here.
  131. # The dimensions for each container are defined by a mapping, where each dimension value should be a
  132. # string.
  133. # Reference_Docs
  134. # https://docs.docker.com/config/containers/resource_constraints/
  135. # eg:
  136. # <container_name>_dimensions:
  137. # blkio_weight:
  138. # cpu_period:
  139. # cpu_quota:
  140. # cpu_shares:
  141. # cpuset_cpus:
  142. # cpuset_mems:
  143. # mem_limit:
  144. # mem_reservation:
  145. # memswap_limit:
  146. # kernel_memory:
  147. # ulimits:
  148.  
  149.  
  150. #############
  151. # TLS options
  152. #############
  153. # To provide encryption and authentication on the kolla_external_vip_interface,
  154. # TLS can be enabled. When TLS is enabled, certificates must be provided to
  155. # allow clients to perform authentication.
  156. #kolla_enable_tls_external: "yes"
  157. #kolla_external_fqdn_cert: "/opt/certificates/haproxy.pem"
  158.  
  159. ################
  160. # Region options
  161. ################
  162. # Use this option to change the name of this region.
  163. #openstack_region_name: "RegionOne"
  164.  
  165. # Use this option to define a list of region names - only needs to be configured
  166. # in a multi-region deployment, and then only in the *first* region.
  167. #multiple_regions_names: ["{{ openstack_region_name }}"]
  168.  
  169. ##############
  170. # OpenDaylight
  171. ##############
  172. #enable_opendaylight_qos: "no"
  173. #enable_opendaylight_l3: "yes"
  174.  
  175. ###################
  176. # OpenStack options
  177. ###################
  178. # Use these options to set the various log levels across all OpenStack projects
  179. # Valid options are [ True, False ]
  180. #openstack_logging_debug: "False"
  181.  
  182. # Valid options are [ none, novnc, spice, rdp ]
  183. #nova_console: "novnc"
  184.  
  185. # These roles are required for Kolla to be operation, however a savvy deployer
  186. # could disable some of these required roles and run their own services.
  187. #enable_glance: "{{ enable_openstack_core | bool }}"
  188. #enable_haproxy: "yes"
  189. #enable_keepalived: "{{ enable_haproxy | bool }}"
  190. #enable_keystone: "{{ enable_openstack_core | bool }}"
  191. #enable_mariadb: "yes"
  192. #enable_memcached: "yes"
  193. #enable_neutron: "{{ enable_openstack_core | bool }}"
  194. #enable_nova: "{{ enable_openstack_core | bool }}"
  195. #enable_rabbitmq: "{{ 'yes' if om_rpc_transport == 'rabbit' or om_notify_transport == 'rabbit' else 'no' }}"
  196. #enable_outward_rabbitmq: "{{ enable_murano | bool }}"
  197.  
  198. # OpenStack services can be enabled or disabled with these options
  199. #enable_aodh: "no"
  200. #enable_barbican: "no"
  201. #enable_blazar: "no"
  202. #enable_ceilometer: "no"
  203. #enable_ceilometer_ipmi: "no"
  204. #enable_central_logging: "no"
  205. #enable_ceph: "no"
  206. #enable_ceph_mds: "no"
  207. #enable_ceph_rgw: "no"
  208. #enable_ceph_nfs: "no"
  209. #enable_ceph_dashboard: "{{ enable_ceph | bool }}"
  210. #enable_chrony: "yes"
  211. enable_cinder: "yes"
  212. #enable_cinder_backup: "yes"
  213. #enable_cinder_backend_hnas_iscsi: "no"
  214. #enable_cinder_backend_hnas_nfs: "no"
  215. #enable_cinder_backend_iscsi: "no"
  216. enable_cinder_backend_lvm: "yes"
  217. #enable_cinder_backend_nfs: "no"
  218. #enable_cinder_backend_quobyte: "no"
  219. #enable_cloudkitty: "no"
  220. #enable_collectd: "no"
  221. #enable_congress: "no"
  222. #enable_cyborg: "no"
  223. #enable_designate: "no"
  224. #enable_destroy_images: "no"
  225. #enable_elasticsearch: "{{ 'yes' if enable_central_logging | bool or enable_freezer | bool or enable_osprofiler | bool or enable_skydive | bool or enable_monasca | bool else 'no' }}"
  226. #enable_etcd: "no"
  227. #enable_fluentd: "yes"
  228. #enable_freezer: "no"
  229. #enable_gnocchi: "no"
  230. #enable_grafana: "no"
  231. #enable_heat: "{{ enable_openstack_core | bool }}"
  232. #enable_horizon: "{{ enable_openstack_core | bool }}"
  233. #enable_horizon_blazar: "{{ enable_blazar | bool }}"
  234. #enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"
  235. #enable_horizon_congress: "{{ enable_congress | bool }}"
  236. #enable_horizon_designate: "{{ enable_designate | bool }}"
  237. #enable_horizon_freezer: "{{ enable_freezer | bool }}"
  238. enable_horizon_fwaas: "{{ enable_neutron_fwaas | bool }}"
  239. #enable_horizon_ironic: "{{ enable_ironic | bool }}"
  240. #enable_horizon_karbor: "{{ enable_karbor | bool }}"
  241. #enable_horizon_magnum: "{{ enable_magnum | bool }}"
  242. #enable_horizon_manila: "{{ enable_manila | bool }}"
  243. #enable_horizon_mistral: "{{ enable_mistral | bool }}"
  244. #enable_horizon_murano: "{{ enable_murano | bool }}"
  245. enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}"
  246. enable_horizon_neutron_vpnaas: "{{ enable_neutron_vpnaas | bool }}"
  247. #enable_horizon_octavia: "{{ enable_octavia | bool }}"
  248. #enable_horizon_sahara: "{{ enable_sahara | bool }}"
  249. #enable_horizon_searchlight: "{{ enable_searchlight | bool }}"
  250. #enable_horizon_senlin: "{{ enable_senlin | bool }}"
  251. #enable_horizon_solum: "{{ enable_solum | bool }}"
  252. #enable_horizon_tacker: "{{ enable_tacker | bool }}"
  253. #enable_horizon_trove: "{{ enable_trove | bool }}"
  254. #enable_horizon_watcher: "{{ enable_watcher | bool }}"
  255. #enable_horizon_zun: "{{ enable_zun | bool }}"
  256. #enable_hyperv: "no"
  257. #enable_influxdb: "no"
  258. #enable_ironic: "no"
  259. #enable_ironic_ipxe: "no"
  260. #enable_ironic_neutron_agent: "no"
  261. #enable_ironic_pxe_uefi: "no"
  262. #enable_kafka: "no"
  263. #enable_karbor: "no"
  264. #enable_kuryr: "no"
  265. #enable_magnum: "no"
  266. #enable_manila: "no"
  267. #enable_manila_backend_generic: "no"
  268. #enable_manila_backend_hnas: "no"
  269. #enable_manila_backend_cephfs_native: "no"
  270. #enable_manila_backend_cephfs_nfs: "no"
  271. #enable_mistral: "no"
  272. #enable_monasca: "no"
  273. #enable_mongodb: "no"
  274. #enable_murano: "no"
  275. #enable_multipathd: "no"
  276. #enable_neutron_bgp_dragent: "no"
  277. #enable_neutron_dvr: "no"
  278. #enable_neutron_lbaas: "yes"
  279. #enable_neutron_fwaas: "yes"
  280. #enable_neutron_qos: "no"
  281. #enable_neutron_agent_ha: "no"
  282. enable_neutron_vpnaas: "yes"
  283. #enable_neutron_sriov: "no"
  284. #enable_neutron_sfc: "no"
  285. #enable_neutron_metering: "no"
  286. #enable_nova_fake: "no"
  287. #enable_nova_serialconsole_proxy: "no"
  288. #enable_nova_ssh: "yes"
  289. #enable_octavia: "no"
  290. #enable_onos: "no"
  291. #enable_opendaylight: "no"
  292. #enable_openstack_core: "yes"
  293. #enable_openvswitch: "{{ enable_neutron | bool and neutron_plugin_agent != 'linuxbridge' }}"
  294. #enable_ovs_dpdk: "no"
  295. #enable_osprofiler: "no"
  296. #enable_panko: "no"
  297. #enable_placement: "{{ enable_nova }}"
  298. #enable_prometheus: "no"
  299. #enable_qdrouterd: "no"
  300. #enable_rally: "no"
  301. #enable_redis: "no"
  302. #enable_sahara: "no"
  303. #enable_searchlight: "no"
  304. #enable_senlin: "no"
  305. #enable_skydive: "no"
  306. #enable_solum: "no"
  307. #enable_swift: "no"
  308. #enable_storm: "no"
  309. #enable_telegraf: "no"
  310. #enable_tacker: "no"
  311. #enable_tempest: "no"
  312. #enable_trove: "no"
  313. #enable_trove_singletenant: "no"
  314. #enable_vitrage: "no"
  315. #enable_vmtp: "no"
  316. #enable_watcher: "no"
  317. #enable_xtrabackup: "no"
  318. #enable_zookeeper: "no"
  319. #enable_zun: "no"
  320.  
  321. ##############
  322. # Ceph options
  323. ##############
  324. # Ceph can be setup with a caching to improve performance. To use the cache you
  325. # must provide separate disks than those for the OSDs
  326. #ceph_enable_cache: "no"
  327.  
  328. # Set to no if using external Ceph without cephx.
  329. #external_ceph_cephx_enabled: "yes"
  330.  
  331. # Ceph is not able to determine the size of a cache pool automatically,
  332. # so the configuration on the absolute size is required here, otherwise the flush/evict will not work.
  333. #ceph_target_max_bytes: ""
  334. #ceph_target_max_objects: ""
  335.  
  336. # Valid options are [ forward, none, writeback ]
  337. #ceph_cache_mode: "writeback"
  338.  
  339. # A requirement for using the erasure-coded pools is you must setup a cache tier
  340. # Valid options are [ erasure, replicated ]
  341. #ceph_pool_type: "replicated"
  342.  
  343. # Integrate ceph rados object gateway with openstack keystone
  344. #enable_ceph_rgw_keystone: "no"
  345.  
  346. # Set the pgs and pgps for pool
  347. # WARNING! These values are dependant on the size and shape of your cluster -
  348. # the default values are not suitable for production use. Please refer to the
  349. # Kolla Ceph documentation for more information.
  350. #ceph_pool_pg_num: 8
  351. #ceph_pool_pgp_num: 8
  352.  
  353. #############################
  354. # Keystone - Identity Options
  355. #############################
  356.  
  357. # Valid options are [ fernet ]
  358. #keystone_token_provider: 'fernet'
  359.  
  360. #keystone_admin_user: "admin"
  361.  
  362. #keystone_admin_project: "admin"
  363.  
  364. # Interval to rotate fernet keys by (in seconds). Must be an interval of
  365. # 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),
  366. # 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),
  367. # 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),
  368. # 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).
  369. #fernet_token_expiry: 86400
  370.  
  371.  
  372. ########################
  373. # Glance - Image Options
  374. ########################
  375. # Configure image backend.
  376. #glance_backend_ceph: "no"
  377. #glance_backend_file: "yes"
  378. #glance_backend_swift: "no"
  379. #glance_backend_vmware: "no"
  380. #enable_glance_image_cache: "no"
  381. # Configure glance upgrade option, due to this feature is experimental
  382. # in glance, so default value should be set to "no".
  383. glance_enable_rolling_upgrade: "no"
  384.  
  385. ####################
  386. # Osprofiler options
  387. ####################
  388. # valid values: ["elasticsearch", "redis"]
  389. #osprofiler_backend: "elasticsearch"
  390.  
  391. ##################
  392. # Barbican options
  393. ##################
  394. # Valid options are [ simple_crypto, p11_crypto ]
  395. #barbican_crypto_plugin: "simple_crypto"
  396. #barbican_library_path: "/usr/lib/libCryptoki2_64.so"
  397.  
  398. ################
  399. ## Panko options
  400. ################
  401. # Valid options are [ mongodb, mysql ]
  402. #panko_database_type: "mysql"
  403.  
  404. #################
  405. # Gnocchi options
  406. #################
  407. # Valid options are [ file, ceph ]
  408. #gnocchi_backend_storage: "{{ 'ceph' if enable_ceph|bool else 'file' }}"
  409.  
  410. # Valid options are [redis, '']
  411. #gnocchi_incoming_storage: "{{ 'redis' if enable_redis | bool else '' }}"
  412.  
  413. ################################
  414. # Cinder - Block Storage Options
  415. ################################
  416. # Enable / disable Cinder backends
  417. #cinder_backend_ceph: "{{ enable_ceph }}"
  418. #cinder_backend_vmwarevc_vmdk: "no"
  419. cinder_volume_group: "cinder-volumes"
  420.  
  421. # Valid options are [ nfs, swift, ceph ]
  422. #cinder_backup_driver: "ceph"
  423. #cinder_backup_share: ""
  424. #cinder_backup_mount_options_nfs: ""
  425.  
  426.  
  427. ###################
  428. # Designate options
  429. ###################
  430. # Valid options are [ bind9 ]
  431. #designate_backend: "bind9"
  432. #designate_ns_record: "sample.openstack.org"
  433.  
  434. ########################
  435. # Nova - Compute Options
  436. ########################
  437. #nova_backend_ceph: "{{ enable_ceph }}"
  438.  
  439. # Valid options are [ qemu, kvm, vmware, xenapi ]
  440. #nova_compute_virt_type: "kvm"
  441.  
  442. # The number of fake driver per compute node
  443. #num_nova_fake_per_node: 5
  444.  
  445. # Configure nova upgrade option, due to currently kolla support
  446. # two upgrade ways for nova: legacy_upgrade and rolling_upgrade
  447. # The variable "nova_enable_rolling_upgrade: yes" is meaning
  448. # rolling_upgrade were enabled and opposite
  449. #nova_enable_rolling_upgrade: "yes"
  450.  
  451. # The flag "nova_safety_upgrade" need to be consider when
  452. # "nova_enable_rolling_upgrade" is enabled. The "nova_safety_upgrade"
  453. # controls whether the nova services are all stopped before rolling
  454. # upgrade to the new version, for the safety and availability.
  455. # If "nova_safety_upgrade" is "yes", that will stop all nova services (except
  456. # nova-compute) for no failed API operations before upgrade to the
  457. # new version. And opposite.
  458. #nova_safety_upgrade: "no"
  459.  
  460. #################
  461. # Hyper-V options
  462. #################
  463. # Hyper-V can be used as hypervisor
  464. #hyperv_username: "user"
  465. #hyperv_password: "password"
  466. #vswitch_name: "vswitch"
  467. # URL from which Nova Hyper-V MSI is downloaded
  468. #nova_msi_url: "https://www.cloudbase.it/downloads/HyperVNovaCompute_Beta.msi"
  469.  
  470. #############################
  471. # Horizon - Dashboard Options
  472. #############################
  473. #horizon_backend_database: "{{ enable_murano | bool }}"
  474.  
  475. #############################
  476. # Ironic options
  477. #############################
  478. # dnsmasq bind interface for Ironic Inspector, by default is network_interface
  479. #ironic_dnsmasq_interface: "{{ network_interface }}"
  480. # following value must be set when enable ironic, the value format
  481. # is "192.168.0.10,192.168.0.100".
  482. ironic_dnsmasq_dhcp_range:
  483. # PXE bootloader file for Ironic Inspector, relative to /tftpboot.
  484. #ironic_dnsmasq_boot_file: "pxelinux.0"
  485.  
  486. # Configure ironic upgrade option, due to currently kolla support
  487. # two upgrade ways for ironic: legacy_upgrade and rolling_upgrade
  488. # The variable "ironic_enable_rolling_upgrade: yes" is meaning rolling_upgrade
  489. # were enabled and opposite
  490. # Rolling upgrade were enable by default
  491. #ironic_enable_rolling_upgrade: "yes"
  492.  
  493. # List of extra kernel parameters passed to the kernel used during inspection
  494. #ironic_inspector_kernel_cmdline_extras: []
  495.  
  496. ######################################
  497. # Manila - Shared File Systems Options
  498. ######################################
  499. # HNAS backend configuration
  500. #hnas_ip:
  501. #hnas_user:
  502. #hnas_password:
  503. #hnas_evs_id:
  504. #hnas_evs_ip:
  505. #hnas_file_system_name:
  506.  
  507. ################################
  508. # Swift - Object Storage Options
  509. ################################
  510. # Swift expects block devices to be available for storage. Two types of storage
  511. # are supported: 1 - storage device with a special partition name and filesystem
  512. # label, 2 - unpartitioned disk with a filesystem. The label of this filesystem
  513. # is used to detect the disk which Swift will be using.
  514.  
  515. # Swift support two matching modes, valid options are [ prefix, strict ]
  516. #swift_devices_match_mode: "strict"
  517.  
  518. # This parameter defines matching pattern: if "strict" mode was selected,
  519. # for swift_devices_match_mode then swift_device_name should specify the name of
  520. # the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
  521. # selected then swift_devices_name should specify a pattern which would match to
  522. # filesystems' labels prepared for swift.
  523. #swift_devices_name: "KOLLA_SWIFT_DATA"
  524.  
  525. # Configure swift upgrade option, due to currently kolla support
  526. # two upgrade ways for swift: legacy_upgrade and rolling_upgrade
  527. # The variable "swift_enable_rolling_upgrade: yes" is meaning rolling_upgrade
  528. # were enabled and opposite
  529. # Rolling upgrade were enable by default
  530. #swift_enable_rolling_upgrade: "yes"
  531.  
  532.  
  533. ################################################
  534. # Tempest - The OpenStack Integration Test Suite
  535. ################################################
  536. # following value must be set when enable tempest
  537. tempest_image_id:
  538. tempest_flavor_ref_id:
  539. tempest_public_network_id:
  540. tempest_floating_network_name:
  541.  
  542. # tempest_image_alt_id: "{{ tempest_image_id }}"
  543. # tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
  544.  
  545. ###################################
  546. # VMware - OpenStack VMware support
  547. ###################################
  548. #vmware_vcenter_host_ip:
  549. #vmware_vcenter_host_username:
  550. #vmware_vcenter_host_password:
  551. #vmware_datastore_name:
  552. #vmware_vcenter_name:
  553. #vmware_vcenter_cluster_name:
  554.  
  555. #######################################
  556. # XenAPI - Support XenAPI for XenServer
  557. #######################################
  558. # XenAPI driver use HIMN(Host Internal Management Network)
  559. # to communicate with XenServer host.
  560. #xenserver_himn_ip:
  561. #xenserver_username:
  562. #xenserver_connect_protocol:
  563.  
  564. ############
  565. # Prometheus
  566. ############
  567. #enable_prometheus_haproxy_exporter: "{{ enable_haproxy | bool }}"
  568. #enable_prometheus_mysqld_exporter: "{{ enable_mariadb | bool }}"
  569. #enable_prometheus_node_exporter: "{{ enable_prometheus | bool }}"
  570. #enable_prometheus_cadvisor: "{{ enable_prometheus | bool }}"
  571. #enable_prometheus_memcached: "{{ enable_prometheus | bool }}"
  572. #enable_prometheus_alertmanager: "{{ enable_prometheus | bool }}"
  573. #enable_prometheus_ceph_mgr_exporter: "{{ enable_prometheus | bool and enable_ceph | bool }}"
  574. #enable_prometheus_openstack_exporter: "{{ enable_prometheus | bool }}"
  575. #enable_prometheus_elasticsearch_exporter: "{{ enable_prometheus | bool and enable_elasticsearch | bool }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement