
This allows a deployer to customise their inventory at various levels, by providing a custom inventory template for one or more of the sections of the inventory. * Top level groups define the roles of hosts, e.g. controller or compute. * Components define groups of services, e.g. nova or ironic. * Services define single containers, e.g. nova-compute or ironic-api.
104 lines
3.3 KiB
YAML
104 lines
3.3 KiB
YAML
---
|
|
# kolla-ansible was bundled with kolla prior to Ocata (4.0.0).
|
|
kolla_ansible_is_standalone: "{{ kolla_ansible_source_version | version_compare('4.0.0', '>=') }}"
|
|
|
|
# Name of the kolla-ansible python module.
|
|
kolla_ansible_module: "{% if kolla_ansible_is_standalone | bool %}kolla-ansible{% else %}kolla{% endif %}"
|
|
|
|
# Path to Kolla Ansible installation directory.
|
|
kolla_ansible_install_dir: "{{ kolla_venv }}/share/{{ kolla_ansible_module }}"
|
|
|
|
###############################################################################
|
|
# Inventory configuration.
|
|
|
|
# Full default seed inventory contents.
|
|
kolla_seed_inventory_default: |
|
|
# This file is managed by Ansible. Do not edit.
|
|
|
|
{{ lookup('template', "seed.j2") }}
|
|
|
|
# Full seed inventory contents.
|
|
kolla_seed_inventory: "{{ kolla_seed_inventory_custom or kolla_seed_inventory_default }}"
|
|
|
|
# Default overcloud inventory containing a mapping from top level groups to
|
|
# hosts.
|
|
kolla_overcloud_inventory_default_top_level: "{{ lookup('template', 'overcloud-top-level.j2') }}"
|
|
|
|
# Overcloud inventory containing a mapping from top level groups to hosts.
|
|
kolla_overcloud_inventory_top_level: "{{ kolla_overcloud_inventory_custom_top_level or kolla_overcloud_inventory_default_top_level }}"
|
|
|
|
# Default overcloud inventory containing a mapping from components to top level
|
|
# groups.
|
|
kolla_overcloud_inventory_default_components: "{{ lookup('template', 'overcloud-components.j2') }}"
|
|
|
|
# Overcloud inventory containing a mapping from components to top level groups.
|
|
kolla_overcloud_inventory_components: "{{ kolla_overcloud_inventory_custom_components or kolla_overcloud_inventory_default_components }}"
|
|
|
|
# Default overcloud inventory containing a mapping from services to components.
|
|
kolla_overcloud_inventory_default_services: "{{ lookup('template', 'overcloud-services.j2') }}"
|
|
|
|
# Overcloud inventory containing a mapping from services to components.
|
|
kolla_overcloud_inventory_services: "{{ kolla_overcloud_inventory_custom_services or kolla_overcloud_inventory_default_services }}"
|
|
|
|
# Full default overcloud inventory contents. By default this will be the
|
|
# concatenation of the top level, component, and service inventories.
|
|
kolla_overcloud_inventory_default: |
|
|
# This file is managed by Ansible. Do not edit.
|
|
|
|
# Overcloud inventory file for kolla-ansible.
|
|
|
|
{{ kolla_overcloud_inventory_top_level }}
|
|
|
|
{{ kolla_overcloud_inventory_components }}
|
|
|
|
{{ kolla_overcloud_inventory_services }}
|
|
|
|
# Full overcloud inventory contents. By default this will be the concatenation
|
|
# of the top level, component, and service inventories.
|
|
kolla_overcloud_inventory: "{{ kolla_overcloud_inventory_custom or kolla_overcloud_inventory_default }}"
|
|
|
|
###############################################################################
|
|
# Feature configuration.
|
|
|
|
# List of features supported by Kolla as enable_* flags.
|
|
kolla_feature_flags:
|
|
- aodh
|
|
- barbican
|
|
- ceilometer
|
|
- central_logging
|
|
- ceph
|
|
- ceph_rgw
|
|
- cinder
|
|
- cinder_backend_iscsi
|
|
- cinder_backend_lvm
|
|
- cloudkitty
|
|
- congress
|
|
- etcd
|
|
- gnocchi
|
|
- grafana
|
|
- haproxy
|
|
- heat
|
|
- horizon
|
|
- influxdb
|
|
- ironic
|
|
- kuryr
|
|
- magnum
|
|
- manila
|
|
- mistral
|
|
- mongodb
|
|
- murano
|
|
- multipathd
|
|
- neutron_dvr
|
|
- neutron_lbaas
|
|
- neutron_qos
|
|
- neutron_agent_ha
|
|
- neutron_vpnaas
|
|
- rally
|
|
- sahara
|
|
- senlin
|
|
- swift
|
|
- telegraf
|
|
- tempest
|
|
- watcher
|
|
|