It's easy to forget to override them, and you'll end up with a well known password used in your keystone and database. Use the password module to generate secure random passwords instead. Operators of production environments are still expected to provide their own passwords. The generated passwords are stored in /etc/bifrost and reused on the next installation. A new task is provided for upgrading the bootstrap (admin) user in keystone to the new password. Change-Id: I6771015f2b062233eeff85704655c8e2ab64364d
15 KiB
Bifrost Installation
Introduction
This document will guide you through installing the Bare Metal Service (ironic) using Bifrost.
Requirements
Supported operating systems:
- Ubuntu 18.04, 20.04
- Red Hat Enterprise Linux (RHEL) 8
- CentOS 8
- openSUSE Leap 15.1
- Fedora 30
- Debian Buster
Bifrost structure
Installation and use of Bifrost is split into roughly three steps:
- install: prepare the local environment by downloading and/or building machine images, and installing and configuring the necessary services.
- enroll-dynamic: take as input a customizable hardware inventory file and enroll the listed hardware with ironic, configuring each appropriately for deployment with the previously-downloaded images.
- deploy-dynamic: instruct ironic to deploy the operating system onto each machine.
Installation of Bifrost can be done in three ways:
Via the
bifrost-cli
command line tool.This is the path recommended for those who want something that just works. It provides minimum configuration and uses the recommended defaults.
By directly invoking
ansible-playbook
on one of provided playbooks.By writing your own playbooks using Ansible roles provided with Bifrost.
Pre-install steps
Know your environment
Before you start, you need to gather certain facts about your bare metal environment (this step can be skipped if you're testing Bifrost on virtual machines).
For the machine that hosts Bifrost you'll need to figure out:
- The network interface you're going to use for communication between the bare metal machines and the Bifrost services.
- Pool of IP addresses for DHCP (must be within the network configured on the chosen network interface).
- Whether you want the services to use authentication via Keystone.
For each machine that is going to be enrolled in the Bare Metal service you'll need:
- The management technology you are going to use to control the machine (IPMI, Redfish, etc). See bare metal drivers for guidance.
- An IP address or a host name of its management controller (BMC).
- Credentials for the management controller.
- MAC address of the NIC the machine uses for PXE booting (optional for IPMI).
Required packages
To start with Bifrost you will need Python 3.6 or newer and the
git
source code management tool.
On CentOS/RHEL/Fedora:
sudo dnf install -y git python3
On Ubuntu/Debian:
sudo apt-get update
sudo apt-get install -y python3 git
On openSUSE:
sudo zipper install -y python3 git
Enable additional repositories (RHEL only)
The extras
and optional
dnf repositories
must be enabled to satisfy bifrost's dependencies. To check:
sudo dnf repolist | grep 'optional\|extras'
To view the status of repositories:
sudo dnf repolist all | grep 'optional\|extras'
The output will look like this:
!rhui-REGION-rhel-server-debug-extras/8Server/x86_64 Red H disabled
rhui-REGION-rhel-server-debug-optional/8Server/x86_64 Red H disabled
rhui-REGION-rhel-server-extras/8Server/x86_64 Red H disabled
rhui-REGION-rhel-server-optional/8Server/x86_64 Red H disabled
rhui-REGION-rhel-server-source-extras/8Server/x86_64 Red H disabled
rhui-REGION-rhel-server-source-optional/8Server/x86_64 Red H disabled
Use the names of the repositories (minus the version and architecture) to enable them:
sudo dnf config-manager --enable rhui-REGION-rhel-server-optional
sudo dnf config-manager --enable rhui-REGION-rhel-server-extras
Enable the EPEL repository (RHEL and CentOS)
Building Debian or Ubuntu based images on RHEL or CentOS requires a few extra pre-install steps, in order to have access to the additional packages contained in the EPEL repository.
Please refer to the official wiki page to install and configure them.
Note
Use of EPEL repositories may result in incompatible packages being installed by the package manager. Care should be taken when using a system with EPEL enabled.
Clone Bifrost
Bifrost is typically installed from git:
git clone https://opendev.org/openstack/bifrost
cd bifrost
To install Bare Metal services from a specific release series (rather than the latest versions), check out the corresponding stable branch. For example, for Ussuri:
git checkout stable/ussuri
Testing on virtual machines
If you want to try Bifrost on virtual machines instead of real
hardware, you need to prepare a testing environment. The easiest way is
via bifrost-cli
:
./bifrost-cli testenv
Then do not forget to pass --testenv
flag to
bifrost-cli install
.
See /contributor/testenv
for more details and for advanced
ways of creating a virtual environment.
Quick start with bifrost-cli
The bifrost-cli
script, available since the Victoria
release series, installs the Bare Metal service with the recommended
defaults.
Using it is as simple as:
./bifrost-cli install \
--network-interface <the network interface to use> \
--dhcp-pool <DHCP start IP>-<DHCP end IP>
For example:
./bifrost-cli install --network-interface eno1 \
--dhcp-pool 10.0.0.20-10.0.0.100
Note
See Know your environment for the guidance on the two required parameters.
If installing on a virtual environment, skip these two parameters:
./bifrost-cli install --testenv
Additionally, the following parameters can be useful:
--hardware-types
-
A comma separated list of hardware types to enable.
--enable-keystone
-
Whether to enable authentication with Keystone.
See the built-in documentation for more details:
./bifrost-cli install --help
Installation via playbooks
Installation is split into four parts:
- Installation of Ansible
- Configuring settings for the installation
- Execution of the installation playbook
Installation of Ansible
Installation of Ansible can take place using the provided environment
setup script located at scripts/env-setup.sh
which is
present in the bifrost repository. This may also be used if you already
have ansible, as it will install ansible and various dependencies to a
virtual environment in order to avoid overwriting or conflicting with a
system-wide Ansible installation.
Alternatively, if you have a working Ansible installation, under normal circumstances the installation playbook can be executed, but you will need to configure the Virtual environment.
Note
All testing takes place utilizing the
scripts/env-setup.sh
script. Please feel free to submit bug reports or patches to
OpenStack Gerrit for any issues encountered if you choose to directly
invoke the playbooks without using env-setup.sh
.
Virtual environment
To avoid conflicts between Python packages installed from source and
system packages, Bifrost defaults to installing everything to a virtual
environment. scripts/env-setup.sh
will automatically create
a virtual environment in /opt/stack/bifrost
if it does not
exist.
If you want to enable system-wide installing, set
ENABLE_VENV
to false
before calling
env-setup.sh
:
export ENABLE_VENV=false
Warning
This is not recommended and not tested. Future versions of Bifrost may remove support of running outside of a virtual environment.
If you want to relocate the virtual environment, export the
VENV
variable before calling env-setup.sh
:
export VENV=/path/to/my/venv
If you're using the ansible playbooks directly (without the helper
scripts), set the enable_venv
and
bifrost_venv_dir
variables accordingly.
Pre-installation settings
Before performing the installation, it is highly recommended that you
edit ./playbooks/inventory/group_vars/*
to match your
environment. Several files are located in this folder, and you may wish
to review and edit the settings across multiple files:
- The
target
file is used by roles that execute against the target node upon which you are installing ironic and all required services. - The
baremetal
file is geared for roles executed against baremetal nodes. This may be useful if you are automating multiple steps involving deployment and configuration of nodes beyond deployment via the same roles. - The
localhost
file is similar to thetarget
file, and likely contains identical settings. This file is referenced if no explicit target is defined, as it defaults to the localhost.
Duplication between variable names does occur within these files, as variables are unique to the group that the role is being executed upon.
- If MySQL is already installed, update
mysql_password
to match your local installation. - Change
network_interface
to match the interface that will need to service DHCP requests. - Set
service_password
which is used for communication between services. If unset, a random password is generated during the initial installation and stored on the controller in~/.config/bifrost/service_password
.
The install process, when executed will either download, or build disk images for the deployment of nodes, and be deployed to the nodes.
If you wish to build an image, based upon the settings, you will need
to set create_image_via_dib
to true
.
If you are running the installation behind a proxy, export the
environment variables http_proxy
, https_proxy
and no_proxy
so that ansible will use these proxy
settings.
Dependencies
In order to really get started, you must install dependencies.
With the addition of ansible collections, the
env-setup.sh
will install the collections in the default
ansible collections_paths
(according to your ansible.cfg)
or you can specify the location setting
ANSIBLE_COLLECTIONS_PATHS
:
$ export ANSIBLE_COLLECTIONS_PATHS=/mydir/collections
Note
If you are using a virtual environment ANSIBLE_COLLECTIONS_PATHS is automatically set. After Ansible Collections are installed, a symbolic link to to the installation is created in the bifrost playbook directory.
The env-setup.sh
script automatically invokes
install-deps.sh
and creates a virtual environment for
you:
$ bash ./scripts/env-setup.sh
$ source /opt/stack/bifrost/bin/activate
$ cd playbooks
Once the dependencies are in-place, you can execute the ansible playbook to perform the actual installation. The playbook will install and configure ironic in a stand-alone fashion.
A few important notes:
- The OpenStack Identity service (keystone) is NOT installed by default, and ironic's API is accessible without authentication. It is possible to put basic password authentication on ironic's API by changing the nginx configuration accordingly.
Note
Bifrost playbooks can leverage and optionally install keystone. See
Keystone install details <keystone>
.
- The OpenStack Networking service (neutron) is NOT installed. Ironic performs static IP injection via config-drive or DHCP reservation.
- Deployments are performed by the ironic python agent (IPA).
- dnsmasq is configured statically and responds to all PXE boot requests by chain-loading to iPXE, which then fetches the Ironic Python Agent ramdisk from nginx.
- By default, installation will build an Ubuntu-based image for deployment to nodes. This image can be easily customized if so desired.
The re-execution of the playbook will cause states to be re-asserted. If not already present, a number of software packages including MySQL and RabbitMQ will be installed on the host. Python code will be reinstalled regardless if it has changed. RabbitMQ user passwords will be reset, and services will be restarted.
Playbook Execution
Playbook based install provides a greater degree of visibility and control over the process and is suitable for advanced installation scenarios.
Examples:
First, make sure that the virtual environment is active (the example below assumes that bifrost venv is installed into the default path /opt/stack/bifrost).
$ . /opt/stack/bifrost/bin/activate (bifrost) $
Verify if the ansible-playbook executable points to the one installed in the virtual environment:
(bifrost) $ which ansible-playbook /opt/stack/bifrost/bin/ansible-playbook (bifrost) $
change to the playbooks
subdirectory of the cloned
bifrost repository:
$ cd playbooks
If you have passwordless sudo enabled, run:
$ ansible-playbook -vvvv -i inventory/target install.yaml
Otherwise, add the -K
to the ansible command line, to
trigger ansible to prompt for the sudo password:
$ ansible-playbook -K -vvvv -i inventory/target install.yaml
With regard to testing, ironic's node cleaning capability is enabled by default, but only metadata cleaning is turned on, as it can be an unexpected surprise for a new user that their test node is unusable for however long it takes for the disks to be wiped.
If you wish to enable full cleaning, you can achieve this by passing
the option -e cleaning_disk_erase=true
to the command line
or executing the command below:
$ ansible-playbook -K -vvvv -i inventory/target install.yaml -e cleaning_disk_erase=true
After you have performed an installation, you can edit
/etc/ironic/ironic.conf
to enable or disable cleaning as
desired. It is highly encouraged to utilize cleaning in any production
environment.
Additional ironic drivers
An additional collection of drivers are maintained outside of the ironic source code repository, as they do not have Continuous Integration (CI) testing.
These drivers and information about them can be found in ironic-staging-drivers
docs. If you would like to install the ironic staging drivers,
simply pass -e staging_drivers_include=true
when executing
the install playbook:
$ ansible-playbook -K -vvvv -i inventory/target install.yaml -e staging_drivers_include=true
Advanced Topics
keystone offline-install
virtualenv