Merge "Deploy source type images by default"

This commit is contained in:
Zuul 2021-09-30 14:30:34 +00:00 committed by Gerrit Code Review
commit 2e9d9148f6
4 changed files with 11 additions and 3 deletions
ansible/group_vars
doc/source/user
etc/kolla
releasenotes/notes

@ -45,7 +45,7 @@ config_strategy: "COPY_ALWAYS"
# Valid options are ['centos', 'debian', 'rhel', 'ubuntu'] # Valid options are ['centos', 'debian', 'rhel', 'ubuntu']
kolla_base_distro: "centos" kolla_base_distro: "centos"
# Valid options are [ binary, source ] # Valid options are [ binary, source ]
kolla_install_type: "binary" kolla_install_type: "source"
kolla_internal_vip_address: "{{ kolla_internal_address | default('') }}" kolla_internal_vip_address: "{{ kolla_internal_address | default('') }}"
kolla_internal_fqdn: "{{ kolla_internal_vip_address }}" kolla_internal_fqdn: "{{ kolla_internal_vip_address }}"

@ -381,7 +381,7 @@ There are a few options that are required to deploy Kolla Ansible:
binary binary
using repositories like apt or dnf using repositories like apt or dnf
source source (default)
using raw source archives, git repositories or local source directory using raw source archives, git repositories or local source directory
.. note:: .. note::

@ -31,7 +31,7 @@
#kolla_base_distro: "centos" #kolla_base_distro: "centos"
# Valid options are [ binary, source ] # Valid options are [ binary, source ]
#kolla_install_type: "binary" #kolla_install_type: "source"
# Do not override this unless you know what you are doing. # Do not override this unless you know what you are doing.
#openstack_release: "master" #openstack_release: "master"

@ -0,0 +1,8 @@
---
upgrade:
- |
Updates the default image type to ``source``. Users wishing to deploy
``binary`` type images should set ``kolla_install_type`` to ``binary`` in
``globals.yml``. This change is to reflect the reality that source images
are tested more thoroughly and we (as OpenStack community) have better
control over them.