8.3. 在 Satellite 服务器中添加 KVM 镜像
要使用基于镜像的置备创建主机,您必须将有关镜像的信息(如访问详情和镜像位置)添加到 Satellite 服务器。
请注意,您只能通过 Satellite 管理目录池存储类型。
要使用 CLI 而不是 Satellite Web UI,请参阅 CLI 过程。
流程
- 在 Satellite Web UI 中,进入到 Infrastructure > Compute Resources,然后点击 KVM 连接的名称。
- 点 Create Image。
- 在 Name 字段中输入镜像的名称。
- 从 Operating System 列表中,选择镜像的基础操作系统。
- 从 Architecture 列表中,选择操作系统架构。
-
在 Username 字段中,输入用于镜像访问的 SSH 用户名。这通常是
root
用户。 - 在 Password 字段中,输入镜像访问的 SSH 密码。
在 Image path 字段中,输入指向 KVM 服务器上的镜像的完整路径。例如:
/var/lib/libvirt/images/TestImage.qcow2
-
可选:如果镜像支持用户数据输入,请选择 User Data 复选框,如
cloud-init
数据。 - 点 Submit 保存镜像详情。
CLI 过程
使用
hammer compute-resource image create
命令创建镜像。使用--uuid
字段在 KVM 服务器上存储镜像位置的完整路径。# hammer compute-resource image create \ --name "KVM Image" \ --compute-resource "My_KVM_Server" --operatingsystem "RedHat version" \ --architecture "x86_64" \ --username root \ --user-data false \ --uuid "/var/lib/libvirt/images/KVMimage.qcow2" \