Add EL8 packages.

Python packages are now prefixed with 'python3' instead of 'python'.
'bridge-utils' is also no longer shipped.

Change-Id: I6e8765e53fd5c3a7f7169671d75e965c22213c61
Signed-off-by: Luke Short <ekultails@gmail.com>
This commit is contained in:
Luke Short 2020-05-28 20:43:03 -04:00
parent c3bda3f6cf
commit 7d39ed9aa9
2 changed files with 7 additions and 8 deletions

View File

@ -40,13 +40,12 @@ choice. Various downloads can be found at the `Vagrant downloads
Install required dependencies as follows:
For CentOS 7 or later:
For CentOS or RHEL 8:
.. code-block:: console
sudo yum install ruby-devel libvirt-devel zlib-devel libpng-devel gcc \
qemu-kvm qemu-img libvirt libvirt-python libvirt-client virt-install \
bridge-utils git
sudo dnf install ruby-devel libvirt-devel zlib-devel libpng-devel gcc \
qemu-kvm qemu-img libvirt python3-libvirt libvirt-client virt-install git
For Ubuntu 16.04 or later:

View File

@ -45,11 +45,11 @@ execution, which is described in
#. Install Python build dependencies:
For CentOS or RHEL, run:
For CentOS or RHEL 8, run:
.. code-block:: console
sudo yum install python-devel libffi-devel gcc openssl-devel libselinux-python
sudo dnf install python3-devel libffi-devel gcc openssl-devel python3-libselinux
For Ubuntu, run:
@ -64,11 +64,11 @@ If not installing Kolla Ansible in a virtual environment, skip this section.
#. Install the virtualenv package.
For CentOS or RHEL, run:
For CentOS or RHEL 8, run:
.. code-block:: console
sudo yum install python-virtualenv
sudo dnf install python3-virtualenv
For Ubuntu, run: