13.2. Adding Red Hat OpenStack Platform Images to Satellite Server
To create hosts using image-based provisioning, you must add information about the image, such as access details and the image location, to your Satellite Server.
Procedure
- In the Satellite web UI, navigate to Infrastructure > Compute Resources and click the name of the Red Hat OpenStack Platform connection.
- Click Create Image.
- In the Name field, enter a name for the image.
- From the Operating System list, select the image’s base operating system.
- From the Architecture list, select the operating system architecture.
-
In the Username field, enter the SSH user name for image access. This is normally the
rootuser. - In the Password field, enter the SSH password for image access.
- From the Image list, select an image from the Red Hat OpenStack Platform compute resource.
-
Optional: Select the User Data check box if the image supports user data input, such as
cloud-initdata. - Click Submit to save the image details.
For CLI Users
Create the image with the
hammer compute-resource image createcommand. Use the--uuidfield to store the full path of the image location on the Red Hat OpenStack Platform server.# hammer compute-resource image create \ --name "OpenStack Image" \ --compute-resource "My_OpenStack_Platform" --operatingsystem "RedHat version" \ --architecture "x86_64" \ --username root \ --user-data true \ --uuid "/path/to/OpenstackImage.qcow2"