
Kolla (container images) and kolla-ansible (container deployment) are separate concerns, and should be treated as such. Configuration variables have been added for kolla-ansible which were previously shared between the two projects: kolla_venv -> kolla_ansible_venv kolla_ctl_install_type -> kolla_ansible_ctl_install_type Also, we introduce specific variables for the source code repository checkout paths, which were previously both based on source_checkout_path: kolla_source_path kolla_ansible_source_path These changes help us to cleanly separate the configuration of paths on the local (Ansible control) host, from those on the managed (target) hosts. This is important because the local paths may be specific to the environment in which the user is running kayobe, but the remote paths are relatively fixed and specific to the cluster.
23 lines
630 B
YAML
23 lines
630 B
YAML
---
|
|
# Path to directory for kolla source code checkout.
|
|
kolla_source_path:
|
|
|
|
# Type of Kolla control installation. One of 'binary' or 'source'.
|
|
kolla_ctl_install_type:
|
|
|
|
# URL of Kolla source code repository if type is 'source'.
|
|
kolla_source_url:
|
|
|
|
# Version (branch, tag, etc.) of Kolla source code repository if type is
|
|
# 'source'.
|
|
kolla_source_version:
|
|
|
|
# Virtualenv directory where Kolla will be installed.
|
|
kolla_venv: "{{ ansible_env['PWD'] }}/kolla-venv"
|
|
|
|
# Directory where Kolla config files will be installed.
|
|
kolla_config_path:
|
|
|
|
# Kolla OpenStack release version. This should be a Docker image tag.
|
|
kolla_openstack_release:
|