Synchronise with kayobe for Train

Synchronised with kayobe at 95b67476865149672bdfafe68056dc8750f795f4,
prior to cutting stable/train branch.

Change-Id: If70b9c4d43f69c25f1e7298aaf7f13fc298ac7d8
This commit is contained in:
Will Szumski 2019-11-15 18:15:21 +00:00
parent 7973dd45c7
commit 22413db5ef
6 changed files with 79 additions and 31 deletions

View File

@ -20,12 +20,24 @@
# DIB image OS release. # DIB image OS release.
#kolla_bifrost_dib_os_release: #kolla_bifrost_dib_os_release:
# List of default DIB elements.
#kolla_bifrost_dib_elements_default:
# List of additional DIB elements.
#kolla_bifrost_dib_elements_extra:
# List of DIB elements. # List of DIB elements.
#kolla_bifrost_dib_elements: #kolla_bifrost_dib_elements:
# DIB init element. # DIB init element.
#kolla_bifrost_dib_init_element: #kolla_bifrost_dib_init_element:
# DIB default environment variables.
#kolla_bifrost_dib_env_vars_default:
# DIB additional environment variables.
#kolla_bifrost_dib_env_vars_extra:
# DIB environment variables. # DIB environment variables.
#kolla_bifrost_dib_env_vars: #kolla_bifrost_dib_env_vars:

View File

@ -27,6 +27,9 @@
# CA of docker registry # CA of docker registry
#docker_registry_ca: #docker_registry_ca:
# List of Docker registry mirrors.
#docker_registry_mirrors:
# Enable live-restore on docker daemon # Enable live-restore on docker daemon
#docker_daemon_live_restore: #docker_daemon_live_restore:

View File

@ -13,13 +13,6 @@
# Version of IPA source repository. Default is {{ openstack_branch }}. # Version of IPA source repository. Default is {{ openstack_branch }}.
#ipa_build_source_version: #ipa_build_source_version:
# URL of IPA upper constraints file.
#ipa_build_upper_constraints_file_url:
# Custom python package version constraints for IPA. Dict mapping package name
# to upper version constraint.
#ipa_build_custom_upper_constraints:
# List of default Diskimage Builder (DIB) elements to use when building IPA # List of default Diskimage Builder (DIB) elements to use when building IPA
# images. # images.
#ipa_build_dib_elements_default: #ipa_build_dib_elements_default:
@ -47,6 +40,9 @@
# stackhpc.os-images role for usage. # stackhpc.os-images role for usage.
#ipa_build_dib_git_elements: #ipa_build_dib_git_elements:
# List of DIB packages to install. Default is none.
#ipa_build_dib_packages:
############################################################################### ###############################################################################
# Ironic Python Agent (IPA) images configuration. # Ironic Python Agent (IPA) images configuration.

View File

