- VMware vSphere 5.5 Cookbook
- Abhilash GB
- 222字
- 2021-07-23 20:22:00
Adding the HA VIB to the image profile
If you are deploying stateless ESXi hosts using vSphere Auto Deploy, then you should be packaging the vSphere HA FDM VIB into the image profile; otherwise, you won't be able to enable HA on the auto-deployed hosts.
How to do it...
The following procedure will guide you through the steps required in adding the FDM VIB to the image profile:
- Use the cmdlet
Connect-VIServer
to add the vCenter server to the PowerCLI session:Connect-VIServer -Server vcenterhost001 -User Administrator -Password pass123
- Add the ESXi offline bundle to the session:
Add-EsxSoftwareDepot -DepotUrl C:\Offline-Bundles\VMware-ESXi-5.5.0-1331820-depot.zip
- Add the vSphere HA depot to the session. The vSphere HA depot is at
http://IP or FQDN of the vCenterhost/vSphere-HA-depot
:Add-EsxSoftwareDepot http://vcenterhost001/vSphere-HA-depot
- Clone and create a new image profile to customize. Read the recipe Creating an image profile by cloning a predefined profile for instructions.
- Add the FDM VIB
vmware-fdm
to the new image profile:Add-EsxSoftwarePackage "vmware-fdm" –ImageProfile Profile001
- Export the image profile to a ZIP archive, so that the customization is not lost when you exit the Power CLI Session. Read the recipe Exporting an image profile as an ISO or offline bundle.
- The image profile can now be used in an Auto Deploy rule. For instructions on how to create auto deploy rules, read Chapter 5, Using vSphere Auto Deploy.
推薦閱讀
- Python快樂編程:人工智能深度學(xué)習(xí)基礎(chǔ)
- 基于免疫進(jìn)化的算法及應(yīng)用研究
- Oracle BAM 11gR1 Handbook
- Visual Basic學(xué)習(xí)手冊
- Expert Data Visualization
- Android程序設(shè)計(jì)基礎(chǔ)
- Visual C#通用范例開發(fā)金典
- Java EE 8 Application Development
- Visual Basic程序設(shè)計(jì)實(shí)驗(yàn)指導(dǎo)及考試指南
- Instant GLEW
- 實(shí)驗(yàn)編程:PsychoPy從入門到精通
- Swift 2 Design Patterns
- TensorFlow 2.0深度學(xué)習(xí)應(yīng)用實(shí)踐
- 測試架構(gòu)師修煉之道:從測試工程師到測試架構(gòu)師(第2版)
- Java入門經(jīng)典