2015-06-17 08:11:44 +00:00
|
|
|
---
|
2015-08-18 14:03:44 +00:00
|
|
|
# You can use this file to override _any_ variable throughout Kolla.
|
2017-02-10 12:03:56 +08:00
|
|
|
# Additional options can be found in the
|
2017-02-15 15:47:23 +08:00
|
|
|
# 'kolla-ansible/ansible/group_vars/all.yml' file. Default value of all the
|
2017-02-10 12:03:56 +08:00
|
|
|
# commented parameters are shown here, To override the default value uncomment
|
|
|
|
# the parameter and change its value.
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
###############
|
2015-06-17 08:11:44 +00:00
|
|
|
# Kolla options
|
2017-08-25 13:13:27 +05:30
|
|
|
###############
|
2015-08-27 13:06:35 +00:00
|
|
|
# Valid options are [ COPY_ONCE, COPY_ALWAYS ]
|
2016-03-08 10:33:08 -05:00
|
|
|
#config_strategy: "COPY_ALWAYS"
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2018-01-30 21:51:22 +08:00
|
|
|
# Valid options are ['centos', 'debian', 'oraclelinux', 'rhel', 'ubuntu']
|
2015-08-18 14:03:44 +00:00
|
|
|
#kolla_base_distro: "centos"
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2015-08-18 14:03:44 +00:00
|
|
|
# Valid options are [ binary, source ]
|
|
|
|
#kolla_install_type: "binary"
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2016-04-02 17:00:37 -04:00
|
|
|
# Valid option is Docker repository tag
|
2017-03-08 18:58:35 +00:00
|
|
|
#openstack_release: ""
|
2016-04-02 17:00:37 -04:00
|
|
|
|
2016-10-18 14:26:33 -04:00
|
|
|
# Location of configuration overrides
|
|
|
|
#node_custom_config: "/etc/kolla/config"
|
|
|
|
|
2015-08-18 14:03:44 +00:00
|
|
|
# This should be a VIP, an unused IP on your network that will float between
|
2017-08-25 15:05:37 +08:00
|
|
|
# the hosts running keepalived for high-availability. If you want to run an
|
|
|
|
# All-In-One without haproxy and keepalived, you can set enable_haproxy to no
|
2017-10-27 18:58:28 +08:00
|
|
|
# in "OpenStack options" section, and set this value to the IP of your
|
2015-08-18 14:03:44 +00:00
|
|
|
# 'network_interface' as set in the Networking section below.
|
2016-02-26 01:02:25 +00:00
|
|
|
kolla_internal_vip_address: "10.10.10.254"
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2016-02-26 01:02:25 +00:00
|
|
|
# This is the DNS name that maps to the kolla_internal_vip_address VIP. By
|
|
|
|
# default it is the same as kolla_internal_vip_address.
|
|
|
|
#kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2016-02-18 13:50:39 -05:00
|
|
|
# This should be a VIP, an unused IP on your network that will float between
|
|
|
|
# the hosts running keepalived for high-availability. It defaults to the
|
2016-02-26 01:02:25 +00:00
|
|
|
# kolla_internal_vip_address, allowing internal and external communication to
|
|
|
|
# share the same address. Specify a kolla_external_vip_address to separate
|
|
|
|
# internal and external requests between two VIPs.
|
|
|
|
#kolla_external_vip_address: "{{ kolla_internal_vip_address }}"
|
|
|
|
|
|
|
|
# The Public address used to communicate with OpenStack as set in the public_url
|
|
|
|
# for the endpoints that will be created. This DNS name should map to
|
|
|
|
# kolla_external_vip_address.
|
|
|
|
#kolla_external_fqdn: "{{ kolla_external_vip_address }}"
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
################
|
2015-06-17 08:11:44 +00:00
|
|
|
# Docker options
|
2017-08-25 13:13:27 +05:30
|
|
|
################
|
2016-10-18 14:21:34 -04:00
|
|
|
# Below is an example of a private repository with authentication. Note the
|
|
|
|
# Docker registry password can also be set in the passwords.yml file.
|
2016-03-17 11:43:15 -04:00
|
|
|
|
|
|
|
#docker_registry: "172.16.0.10:4000"
|
|
|
|
#docker_namespace: "companyname"
|
|
|
|
#docker_registry_username: "sam"
|
|
|
|
#docker_registry_password: "correcthorsebatterystaple"
|
2015-08-18 14:03:44 +00:00
|
|
|
|
2017-05-29 18:14:06 -04:00
|
|
|
###################
|
|
|
|
# Messaging options
|
|
|
|
###################
|
|
|
|
# Below is an example of an separate backend that provides brokerless
|
|
|
|
# messaging for oslo.messaging RPC communications
|
|
|
|
|
|
|
|
#om_rpc_transport: "amqp"
|
|
|
|
#om_rpc_user: "{{ qdrouterd_user }}"
|
|
|
|
#om_rpc_password: "{{ qdrouterd_password }}"
|
|
|
|
#om_rpc_port: "{{ qdrouterd_port }}"
|
|
|
|
#om_rpc_group: "qdrouterd"
|
|
|
|
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
##############################
|
2016-10-17 08:51:50 -03:00
|
|
|
# Neutron - Networking Options
|
2017-08-25 13:13:27 +05:30
|
|
|
##############################
|
2015-08-18 14:03:44 +00:00
|
|
|
# This interface is what all your api services will be bound to by default.
|
|
|
|
# Additionally, all vxlan/tunnel and storage network traffic will go over this
|
|
|
|
# interface by default. This interface must contain an IPv4 address.
|
2016-08-11 15:41:29 +00:00
|
|
|
# It is possible for hosts to have non-matching names of interfaces - these can
|
|
|
|
# be set in an inventory file per host or per group or stored separately, see
|
|
|
|
# http://docs.ansible.com/ansible/intro_inventory.html
|
|
|
|
# Yet another way to workaround the naming problem is to create a bond for the
|
|
|
|
# interface on all hosts and give the bond name here. Similar strategy can be
|
|
|
|
# followed for other types of interfaces.
|
|
|
|
#network_interface: "eth0"
|
2015-07-30 16:09:53 +00:00
|
|
|
|
2015-08-18 14:03:44 +00:00
|
|
|
# These can be adjusted for even more customization. The default is the same as
|
2016-06-17 14:47:11 +08:00
|
|
|
# the 'network_interface'. These interfaces must contain an IPv4 address.
|
2016-02-18 13:50:39 -05:00
|
|
|
#kolla_external_vip_interface: "{{ network_interface }}"
|
2015-08-18 14:03:44 +00:00
|
|
|
#api_interface: "{{ network_interface }}"
|
|
|
|
#storage_interface: "{{ network_interface }}"
|
2016-05-16 11:38:46 +08:00
|
|
|
#cluster_interface: "{{ network_interface }}"
|
2015-08-18 14:03:44 +00:00
|
|
|
#tunnel_interface: "{{ network_interface }}"
|
2017-01-23 17:01:02 +00:00
|
|
|
#dns_interface: "{{ network_interface }}"
|
2015-07-30 16:09:53 +00:00
|
|
|
|
2015-08-18 14:03:44 +00:00
|
|
|
# This is the raw interface given to neutron as its external network port. Even
|
|
|
|
# though an IP address can exist on this interface, it will be unusable in most
|
|
|
|
# configurations. It is recommended this interface not be configured with any IP
|
|
|
|
# addresses for that reason.
|
2016-08-11 15:41:29 +00:00
|
|
|
#neutron_external_interface: "eth1"
|
2015-07-05 11:42:49 +00:00
|
|
|
|
2018-05-07 05:46:38 -07:00
|
|
|
# Valid options are [ openvswitch, linuxbridge, vmware_nsxv, vmware_nsxv3, vmware_dvs, opendaylight ]
|
|
|
|
# if vmware_nsxv3 is selected, enable_openvswitch MUST be set to "no" (default is yes)
|
2015-08-27 15:57:55 +00:00
|
|
|
#neutron_plugin_agent: "openvswitch"
|
|
|
|
|
2018-03-21 11:39:26 -04:00
|
|
|
# Valid options are [ internal, infoblox ]
|
|
|
|
#neutron_ipam_driver: "internal"
|
|
|
|
|
2015-06-17 08:11:44 +00:00
|
|
|
|
2016-03-31 15:32:00 -03:00
|
|
|
####################
|
|
|
|
# keepalived options
|
|
|
|
####################
|
2016-07-14 20:10:09 +08:00
|
|
|
# Arbitrary unique number from 0..255
|
2016-03-31 15:32:00 -03:00
|
|
|
#keepalived_virtual_router_id: "51"
|
|
|
|
|
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
#############
|
2016-02-29 13:51:11 -05:00
|
|
|
# TLS options
|
2017-08-25 13:13:27 +05:30
|
|
|
#############
|
2016-02-29 13:51:11 -05:00
|
|
|
# To provide encryption and authentication on the kolla_external_vip_interface,
|
|
|
|
# TLS can be enabled. When TLS is enabled, certificates must be provided to
|
2016-03-18 10:26:59 +05:30
|
|
|
# allow clients to perform authentication.
|
|
|
|
#kolla_enable_tls_external: "no"
|
2016-03-17 11:43:15 -04:00
|
|
|
#kolla_external_fqdn_cert: "{{ node_config_directory }}/certificates/haproxy.pem"
|
2016-02-29 13:51:11 -05:00
|
|
|
|
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
##############
|
2017-01-04 16:58:48 -08:00
|
|
|
# OpenDaylight
|
2017-08-25 13:13:27 +05:30
|
|
|
##############
|
2017-01-04 16:58:48 -08:00
|
|
|
#enable_opendaylight_qos: "no"
|
|
|
|
#enable_opendaylight_l3: "yes"
|
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
###################
|
2015-08-18 14:03:44 +00:00
|
|
|
# OpenStack options
|
2017-08-25 13:13:27 +05:30
|
|
|
###################
|
2015-08-18 14:03:44 +00:00
|
|
|
# Use these options to set the various log levels across all OpenStack projects
|
2016-03-18 10:26:59 +05:30
|
|
|
# Valid options are [ True, False ]
|
2015-08-18 14:03:44 +00:00
|
|
|
#openstack_logging_debug: "False"
|
2015-08-04 07:39:22 +00:00
|
|
|
|
2017-12-18 10:31:54 +01:00
|
|
|
# Valid options are [ none, novnc, spice, rdp ]
|
2015-10-18 07:55:34 +00:00
|
|
|
#nova_console: "novnc"
|
|
|
|
|
2015-08-18 14:03:44 +00:00
|
|
|
# OpenStack services can be enabled or disabled with these options
|
2016-09-19 16:06:14 +05:30
|
|
|
#enable_aodh: "no"
|
2016-08-08 16:48:11 +00:00
|
|
|
#enable_barbican: "no"
|
2017-04-07 16:01:07 +01:00
|
|
|
#enable_blazar: "no"
|
2016-03-29 13:25:43 -04:00
|
|
|
#enable_ceilometer: "no"
|
2016-03-28 10:55:26 +05:30
|
|
|
#enable_central_logging: "no"
|
|
|
|
#enable_ceph: "no"
|
2017-09-29 00:01:03 +08:00
|
|
|
#enable_ceph_mds: "no"
|
2016-03-28 10:55:26 +05:30
|
|
|
#enable_ceph_rgw: "no"
|
2017-12-14 15:52:09 +08:00
|
|
|
#enable_ceph_nfs: "no"
|
2018-03-20 10:52:44 +08:00
|
|
|
#enable_ceph_dashboard: "{{ enable_ceph | bool }}"
|
2016-10-24 15:16:24 +02:00
|
|
|
#enable_chrony: "no"
|
2016-03-18 10:26:59 +05:30
|
|
|
#enable_cinder: "no"
|
2017-05-15 14:51:56 +03:00
|
|
|
#enable_cinder_backup: "yes"
|
2016-12-12 15:41:22 -03:00
|
|
|
#enable_cinder_backend_hnas_iscsi: "no"
|
2017-01-05 13:56:39 -03:00
|
|
|
#enable_cinder_backend_hnas_nfs: "no"
|
2016-08-17 18:07:10 +03:00
|
|
|
#enable_cinder_backend_iscsi: "no"
|
2016-07-23 22:48:54 +08:00
|
|
|
#enable_cinder_backend_lvm: "no"
|
2016-11-11 13:06:20 -05:00
|
|
|
#enable_cinder_backend_nfs: "no"
|
2016-08-01 02:27:39 +02:00
|
|
|
#enable_cloudkitty: "no"
|
2017-02-15 15:47:23 +08:00
|
|
|
#enable_collectd: "no"
|
2016-08-17 10:09:42 +00:00
|
|
|
#enable_congress: "no"
|
2016-08-10 15:48:32 +10:00
|
|
|
#enable_designate: "no"
|
2016-11-15 17:54:06 +08:00
|
|
|
#enable_destroy_images: "no"
|
2018-04-24 14:08:28 +08:00
|
|
|
#enable_elasticsearch: "{{ 'yes' if enable_central_logging | bool or enable_freezer | bool or enable_osprofiler | bool or enable_skydive | bool else 'no' }}"
|
2016-09-19 16:06:14 +05:30
|
|
|
#enable_etcd: "no"
|
2017-09-05 00:27:19 +00:00
|
|
|
#enable_fluentd: "yes"
|
2017-01-19 18:42:12 +08:00
|
|
|
#enable_freezer: "no"
|
2016-09-19 16:06:14 +05:30
|
|
|
#enable_gnocchi: "no"
|
2016-07-27 07:02:04 +00:00
|
|
|
#enable_grafana: "no"
|
2017-08-25 15:05:37 +08:00
|
|
|
#enable_haproxy: "yes"
|
2016-03-18 10:26:59 +05:30
|
|
|
#enable_heat: "yes"
|
2016-03-28 10:55:26 +05:30
|
|
|
#enable_horizon: "yes"
|
2018-04-19 22:27:30 +08:00
|
|
|
#enable_horizon_blazar: "{{ enable_blazar | bool }}"
|
2016-12-21 16:12:25 +08:00
|
|
|
#enable_horizon_cloudkitty: "{{ enable_cloudkitty | bool }}"
|
2018-04-20 10:10:33 +08:00
|
|
|
#enable_horizon_congress: "{{ enable_congress | bool }}"
|
2017-06-27 14:38:13 +01:00
|
|
|
#enable_horizon_designate: "{{ enable_designate | bool }}"
|
2017-02-05 21:24:34 +08:00
|
|
|
#enable_horizon_freezer: "{{ enable_freezer | bool }}"
|
2016-12-21 16:12:25 +08:00
|
|
|
#enable_horizon_ironic: "{{ enable_ironic | bool }}"
|
2017-01-21 10:42:37 +08:00
|
|
|
#enable_horizon_karbor: "{{ enable_karbor | bool }}"
|
2016-12-21 16:12:25 +08:00
|
|
|
#enable_horizon_magnum: "{{ enable_magnum | bool }}"
|
|
|
|
#enable_horizon_manila: "{{ enable_manila | bool }}"
|
|
|
|
#enable_horizon_mistral: "{{ enable_mistral | bool }}"
|
2016-11-05 02:28:02 +08:00
|
|
|
#enable_horizon_murano: "{{ enable_murano | bool }}"
|
2016-12-21 16:12:25 +08:00
|
|
|
#enable_horizon_neutron_lbaas: "{{ enable_neutron_lbaas | bool }}"
|
2018-06-11 08:16:26 -04:00
|
|
|
#enable_horizon_neutron_vpnaas: "{{ enable_neutron_vpnaas | bool }}"
|
2018-03-30 15:57:19 +01:00
|
|
|
#enable_horizon_octavia: "{{ enable_octavia | bool }}"
|
2016-12-21 16:12:25 +08:00
|
|
|
#enable_horizon_sahara: "{{ enable_sahara | bool }}"
|
|
|
|
#enable_horizon_searchlight: "{{ enable_searchlight | bool }}"
|
|
|
|
#enable_horizon_senlin: "{{ enable_senlin | bool }}"
|
|
|
|
#enable_horizon_solum: "{{ enable_solum | bool }}"
|
2017-01-19 04:30:56 -05:00
|
|
|
#enable_horizon_tacker: "{{ enable_tacker | bool }}"
|
2016-12-21 16:12:25 +08:00
|
|
|
#enable_horizon_trove: "{{ enable_trove | bool }}"
|
|
|
|
#enable_horizon_watcher: "{{ enable_watcher | bool }}"
|
2017-03-31 09:28:00 +08:00
|
|
|
#enable_horizon_zun: "{{ enable_zun | bool }}"
|
2017-05-30 14:16:34 +03:00
|
|
|
#enable_hyperv: "no"
|
2016-07-27 06:23:29 +00:00
|
|
|
#enable_influxdb: "no"
|
2016-03-28 10:55:26 +05:30
|
|
|
#enable_ironic: "no"
|
2017-11-13 10:39:04 +08:00
|
|
|
#enable_ironic_pxe_uefi: "no"
|
2018-02-26 12:02:19 +00:00
|
|
|
#enable_kafka: "no"
|
2016-11-25 06:21:35 +08:00
|
|
|
#enable_karbor: "no"
|
2016-03-29 13:25:43 -04:00
|
|
|
#enable_kuryr: "no"
|
2015-10-17 18:13:51 +02:00
|
|
|
#enable_magnum: "no"
|
2016-03-28 10:55:26 +05:30
|
|
|
#enable_manila: "no"
|
2016-10-10 13:21:04 -03:00
|
|
|
#enable_manila_backend_generic: "no"
|
|
|
|
#enable_manila_backend_hnas: "no"
|
2017-12-11 17:08:18 +08:00
|
|
|
#enable_manila_backend_cephfs_native: "no"
|
|
|
|
#enable_manila_backend_cephfs_nfs: "no"
|
2016-03-28 10:55:26 +05:30
|
|
|
#enable_mistral: "no"
|
2018-03-28 17:54:19 +01:00
|
|
|
#enable_monasca: "no"
|
2016-03-28 10:55:26 +05:30
|
|
|
#enable_mongodb: "no"
|
|
|
|
#enable_murano: "no"
|
2016-07-08 13:34:04 -03:00
|
|
|
#enable_multipathd: "no"
|
2017-03-07 16:39:59 +00:00
|
|
|
#enable_neutron_bgp_dragent: "no"
|
2016-08-17 15:12:48 +00:00
|
|
|
#enable_neutron_dvr: "no"
|
2016-05-10 20:26:58 +00:00
|
|
|
#enable_neutron_lbaas: "no"
|
2016-11-16 12:56:41 +00:00
|
|
|
#enable_neutron_fwaas: "no"
|
2016-06-16 12:55:55 +02:00
|
|
|
#enable_neutron_qos: "no"
|
2016-08-08 09:17:10 +08:00
|
|
|
#enable_neutron_agent_ha: "no"
|
2016-06-29 15:34:18 +02:00
|
|
|
#enable_neutron_vpnaas: "no"
|
2017-07-26 15:00:20 -07:00
|
|
|
#enable_neutron_sriov: "no"
|
2017-05-02 11:03:52 +02:00
|
|
|
#enable_neutron_sfc: "no"
|
2017-10-03 20:38:47 +08:00
|
|
|
#enable_nova_fake: "no"
|
2016-08-22 22:21:25 +02:00
|
|
|
#enable_nova_serialconsole_proxy: "no"
|
2016-12-13 21:57:03 +08:00
|
|
|
#enable_octavia: "no"
|
2017-01-04 16:58:48 -08:00
|
|
|
#enable_opendaylight: "no"
|
2017-07-04 17:12:10 +02:00
|
|
|
#enable_openvswitch: "{{ neutron_plugin_agent != 'linuxbridge' }}"
|
2017-04-06 13:21:09 +00:00
|
|
|
#enable_ovs_dpdk: "no"
|
2017-04-10 15:31:41 +01:00
|
|
|
#enable_osprofiler: "no"
|
2017-01-24 13:58:22 +08:00
|
|
|
#enable_panko: "no"
|
2017-07-17 15:59:05 +00:00
|
|
|
#enable_prometheus: "no"
|
2017-05-31 08:50:54 -04:00
|
|
|
#enable_qdrouterd: "no"
|
2016-08-31 07:46:41 +00:00
|
|
|
#enable_rally: "no"
|
2017-07-21 07:08:54 +00:00
|
|
|
#enable_redis: "no"
|
2016-09-19 16:06:14 +05:30
|
|
|
#enable_sahara: "no"
|
2016-10-18 16:36:05 +08:00
|
|
|
#enable_searchlight: "no"
|
2016-07-08 19:12:50 +02:00
|
|
|
#enable_senlin: "no"
|
2017-04-28 12:21:50 +02:00
|
|
|
#enable_skydive: "no"
|
2016-11-25 06:14:51 +08:00
|
|
|
#enable_solum: "no"
|
2016-03-18 10:26:59 +05:30
|
|
|
#enable_swift: "no"
|
2016-07-23 17:34:03 +00:00
|
|
|
#enable_telegraf: "no"
|
2016-11-15 18:51:52 +00:00
|
|
|
#enable_tacker: "no"
|
2016-05-26 20:58:03 +08:00
|
|
|
#enable_tempest: "no"
|
2017-01-23 17:23:57 +08:00
|
|
|
#enable_trove: "no"
|
2018-01-17 11:15:20 -05:00
|
|
|
#enable_trove_singletenant: "no"
|
2017-02-11 17:01:19 +00:00
|
|
|
#enable_vitrage: "no"
|
2017-01-24 13:58:22 +08:00
|
|
|
#enable_vmtp: "no"
|
2016-07-05 09:58:29 +01:00
|
|
|
#enable_watcher: "no"
|
2018-02-23 17:36:27 +00:00
|
|
|
#enable_zookeeper: "no"
|
2017-01-03 08:45:53 +00:00
|
|
|
#enable_zun: "no"
|
2015-10-18 19:38:42 +00:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
##############
|
2015-10-18 19:38:42 +00:00
|
|
|
# Ceph options
|
2017-08-25 13:13:27 +05:30
|
|
|
##############
|
2015-10-18 20:34:17 +00:00
|
|
|
# Ceph can be setup with a caching to improve performance. To use the cache you
|
2015-10-20 17:21:14 +08:00
|
|
|
# must provide separate disks than those for the OSDs
|
2016-03-18 09:42:53 +05:30
|
|
|
#ceph_enable_cache: "no"
|
2017-04-01 18:00:23 +08:00
|
|
|
|
2017-04-20 15:29:00 +08:00
|
|
|
# Set to no if using external Ceph without cephx.
|
|
|
|
#external_ceph_cephx_enabled: "yes"
|
|
|
|
|
2017-04-01 18:00:23 +08:00
|
|
|
# Ceph is not able to determine the size of a cache pool automatically,
|
|
|
|
# so the configuration on the absolute size is required here, otherwise the flush/evict will not work.
|
|
|
|
#ceph_target_max_bytes: ""
|
|
|
|
#ceph_target_max_objects: ""
|
|
|
|
|
2015-10-18 20:34:17 +00:00
|
|
|
# Valid options are [ forward, none, writeback ]
|
2016-03-17 11:43:15 -04:00
|
|
|
#ceph_cache_mode: "writeback"
|
2015-10-18 20:34:17 +00:00
|
|
|
|
2015-10-18 19:38:42 +00:00
|
|
|
# A requirement for using the erasure-coded pools is you must setup a cache tier
|
|
|
|
# Valid options are [ erasure, replicated ]
|
2016-03-17 11:43:15 -04:00
|
|
|
#ceph_pool_type: "replicated"
|
2016-03-01 10:46:48 -05:00
|
|
|
|
2016-12-05 21:50:33 +08:00
|
|
|
# Integrate ceph rados object gateway with openstack keystone
|
|
|
|
#enable_ceph_rgw_keystone: "no"
|
|
|
|
|
2017-09-15 23:24:43 +08:00
|
|
|
# Set the pgs and pgps for pool
|
2018-04-24 14:07:25 +01:00
|
|
|
# WARNING! These values are dependant on the size and shape of your cluster -
|
|
|
|
# the default values are not suitable for production use. Please refer to the
|
|
|
|
# Kolla Ceph documentation for more information.
|
|
|
|
#ceph_pool_pg_num: 8
|
|
|
|
#ceph_pool_pgp_num: 8
|
2016-09-06 10:52:48 +02:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
#############################
|
2016-10-17 08:51:50 -03:00
|
|
|
# Keystone - Identity Options
|
2017-08-25 13:13:27 +05:30
|
|
|
#############################
|
2016-09-06 10:52:48 +02:00
|
|
|
|
2018-05-04 11:01:33 +07:00
|
|
|
# Valid options are [ fernet ]
|
|
|
|
#keystone_token_provider: 'fernet'
|
2016-09-06 10:52:48 +02:00
|
|
|
|
|
|
|
# Interval to rotate fernet keys by (in seconds). Must be an interval of
|
|
|
|
# 60(1 min), 120(2 min), 180(3 min), 240(4 min), 300(5 min), 360(6 min),
|
|
|
|
# 600(10 min), 720(12 min), 900(15 min), 1200(20 min), 1800(30 min),
|
|
|
|
# 3600(1 hour), 7200(2 hour), 10800(3 hour), 14400(4 hour), 21600(6 hour),
|
|
|
|
# 28800(8 hour), 43200(12 hour), 86400(1 day), 604800(1 week).
|
|
|
|
#fernet_token_expiry: 86400
|
|
|
|
|
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
########################
|
2016-10-17 08:51:50 -03:00
|
|
|
# Glance - Image Options
|
2017-08-25 13:13:27 +05:30
|
|
|
########################
|
2016-09-06 08:08:32 -04:00
|
|
|
# Configure image backend.
|
2017-04-06 14:36:14 +00:00
|
|
|
#glance_backend_ceph: "no"
|
2018-04-01 18:11:14 +08:00
|
|
|
#glance_backend_file: "yes"
|
2017-07-12 09:42:34 +08:00
|
|
|
#glance_backend_swift: "no"
|
2018-04-01 18:11:14 +08:00
|
|
|
#glance_backend_vmware: "no"
|
2018-01-16 11:14:54 +07:00
|
|
|
# Configure glance upgrade option, due to this feature is experimental
|
|
|
|
# in glance, so default value should be set to "no".
|
|
|
|
glance_enable_rolling_upgrade: "no"
|
2016-07-24 07:04:02 +00:00
|
|
|
|
2018-04-24 14:08:28 +08:00
|
|
|
####################
|
|
|
|
# Osprofiler options
|
|
|
|
####################
|
|
|
|
# valid values: ["elasticsearch", "redis"]
|
|
|
|
#osprofiler_backend: "elasticsearch"
|
2017-03-11 15:29:45 +08:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
##################
|
2017-03-11 15:29:45 +08:00
|
|
|
# Barbican options
|
2017-08-25 13:13:27 +05:30
|
|
|
##################
|
2017-03-11 15:29:45 +08:00
|
|
|
# Valid options are [ simple_crypto, p11_crypto ]
|
|
|
|
#barbican_crypto_plugin: "simple_crypto"
|
|
|
|
#barbican_library_path: "/usr/lib/libCryptoki2_64.so"
|
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
################
|
2016-11-07 07:32:04 +00:00
|
|
|
## Panko options
|
2017-08-25 13:13:27 +05:30
|
|
|
################
|
2016-11-07 07:32:04 +00:00
|
|
|
# Valid options are [ mongodb, mysql ]
|
|
|
|
#panko_database_type: "mysql"
|
2016-09-22 00:17:47 +08:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
#################
|
2016-09-22 00:17:47 +08:00
|
|
|
# Gnocchi options
|
2017-08-25 13:13:27 +05:30
|
|
|
#################
|
2016-09-22 00:17:47 +08:00
|
|
|
# Valid options are [ file, ceph ]
|
|
|
|
#gnocchi_backend_storage: "{{ 'ceph' if enable_ceph|bool else 'file' }}"
|
|
|
|
|
2018-01-25 15:09:22 +08:00
|
|
|
# Valid options are [redis, '']
|
|
|
|
#gnocchi_incoming_storage: "{{ 'redis' if enable_redis | bool else '' }}"
|
2016-09-22 00:17:47 +08:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
################################
|
2016-10-17 08:51:50 -03:00
|
|
|
# Cinder - Block Storage Options
|
2017-08-25 13:13:27 +05:30
|
|
|
################################
|
2016-07-18 10:39:09 +00:00
|
|
|
# Enable / disable Cinder backends
|
2016-07-23 22:48:54 +08:00
|
|
|
#cinder_backend_ceph: "{{ enable_ceph }}"
|
2017-07-11 09:49:37 +08:00
|
|
|
#cinder_backend_vmwarevc_vmdk: "no"
|
2016-08-11 15:18:01 +00:00
|
|
|
#cinder_volume_group: "cinder-volumes"
|
2017-05-15 14:51:56 +03:00
|
|
|
|
|
|
|
# Valid options are [ nfs, swift, ceph ]
|
2017-07-17 11:13:14 +02:00
|
|
|
#cinder_backup_driver: "ceph"
|
2016-11-10 15:21:37 +00:00
|
|
|
#cinder_backup_share: ""
|
|
|
|
#cinder_backup_mount_options_nfs: ""
|
2016-05-09 11:13:12 -04:00
|
|
|
|
2016-12-12 15:41:22 -03:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
###################
|
2016-08-10 15:48:32 +10:00
|
|
|
# Designate options
|
2017-08-25 13:13:27 +05:30
|
|
|
###################
|
2017-01-20 12:01:53 +00:00
|
|
|
# Valid options are [ bind9 ]
|
2017-04-19 14:19:39 +01:00
|
|
|
#designate_backend: "bind9"
|
|
|
|
#designate_ns_record: "sample.openstack.org"
|
2016-08-10 15:48:32 +10:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
########################
|
2016-10-17 08:51:50 -03:00
|
|
|
# Nova - Compute Options
|
2017-08-25 13:13:27 +05:30
|
|
|
########################
|
2016-09-06 08:08:32 -04:00
|
|
|
#nova_backend_ceph: "{{ enable_ceph }}"
|
2016-07-20 06:02:18 +00:00
|
|
|
|
2017-12-05 06:08:02 +00:00
|
|
|
# Valid options are [ qemu, kvm, vmware, xenapi ]
|
2017-08-04 17:15:57 +08:00
|
|
|
#nova_compute_virt_type: "kvm"
|
|
|
|
|
2017-10-03 20:38:47 +08:00
|
|
|
# The number of fake driver per compute node
|
|
|
|
#num_nova_fake_per_node: 5
|
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
#################
|
2017-05-30 14:16:34 +03:00
|
|
|
# Hyper-V options
|
2017-08-25 13:13:27 +05:30
|
|
|
#################
|
2017-05-30 14:16:34 +03:00
|
|
|
# Hyper-V can be used as hypervisor
|
|
|
|
#hyperv_username: "user"
|
|
|
|
#hyperv_password: "password"
|
|
|
|
#vswitch_name: "vswitch"
|
|
|
|
# URL from which Nova Hyper-V MSI is downloaded
|
|
|
|
#nova_msi_url: "https://www.cloudbase.it/downloads/HyperVNovaCompute_Beta.msi"
|
2016-07-20 06:02:18 +00:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
#############################
|
2016-10-17 08:51:50 -03:00
|
|
|
# Horizon - Dashboard Options
|
2017-08-25 13:13:27 +05:30
|
|
|
#############################
|
2017-03-14 14:15:43 +00:00
|
|
|
#horizon_backend_database: "{{ enable_murano | bool }}"
|
2016-09-08 12:49:02 +01:00
|
|
|
|
2018-01-29 14:21:58 +00:00
|
|
|
#############################
|
|
|
|
# Ironic options
|
|
|
|
#############################
|
2017-10-11 10:36:36 +08:00
|
|
|
# following value must be set when enable ironic, the value format
|
|
|
|
# is "192.168.0.10,192.168.0.100".
|
|
|
|
ironic_dnsmasq_dhcp_range:
|
2018-05-18 16:27:06 +08:00
|
|
|
# PXE bootloader file for Ironic Inspector, relative to /tftpboot.
|
|
|
|
#ironic_dnsmasq_boot_file: "pxelinux.0"
|
2016-09-08 12:49:02 +01:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
######################################
|
2016-03-01 10:46:48 -05:00
|
|
|
# Manila - Shared File Systems Options
|
2017-08-25 13:13:27 +05:30
|
|
|
######################################
|
2016-10-10 13:21:04 -03:00
|
|
|
# HNAS backend configuration
|
|
|
|
#hnas_ip:
|
|
|
|
#hnas_user:
|
|
|
|
#hnas_password:
|
|
|
|
#hnas_evs_id:
|
|
|
|
#hnas_evs_ip:
|
|
|
|
#hnas_file_system_name:
|
2016-03-17 11:43:15 -04:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
################################
|
2016-03-30 08:18:06 -04:00
|
|
|
# Swift - Object Storage Options
|
2017-08-25 13:13:27 +05:30
|
|
|
################################
|
2016-03-17 11:43:15 -04:00
|
|
|
# Swift expects block devices to be available for storage. Two types of storage
|
|
|
|
# are supported: 1 - storage device with a special partition name and filesystem
|
|
|
|
# label, 2 - unpartitioned disk with a filesystem. The label of this filesystem
|
|
|
|
# is used to detect the disk which Swift will be using.
|
|
|
|
|
2017-08-10 00:24:39 -07:00
|
|
|
# Swift support two matching modes, valid options are [ prefix, strict ]
|
2016-03-17 11:43:15 -04:00
|
|
|
#swift_devices_match_mode: "strict"
|
|
|
|
|
|
|
|
# This parameter defines matching pattern: if "strict" mode was selected,
|
|
|
|
# for swift_devices_match_mode then swift_device_name should specify the name of
|
|
|
|
# the special swift partition for example: "KOLLA_SWIFT_DATA", if "prefix" mode was
|
|
|
|
# selected then swift_devices_name should specify a pattern which would match to
|
|
|
|
# filesystems' labels prepared for swift.
|
|
|
|
#swift_devices_name: "KOLLA_SWIFT_DATA"
|
2016-05-26 20:58:03 +08:00
|
|
|
|
|
|
|
|
|
|
|
################################################
|
|
|
|
# Tempest - The OpenStack Integration Test Suite
|
|
|
|
################################################
|
|
|
|
# following value must be set when enable tempest
|
|
|
|
tempest_image_id:
|
|
|
|
tempest_flavor_ref_id:
|
|
|
|
tempest_public_network_id:
|
|
|
|
tempest_floating_network_name:
|
|
|
|
|
|
|
|
# tempest_image_alt_id: "{{ tempest_image_id }}"
|
|
|
|
# tempest_flavor_ref_alt_id: "{{ tempest_flavor_ref_id }}"
|
2017-04-11 17:08:59 +08:00
|
|
|
|
2017-08-25 13:13:27 +05:30
|
|
|
###################################
|
2017-07-04 22:59:12 +02:00
|
|
|
# VMware - OpenStack VMware support
|
2017-08-25 13:13:27 +05:30
|
|
|
###################################
|
2017-04-11 17:08:59 +08:00
|
|
|
#vmware_vcenter_host_ip:
|
|
|
|
#vmware_vcenter_host_username:
|
|
|
|
#vmware_vcenter_host_password:
|
|
|
|
#vmware_datastore_name:
|
|
|
|
#vmware_vcenter_name:
|
2017-07-11 09:49:37 +08:00
|
|
|
#vmware_vcenter_cluster_name:
|
2017-12-05 06:08:02 +00:00
|
|
|
|
|
|
|
#######################################
|
|
|
|
# XenAPI - Support XenAPI for XenServer
|
|
|
|
#######################################
|
|
|
|
# XenAPI driver use HIMN(Host Internal Management Network)
|
|
|
|
# to communicate with XenServer host.
|
|
|
|
#xenserver_himn_ip:
|
|
|
|
#xenserver_username:
|
|
|
|
#xenserver_connect_protocol:
|
2017-07-17 15:59:05 +00:00
|
|
|
|
|
|
|
############
|
|
|
|
# Prometheus
|
|
|
|
############
|
|
|
|
#enable_prometheus_haproxy_exporter: "{{ enable_haproxy | bool }}"
|
|
|
|
#enable_prometheus_mysqld_exporter: "{{ enable_mariadb | bool }}"
|
2018-06-08 13:14:36 -04:00
|
|
|
#enable_prometheus_node_exporter: "{{ enable_prometheus | bool }}"
|
|
|
|
#enable_prometheus_cadvisor: "{{ enable_prometheus | bool }}"
|