Chapter 3. Installing the all-in-one OpenStack environment
Before you can begin configuring, deploying, and testing your all-in-one OpenStack environment, you must install the necessary packages and dependencies, and share the public key from your user account on your physical machine to the virtual machine hosting the OpenStack environment.
Perform the following steps as the user that requires access to the OpenStack host machine, which is likely to be your regular, non-root user account.
Log in as a non-root user to the bare metal or virtual machine where you want to install the standalone services:
ssh <non-root-user>@<host-machine>
$ ssh <non-root-user>@<host-machine>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Register the machine with Red Hat Subscription Manager. Enter your Red Hat subscription credentials at the prompt:
sudo subscription-manager register
$ sudo subscription-manager register
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Attach your Red Hat subscription to the entitlement server:
sudo subscription-manager attach --auto
$ sudo subscription-manager attach --auto
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Run the following commands to enable the necessary repositories:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Replace
<VERSION>
with the version of your OpenStack installation.Expand Version Name 14
rocky
NoteThe all-in-one OpenStack installation is a Technology Preview feature in Red Hat OpenStack Platform 14.
Install the TripleO command line interface (CLI):
sudo yum install -y python-tripleoclient
$ sudo yum install -y python-tripleoclient
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Copy your public SSH key to the all-in-one host machine:
sudo ssh-copy-id <non-root-user>@<host-machine>
$ sudo ssh-copy-id <non-root-user>@<host-machine>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow