Sync development quickstart doc

The development quickstart document has not been updated for a
while, and it has become desynchronized with the regular quickstart.

Change-Id: I6b14623b73b0032df94f0f633659a1b6dfc15dea
This commit is contained in:
Bartosz Bezak 2024-02-02 16:08:02 +01:00
parent 50ad7c6681
commit fc439e74a8
1 changed files with 20 additions and 6 deletions

View File

@ -48,24 +48,24 @@ execution, which is described in
#. Install Python build dependencies:
For CentOS, RHEL or openEuler, run:
For CentOS, Rocky or openEuler, run:
.. code-block:: console
sudo dnf install python3-devel libffi-devel gcc openssl-devel python3-libselinux
sudo dnf install git python3-devel libffi-devel gcc openssl-devel python3-libselinux
For Debian or Ubuntu, run:
.. code-block:: console
sudo apt install python3-dev libffi-dev gcc libssl-dev
sudo apt install git python3-dev libffi-dev gcc libssl-dev
Install dependencies for the virtual environment
------------------------------------------------
#. Install the virtual environment dependencies.
For CentOS, RHEL or openEuler, you don't need to do anything.
For CentOS, Rocky or openEuler, you don't need to do anything.
For Debian or Ubuntu, run:
@ -90,11 +90,12 @@ Install dependencies for the virtual environment
pip install -U pip
#. Install `Ansible <http://www.ansible.com>`__. Kolla Ansible requires at least
Ansible ``4`` and supports up to ``5``.
Ansible ``6`` (or ansible-core ``2.14``) and supports up to ``7`` (or
ansible-core ``2.15``).
.. code-block:: console
pip install 'ansible>=4,<6'
pip install 'ansible-core>=2.14,<2.16'
Install Kolla-ansible
~~~~~~~~~~~~~~~~~~~~~
@ -199,6 +200,19 @@ There are a few options that are required to deploy Kolla Ansible:
kolla_base_distro: "rocky"
* AArch64 options
Kolla provides images for both x86-64 and aarch64 architectures. They are not
"multiarch" so users of aarch64 need to define "openstack_tag_suffix"
setting:
.. code-block:: console
openstack_tag_suffix: "-aarch64"
This way images built for aarch64 architecture will be used.
* Networking
Kolla Ansible requires a few networking options to be set.