11.4. 在 Satellite 服务器中添加 VMware vSphere 镜像
VMware vSphere 使用模板作为创建新虚拟机的镜像。如果使用基于镜像的置备来创建新主机,则需要将 VMware 模板详情添加到卫星服务器中。这包括访问详情和模板名称。
流程
要添加镜像,请完成以下步骤:
- 在 Satellite Web UI 中,导航到 Infrastructure > Compute Resources,并在 Compute Resources 窗口中点击 VMware vSphere 连接。
- 在 Name 字段中输入镜像的名称。
- 在 Operatingsystem 列表中,选择镜像的基本操作系统。
- 从 Architecture 列表中,选择操作系统架构。
-
在 User 字段中,输入镜像访问的 SSH 用户名。这通常是
root
用户。 - 在 Password 字段中,为镜像访问输入 SSH 密码。
-
从 User data 列表中,选择您是否希望镜像支持用户数据输入,如
cloud-init
数据。 - 在 Image 字段中,在 vSphere 环境中输入模板的相对路径和名称。不要在相对路径中包含数据中心。
- 单击 Submit 以保存镜像详情。
对于 CLI 用户
使用 hammer compute-resource image create
命令创建镜像。使用 --uuid
字段将相对模板路径存储在 vSphere 环境中。
# hammer compute-resource image create --name "Test_vSphere_Image" \ --operatingsystem "RedHat 7.2" --architecture "x86_64" \ --username root --uuid "Templates/RHEL72" \ --compute-resource "My_vSphere"