@ -27,49 +27,59 @@
# Kolla-ansible installation. # Kolla-ansible installation.
# Type of Kolla-ansible control installation. One of 'binary' or 'source'. # Type of Kolla-ansible control installation. One of 'binary' or 'source'.
# Default is 'source'.
#kolla_ansible_ctl_install_type: #kolla_ansible_ctl_install_type:
# Path to directory for kolla-ansible source code checkout. # Path to directory for kolla-ansible source code checkout.
# Default is $KOLLA_SOURCE_PATH, or $PWD/src/kolla-ansible if
# $KOLLA_SOURCE_PATH is not set.
#kolla_ansible_source_path: #kolla_ansible_source_path:
# URL of Kolla Ansible source code repository if type is 'source'. # URL of Kolla Ansible source code repository if type is 'source'. Default is
# https://opendev.org/openstack/kolla-ansible.
#kolla_ansible_source_url: #kolla_ansible_source_url:
# Version (branch, tag, etc.) of Kolla Ansible source code repository if type # Version (branch, tag, etc.) of Kolla Ansible source code repository if type
# is 'source'. Default is {{ openstack_branch }}. # is 'source'. Default is {{ openstack_branch }}.
#kolla_ansible_source_version: #kolla_ansible_source_version:
# Path to virtualenv in which to install kolla-ansible. # Path to virtualenv in which to install kolla-ansible. Default is
# $KOLLA_VENV_PATH or $PWD/venvs/kolla-ansible if $KOLLA_VENV_PATH is not set.
#kolla_ansible_venv: #kolla_ansible_venv:
# Extra requirements to install inside the kolla-ansible virtualenv. # Extra requirements to install inside the kolla-ansible virtualenv.
#kolla_ansible_venv_extra_requirements: #kolla_ansible_venv_extra_requirements:
# Path to Kolla-ansible configuration directory. # Path to Kolla-ansible configuration directory. Default is $KOLLA_CONFIG_PATH
# or /etc/kolla if $KOLLA_CONFIG_PATH is not set.
#kolla_config_path: #kolla_config_path:
# Path to Kolla-ansible node custom configuration directory. # Path to Kolla-ansible node custom configuration directory. Default is
# {{ kolla_config_path }}/config.
#kolla_node_custom_config_path: #kolla_node_custom_config_path:
############################################################################### ###############################################################################
# Kolla configuration. # Kolla configuration.
# Kolla base container image distribution. # Kolla base container image distribution. Default is 'centos'.
#kolla_base_distro: #kolla_base_distro:
# Kolla container image type: binary or source. # Kolla container image type: binary or source. Default is 'binary'.
#kolla_install_type: #kolla_install_type:
# URL of docker registry to use for Kolla images. # URL of docker registry to use for Kolla images. Default is not set, in which
# case Dockerhub will be used.
#kolla_docker_registry: #kolla_docker_registry:
# Docker namespace to use for Kolla images. # Docker namespace to use for Kolla images. Default is 'kolla'.
#kolla_docker_namespace: #kolla_docker_namespace:
# Username to use to access a docker registry. # Username to use to access a docker registry. Default is not set, in which
# case the registry will be used without authentication.
#kolla_docker_registry_username: #kolla_docker_registry_username:
# Password to use to access a docker registry. # Password to use to access a docker registry. Default is not set, in which
# case the registry will be used without authentication.
#kolla_docker_registry_password: #kolla_docker_registry_password:
# Kolla OpenStack release version. This should be a Docker image tag. # Kolla OpenStack release version. This should be a Docker image tag.
@ -80,7 +90,7 @@
# kolla_install_type=source. See kolla.common.config for details. # kolla_install_type=source. See kolla.common.config for details.
# Example: # Example:
# kolla_sources: # kolla_sources:
# ironic_base: # ironic-base:
# type: git # type: git
# location: https://github.com/openstack/ironic # location: https://github.com/openstack/ironic
# reference: master # reference: master
@ -139,23 +149,27 @@
# remotely on the target nodes. If None, no virtualenv will be used. # remotely on the target nodes. If None, no virtualenv will be used.
#kolla_ansible_target_venv: #kolla_ansible_target_venv:
# Whether TLS is enabled for the external API endpoints. # Whether TLS is enabled for the external API endpoints. Default is 'no'.
#kolla_enable_tls_external: #kolla_enable_tls_external:
# Whether debug logging is enabled. # Whether TLS is enabled for the internal API endpoints. Default is 'no'.
#kolla_enable_tls_internal:
# Whether debug logging is enabled. Default is 'false'.
#kolla_openstack_logging_debug: #kolla_openstack_logging_debug:
# Upper constraints file for installation of Kolla. # Upper constraints file for installation of Kolla.
# Default value is {{ pip_upper_constraints_file }}.
#kolla_upper_constraints_file: #kolla_upper_constraints_file:
# User account to use for Kolla SSH access. # User account to use for Kolla SSH access. Default is 'kolla'.
#kolla_ansible_user: #kolla_ansible_user:
# Primary group of Kolla SSH user. # Primary group of Kolla SSH user. Default is 'kolla'.
#kolla_ansible_group: #kolla_ansible_group:
# Whether to use privilege escalation for all operations performed via Kolla # Whether to use privilege escalation for all operations performed via Kolla
# Ansible. # Ansible. Default is 'true'.
#kolla_ansible_become: #kolla_ansible_become:
############################################################################### ###############################################################################
@ -206,6 +220,7 @@
#kolla_enable_manila_backend_hnas: #kolla_enable_manila_backend_hnas:
#kolla_enable_manila_backend_cephfs_native: #kolla_enable_manila_backend_cephfs_native:
#kolla_enable_manila_backend_cephfs_nfs: #kolla_enable_manila_backend_cephfs_nfs:
#kolla_enable_mariabackup:
#kolla_enable_mistral: #kolla_enable_mistral:
#kolla_enable_monasca: #kolla_enable_monasca:
#kolla_enable_mongodb: #kolla_enable_mongodb:
@ -258,18 +273,35 @@
############################################################################### ###############################################################################
# TLS certificate bundle management # TLS certificate bundle management
# Optionally copy a TLS certificate bundle into place. # External API certificate bundle.
# #
# When enabled, this will copy the contents of kolla_tls_cert into place for # When kolla_enable_tls_external is true, this should contain an X.509
# use by HAproxy. # certificate bundle for the external API.
# #
# Note that this should be formatted as a literal style block scalar. # Note that this should be formatted as a literal style block scalar.
#kolla_tls_cert: #
# NOTE: kolla_tls_cert has been renamed to kolla_external_tls_cert. Support for
# the deprecated name kolla_tls_cert will be removed in a future release.
#kolla_external_tls_cert:
# Path to a CA certificate file to use for the OS_CACERT environment variable in # Path to a CA certificate file to use for the OS_CACERT environment variable
# openrc files when TLS is enabled, instead of Kolla-Ansible's default. # in public-openrc.sh file when TLS is enabled, instead of Kolla-Ansible's
# default.
#kolla_external_fqdn_cacert: #kolla_external_fqdn_cacert:
# Internal API certificate bundle.
#
# When kolla_enable_tls_internal is true, this should contain an X.509
# certificate bundle for the internal API.
#
# Note that this should be formatted as a literal style block scalar.
#kolla_internal_tls_cert:
# Path to a CA certificate file to use for the OS_CACERT environment variable
# in admin-openrc.sh file when TLS is enabled, instead of Kolla-Ansible's
# default.
#kolla_internal_fqdn_cacert:
############################################################################### ###############################################################################
# Dummy variable to allow Ansible to accept this file. # Dummy variable to allow Ansible to accept this file.
workaround_ansible_issue_8743: yes workaround_ansible_issue_8743: yes

View File

@ -2,10 +2,10 @@
############################################################################### ###############################################################################
# OpenStack release configuration. # OpenStack release configuration.
# Name of the current OpenStack release. Default is "stein". # Name of the current OpenStack release. Default is "train".
#openstack_release: #openstack_release:
# Name of the current OpenStack branch. Default is "stable/stein". # Name of the current OpenStack branch. Default is "stable/train".
#openstack_branch: #openstack_branch:
############################################################################### ###############################################################################

View File

@ -1,5 +1,10 @@
--- ---
# Upper constraints file for installation of python packages.
# Default value is
# "https://releases.openstack.org/constraints/upper/{{ openstack_branch }}"
#pip_upper_constraints_file:
# Use a local PyPi mirror for installing Pip packages # Use a local PyPi mirror for installing Pip packages
#pip_local_mirror: false #pip_local_mirror: false