13.2. 将 Red Hat OpenStack Platform 镜像添加到 Satellite 服务器
要使用基于镜像的调配来创建主机,您必须将有关镜像的信息(如访问详细信息和镜像位置)添加到 Satellite 服务器。
要使用 CLI 而不是 Satellite Web UI,请参阅 CLI 过程。
流程
- 在 Satellite Web UI 中,进入到 Infrastructure > Compute Resources,点 Red Hat OpenStack Platform 连接的名称。
- 点 Create Image。
- 在 Name 字段中输入镜像的名称。
- 从 Operating System 列表中,选择镜像的基本操作系统。
- 从 Architecture 列表中,选择操作系统架构。
-
在 Username 字段中,输入用于镜像访问的 SSH 用户名。这通常是
root
用户。 - 在 Password 字段中,输入用于镜像访问的 SSH 密码。
- 从 Image 列表中,从 Red Hat OpenStack Platform 计算资源选择一个镜像。
-
可选:如果镜像支持用户数据输入,请选择 User Data 复选框,如
cloud-init
数据。 - 点 Submit 以保存镜像详情。
CLI 过程
使用
hammer compute-resource image create
命令创建镜像。使用--uuid
字段在 Red Hat OpenStack Platform 服务器上存储镜像位置的完整路径。# 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"