PowerVCF で VI Workload Domain を展開してみる。Part-07: VI Workload Domain(vSAN ESA)の展開 - vm.gowatana.jp

vm.gowatana.jp

NEOにほんごVMware(仮)

PowerVCF で VI Workload Domain を展開してみる。Part-07: VI Workload Domain(vSAN ESA)の展開

VMware Cloud Foundation(VCF)5.2.1 で、vSAN ESA の VI Workload Domain を、PowerVCF でデプロイしてみます。

 

今回の内容です。

 

前回はこちら。

 

事前準備

ESXi ホストは、下記のようにコミッショニングしてあります。

 

VI Workload Domain の JSON ファイルで指定する ID を確認しておきます。まず、SDDC Manager のトークンを取得します。

PS> Request-VCFToken -fqdn vcf-m01-sddc-01.c.go-lab.jp -username administrator@vsphere.local -password "VMware1!VMware1!"
Successfully Requested New API Token From SDDC Manager: vcf-m01-sddc-01.c.go-lab.jp

 

ホストの ID を確認します。

PS> Get-VCFHost -status UNASSIGNED_USEABLE | Select-Object id,fqdn,status | Sort-Object fqdn | ft -AutoSize

id                                   fqdn                        status
--                                   ----                        ------
71c316ae-a430-4559-9945-5bbe582b4ec7 vcf-w01-esxi-01.c.go-lab.jp UNASSIGNED_USEABLE
72cd2e7d-8810-4032-b837-0686613e478c vcf-w01-esxi-02.c.go-lab.jp UNASSIGNED_USEABLE
1d0bbbec-c360-44c6-8f00-908f622fafe1 vcf-w01-esxi-03.c.go-lab.jp UNASSIGNED_USEABLE

 

クラスタ イメージ ID を確認しておきます。今回は、デフォルトで作成される「Management-Domain-ESXi-Personality」というイメージを指定します。

PS> Get-VCFPersonality | Select-Object personalityName,personalityId

personalityName                    personalityId
---------------                    -------------
Management-Domain-ESXi-Personality 4f533d57-0a4f-4563-9317-638370ce253a

 

ネステッド vSAN ESA 構成の場合は、こちらもどうぞ。

 

JSON ファイルの用意

下記のように、VI Workload Domain のパラメータを記載した JSON ファイルを用意しておきます。

 

vi-domain_vcf-w01_nsx_esa.json

  • L47:仮想マシン ストレージ ポリシーの FTT(failuresToTolerate)は、vSAN ESA の VI Workload Domain を展開する場合は null を指定します。
  • L51-L56:ESA を有効にします。
  • L59:ESA の場合は、clusterImageId の指定が必須になります。
  • ホストの id と、clusterImageId は、先ほど確認したものを指定します。

gist.github.com

 

作成した JSON ファイルは、以前の投稿にあるように API で確認(Validation)しておきます。

 

VI Workload Domain の展開

New-VCFWorkloadDomain で、JSON ファイルを指定して VI Workload Domain を展開します。

PS> New-VCFWorkloadDomain -json (Get-Content -Raw C:\work\json\domains\vi-domain_vcf-w01_nsx_esa.json)
Task validation completed successfully. Invoking Workload Domain Creation on SDDC Manager

id                         : e8e89e5c-55a8-46ac-b819-8efd4ea70fbe
name                       : Creating domain
localizableDescriptionPack : @{component=VCF; messageKey=ADD_DOMAIN_WORKFLOW; arguments=System.Object[]; message=Creati
                             ng Workload Domain: vcf-w01; bundle=com.vmware.vcf.domainmanager.workflow.workflowdescript
                             ions}
status                     : IN_PROGRESS
creationTimestamp          : 2024/11/17 16:18:52
isCancellable              : False
isRetryable                : False

 

数時間ほど待つと、タスクが完了して VI Workload Domain が作成されます。

PS> Get-VCFTask -id e8e89e5c-55a8-46ac-b819-8efd4ea70fbe

id                  : e8e89e5c-55a8-46ac-b819-8efd4ea70fbe
name                : Creating Workload Domain: vcf-w01
type                : DOMAIN_CREATION
status              : Successful
creationTimestamp   : 2024/11/17 16:18:54
completionTimestamp : 2024/11/17 22:00:27
subTasks            : {@{name=Generate Workload Domain Resources for Allocation Input Data; desc
                      ription=Generate Workload Domain Resources for Allocation Input Data; stat
                      us=SUCCESSFUL; creationTimestamp=2024/11/17 16:18:55; completionTimestamp=
                      2024/11/17 16:18:55; errors=System.Object[]}, @{name=Allocate resources; d
                      escription=Allocate resources; status=SUCCESSFUL; creationTimestamp=2024/1
                      1/17 16:18:55; completionTimestamp=2024/11/17 16:18:56; errors=System.Obje
                      ct[]}, @{name=Generate Workload Domain Creation Locking Input Data; descri
                      ption=Generate Workload Domain Creation Locking Input Data; status=SUCCESS
                      FUL; creationTimestamp=2024/11/17 16:18:56; completionTimestamp=2024/11/17
                       16:18:56; errors=System.Object[]}, @{name=Acquire Resource Locks; descrip
                      tion=Acquire Resource Locks; status=SUCCESSFUL; creationTimestamp=2024/11/
                      17 16:18:56; completionTimestamp=2024/11/17 16:18:56; errors=System.Object
                      []}…}
errors              : {}
resources           : {@{resourceId=1d0bbbec-c360-44c6-8f00-908f622fafe1; type=Esxi}, @{resource
                      Id=72cd2e7d-8810-4032-b837-0686613e478c; type=Esxi}, @{resourceId=71c316ae
                      -a430-4559-9945-5bbe582b4ec7; type=Esxi}, @{resourceId=aeee92d4-3440-4945-
                      9495-efaea7fa1e46; type=Domain}…}
resolutionStatus    : UNRESOLVED
isCancellable       : False
isRetryable         : True

 

サブ タスクの情報も確認しておきます。

PS> Get-VCFTask -id e8e89e5c-55a8-46ac-b819-8efd4ea70fbe | Select-Object -ExpandProperty subTasks | Select-Object status,creationTimestamp,completionTimestamp,name

status     creationTimestamp   completionTimestamp name
------     -----------------   ------------------- ----
SUCCESSFUL 2024/11/17 16:18:55 2024/11/17 16:18:55 Generate Workload Domain Resources for Allocation Input Data
SUCCESSFUL 2024/11/17 16:18:55 2024/11/17 16:18:56 Allocate resources
SUCCESSFUL 2024/11/17 16:18:56 2024/11/17 16:18:56 Generate Workload Domain Creation Locking Input Data
SUCCESSFUL 2024/11/17 16:18:56 2024/11/17 16:18:56 Acquire Resource Locks
SUCCESSFUL 2024/11/17 16:18:56 2024/11/17 16:18:56 Validate Backup User Password Conforms to Required Password Policy
SUCCESSFUL 2024/11/17 16:18:56 2024/11/17 16:18:57 Validate Management Workload Domain has enough Resources for NSX Deployment
SUCCESSFUL 2024/11/17 16:18:57 2024/11/17 16:18:57 Automation Helper Action
SUCCESSFUL 2024/11/17 16:18:58 2024/11/17 16:19:04 Perform set of validations for current workflow
SUCCESSFUL 2024/11/17 16:19:04 2024/11/17 16:19:05 Automation Helper Action
SUCCESSFUL 2024/11/17 16:19:06 2024/11/17 16:19:06 Validate NSX Version is Compliant with VMware Cloud Foundation
SUCCESSFUL 2024/11/17 16:19:06 2024/11/17 16:20:24 Validate NSX Input Specification
SUCCESSFUL 2024/11/17 16:20:24 2024/11/17 16:20:24 Get NSX Version Compliant with VMware Cloud Foundation
SUCCESSFUL 2024/11/17 16:20:24 2024/11/17 16:20:25 Validate NSX Install Image is Available
SUCCESSFUL 2024/11/17 16:20:25 2024/11/17 16:20:25 Validate NSX Compute Managers Availability
SUCCESSFUL 2024/11/17 16:20:25 2024/11/17 16:20:46 Validate ESXi Hosts do not Contain Disallowed NSX vSphere Installation Bundles (VIBs)
SUCCESSFUL 2024/11/17 16:20:46 2024/11/17 16:20:46 Automation Helper Action
SUCCESSFUL 2024/11/17 16:20:46 2024/11/17 16:20:46 Update the inventory host with MTU and VLAN ID of the ESXI's management network
SUCCESSFUL 2024/11/17 16:20:46 2024/11/17 16:20:47 Prevalidate Add Workload Domain
SUCCESSFUL 2024/11/17 16:20:47 2024/11/17 16:20:47 Generate Validate vSAN disks for ESXi Hosts Input Data
SUCCESSFUL 2024/11/17 16:20:47 2024/11/17 16:20:47 Validate if ESXi Host(s) Do Not Use DHCP for the Management Network
SUCCESSFUL 2024/11/17 16:20:48 2024/11/17 16:20:49 Validate vSAN ESA disks for ESXi Host(s)
SUCCESSFUL 2024/11/17 16:20:49 2024/11/17 16:20:50 Generate Add Workload Domain Input Data
SUCCESSFUL 2024/11/17 16:20:50 2024/11/17 16:20:56 Validate Workload Domain Deployment Specification
SUCCESSFUL 2024/11/17 16:20:56 2024/11/17 16:20:56 Obtain ESXi Host(s) Details
SUCCESSFUL 2024/11/17 16:20:56 2024/11/17 16:20:56 Update ESXi Host(s) Details in Runtime Data Model for Add Workload Domain
SUCCESSFUL 2024/11/17 16:20:56 2024/11/17 16:20:57 Generate Add Workload Domain Input Data
SUCCESSFUL 2024/11/17 16:20:57 2024/11/17 16:20:57 Validate Stale vCenter References in PSC Action
SUCCESSFUL 2024/11/17 16:20:57 2024/11/17 16:20:57 Retrieve Backup Configuration
SUCCESSFUL 2024/11/17 16:20:57 2024/11/17 16:20:58 Validate Backup Location Details
SUCCESSFUL 2024/11/17 16:20:58 2024/11/17 16:20:59 Validate Virtual Machine Names Do Not Exist in the vCenter Server Inventory
SUCCESSFUL 2024/11/17 16:20:59 2024/11/17 16:20:59 Validate ESXi Host(s) Details
SUCCESSFUL 2024/11/17 16:20:59 2024/11/17 16:20:59 Fetch Product Images
SUCCESSFUL 2024/11/17 16:20:59 2024/11/17 16:21:00 Allocate ESXi Host(s) IP Addresses
SUCCESSFUL 2024/11/17 16:21:00 2024/11/17 16:21:00 Persist Allocated ESXi Hosts IP Addresses in the SDDC Manager Inventory
SUCCESSFUL 2024/11/17 16:21:00 2024/11/17 16:21:00 Generate the Workload Domain Details to Populate the SDDC Manager Inventory
SUCCESSFUL 2024/11/17 16:21:01 2024/11/17 16:21:01 Update the SDDC Manager Inventory with the Workload Domain Details
SUCCESSFUL 2024/11/17 16:21:01 2024/11/17 16:21:01 Create Workload Domain Service Account Credentials
SUCCESSFUL 2024/11/17 16:21:01 2024/11/17 16:21:02 Mount the vCenter Server ISO Image
SUCCESSFUL 2024/11/17 16:21:02 2024/11/17 16:21:02 Register Current Task
SUCCESSFUL 2024/11/17 16:21:02 2024/11/17 16:21:02 Obtain vSphere Cluster Image's Details
SUCCESSFUL 2024/11/17 16:21:03 2024/11/17 16:21:05 Generate Workload Domain Runtime Data Model
SUCCESSFUL 2024/11/17 16:21:06 2024/11/17 16:21:06 Generate Workload Domain Workflow Input Data
SUCCESSFUL 2024/11/17 16:21:06 2024/11/17 16:21:08 Validate Workload Domain Input Data
SUCCESSFUL 2024/11/17 16:21:08 2024/11/17 16:21:08 Generate Validate ESXi Host(s) vMotion Network Connectivity Input Data
SUCCESSFUL 2024/11/17 16:21:08 2024/11/17 16:22:18 Validate vMotion Network Connectivity
SUCCESSFUL 2024/11/17 16:22:18 2024/11/17 16:23:27 Validate vSAN Network Connectivity
SUCCESSFUL 2024/11/17 16:23:28 2024/11/17 16:23:28 Updates join Single Sign-On (SSO) status for vCenter Server
SUCCESSFUL 2024/11/17 16:23:28 2024/11/17 16:23:30 Validate the Single Sign-On (SSO) Ring Topology
SUCCESSFUL 2024/11/17 16:23:30 2024/11/17 16:23:31 Generate vCenter Server Configuration Data
SUCCESSFUL 2024/11/17 16:23:31 2024/11/17 17:29:13 Deploy vCenter Server Virtual Appliance
SUCCESSFUL 2024/11/17 17:29:13 2024/11/17 17:29:22 Register Embedded Platform Services Controller with SDDC Manager Trust Store
SUCCESSFUL 2024/11/17 17:29:22 2024/11/17 17:29:28 Validate vCenter services are started
SUCCESSFUL 2024/11/17 17:29:28 2024/11/17 17:29:30 Install vCenter Server SSH Key
SUCCESSFUL 2024/11/17 17:29:30 2024/11/17 17:29:30 Generate vCenter Server Federal Information Processing Standards (FIPS) Configuration Input Data
SUCCESSFUL 2024/11/17 17:29:30 2024/11/17 17:29:33 Configure vCenter FIPS
SUCCESSFUL 2024/11/17 17:29:33 2024/11/17 17:29:34 Register SDDC Manager as an extension in vCenter Server
SUCCESSFUL 2024/11/17 17:29:34 2024/11/17 17:30:27 Join vCenter Server to the Single Sign-On (SSO) Ring Topology
SUCCESSFUL 2024/11/17 17:30:27 2024/11/17 17:30:29 Create Datacenter and populate Managed Object ID in the Internal Add Cluster Model
SUCCESSFUL 2024/11/17 17:30:29 2024/11/17 17:30:30 Configure Deployment Details
SUCCESSFUL 2024/11/17 17:30:30 2024/11/17 17:30:30 Authorize SDDC Admins Group
SUCCESSFUL 2024/11/17 17:30:30 2024/11/17 17:30:31 Obtain vCenter Server Object MOIDs
SUCCESSFUL 2024/11/17 17:30:31 2024/11/17 17:30:31 Create SDDC Manager to vCenter Server Service Account Credentials
SUCCESSFUL 2024/11/17 17:30:31 2024/11/17 17:30:31 Generate vCenter Server Service Accounts Data
SUCCESSFUL 2024/11/17 17:30:31 2024/11/17 17:30:32 Automation Helper Action
SUCCESSFUL 2024/11/17 17:30:32 2024/11/17 17:30:34 Create vCenter Server Users
SUCCESSFUL 2024/11/17 17:30:34 2024/11/17 17:30:34 Create vCenter Server Roles
SUCCESSFUL 2024/11/17 17:30:34 2024/11/17 17:30:35 Assign User Roles in vCenter Server
SUCCESSFUL 2024/11/17 17:30:35 2024/11/17 17:30:36 Add Disaster Recovery Service Users to Administrator Group in vCenter Server
SUCCESSFUL 2024/11/17 17:30:36 2024/11/17 17:30:37 Read Certificate Authority Certificate Chain from File
SUCCESSFUL 2024/11/17 17:30:37 2024/11/17 17:30:44 Import Trusted Root Certificates in vCenter Server
SUCCESSFUL 2024/11/17 17:30:44 2024/11/17 17:30:46 Update NSX Firewall Exclusion List
SUCCESSFUL 2024/11/17 17:30:46 2024/11/17 17:33:19 Upload vSphere Lifecycle Manager Image to vCenter Server
SUCCESSFUL 2024/11/17 17:33:19 2024/11/17 17:33:20 Upload vSAN HCL to vCenter
SUCCESSFUL 2024/11/17 17:33:20 2024/11/17 17:33:21 Obtain vSphere Lifecycle Manager Cluster Image Version
SUCCESSFUL 2024/11/17 17:33:21 2024/11/17 17:33:30 Create vSphere Cluster
SUCCESSFUL 2024/11/17 17:33:30 2024/11/17 17:33:43 Initialize vSAN cluster
SUCCESSFUL 2024/11/17 17:33:43 2024/11/17 17:33:44 Update the Runtime Data Model with the Cluster's Managed Object ID from vCenter Server
SUCCESSFUL 2024/11/17 17:33:44 2024/11/17 17:33:44 Automation Helper Action
SUCCESSFUL 2024/11/17 17:33:44 2024/11/17 17:33:45 Disable vSphere Cluster Services
SUCCESSFUL 2024/11/17 17:33:45 2024/11/17 17:33:57 Import vSphere Lifecycle Manager Image from Desired Software Specification
SUCCESSFUL 2024/11/17 17:33:57 2024/11/17 17:34:08 Commit vSphere Lifecycle Manager Image Draft as Cluster Image
SUCCESSFUL 2024/11/17 17:34:08 2024/11/17 17:34:12 Create vSphere Distributed Switch
SUCCESSFUL 2024/11/17 17:34:12 2024/11/17 17:34:14 Enable Network I/O Control (NIOC) on vSphere Distributed Switch
SUCCESSFUL 2024/11/17 17:34:14 2024/11/17 17:34:22 Create Distributed Port Groups
SUCCESSFUL 2024/11/17 17:34:22 2024/11/17 17:34:28 Tag VLAN IDs on Distributed Port Groups
SUCCESSFUL 2024/11/17 17:34:28 2024/11/17 17:34:28 Generate Persist Source ID from vCenter Server of vSphere Distributed Switch in SDDC Manager Inventory Input Data
SUCCESSFUL 2024/11/17 17:34:29 2024/11/17 17:34:29 Persist Source ID from vCenter Server of vSphere Distributed Switch in SDDC Manager Inventory
SUCCESSFUL 2024/11/17 17:34:29 2024/11/17 17:34:29 Generate Persist Source ID from vCenter Server of vSphere Distributed Virtual Port Groups in SDDC Manager Inventory Input Data
SUCCESSFUL 2024/11/17 17:34:29 2024/11/17 17:34:29 Persist Source ID from vCenter Server of vSphere Distributed Virtual Port Groups in SDDC Manager Inventory
SUCCESSFUL 2024/11/17 17:34:29 2024/11/17 17:34:29 Generate ESXi Lockdown Mode Input Data
SUCCESSFUL 2024/11/17 17:34:30 2024/11/17 17:34:30 Retrieve ESXi Host Lockdown Mode Configuration
SUCCESSFUL 2024/11/17 17:34:30 2024/11/17 17:34:31 Disable Lockdown Mode on ESXi Hosts
SUCCESSFUL 2024/11/17 17:34:31 2024/11/17 17:36:05 Add ESXi Host to vSphere Cluster
SUCCESSFUL 2024/11/17 17:36:06 2024/11/17 17:36:06 Generate Enter ESXi Host(s) to Maintenance Mode Input
SUCCESSFUL 2024/11/17 17:36:06 2024/11/17 17:36:43 Enter ESXi Host(s) in Maintenance Mode
SUCCESSFUL 2024/11/17 17:36:43 2024/11/17 17:36:45 Configure Lockdown Mode on ESXi Hosts
SUCCESSFUL 2024/11/17 17:36:45 2024/11/17 17:36:53 Add ESXi Hosts to vSphere Distributed Switch
SUCCESSFUL 2024/11/17 17:36:54 2024/11/17 17:36:59 Create vMotion vmknic(s) on ESXi Host
SUCCESSFUL 2024/11/17 17:36:59 2024/11/17 17:37:24 Create vSAN vmknic(s) on ESXi Host
SUCCESSFUL 2024/11/17 17:37:24 2024/11/17 17:37:31 Migrate ESXi Host Management vmknic(s) to vSphere Distributed Switch
SUCCESSFUL 2024/11/17 17:37:31 2024/11/17 17:37:32 Detach vmknic(s) from vSphere Standard Switch
SUCCESSFUL 2024/11/17 17:37:32 2024/11/17 17:37:35 Attach vmknic(s) to vSphere Distributed Switch
SUCCESSFUL 2024/11/17 17:37:35 2024/11/17 17:37:36 Remove vSphere Standard Switches from ESXi Hosts
SUCCESSFUL 2024/11/17 17:37:36 2024/11/17 17:37:36 Generate Configure Power Management Policy on ESXi Host(s) Input Data
SUCCESSFUL 2024/11/17 17:37:36 2024/11/17 17:37:37 Configure Power Management Policy on ESXi Host(s)
SUCCESSFUL 2024/11/17 17:37:37 2024/11/17 17:38:09 Perform vSAN ESA Auto Disk Claim
SUCCESSFUL 2024/11/17 17:38:10 2024/11/17 17:38:10 Generate Persist Source ID from vCenter Server of Datastore in SDDC Manager Inventory Input Data
SUCCESSFUL 2024/11/17 17:38:10 2024/11/17 17:38:10 Persist Source ID from vCenter Server of Datastore in SDDC Manager Inventory
SUCCESSFUL 2024/11/17 17:38:10 2024/11/17 17:38:17 Exit ESXi Host(s) in Maintenance Mode
SUCCESSFUL 2024/11/17 17:38:17 2024/11/17 17:38:17 Automation Helper Action
SUCCESSFUL 2024/11/17 17:38:17 2024/11/17 17:41:30 Enable vSphere Cluster Services
SUCCESSFUL 2024/11/17 17:41:30 2024/11/17 17:41:33 Update FTT value for vSAN ESA cluster
SUCCESSFUL 2024/11/17 17:41:34 2024/11/17 17:41:36 Enable DRS on the vSphere Cluster
SUCCESSFUL 2024/11/17 17:41:36 2024/11/17 17:43:31 Configure vSphere HA
SUCCESSFUL 2024/11/17 17:43:32 2024/11/17 17:43:34 Configure HA Isolation Address Option
SUCCESSFUL 2024/11/17 17:43:34 2024/11/17 17:43:36 Checking the datastore availability
SUCCESSFUL 2024/11/17 17:43:36 2024/11/17 17:44:58 Remediate ESXi Host(s) to be Compliant with Cluster's Image
SUCCESSFUL 2024/11/17 17:44:58 2024/11/17 17:44:58 Generate Inputs for Watermarking newly deployed vCenter
SUCCESSFUL 2024/11/17 17:44:58 2024/11/17 17:44:59 Watermark vCenter Server
SUCCESSFUL 2024/11/17 17:44:59 2024/11/17 17:45:00 Fetch Remediated ESXi Host Version from the Cluster Image
SUCCESSFUL 2024/11/17 17:45:00 2024/11/17 17:45:00 Update Remediated ESXi Host(s) Version in SDDC Manager Inventory
SUCCESSFUL 2024/11/17 17:45:00 2024/11/17 17:45:00 Update SDDC Manager Inventory with Cluster Details
SUCCESSFUL 2024/11/17 17:45:01 2024/11/17 17:45:01 Update ESXi Host's Source ID in the SDDC Manager Inventory
SUCCESSFUL 2024/11/17 17:45:01 2024/11/17 17:45:01 Add newly deployed vCenter in monitoring framework
SUCCESSFUL 2024/11/17 17:45:01 2024/11/17 17:45:02 Generate Migrate VCF Attached Tags to vCenter Server Input Data
SUCCESSFUL 2024/11/17 17:45:02 2024/11/17 17:45:02 Migrate VCF Attached Tags to vCenter Server
SUCCESSFUL 2024/11/17 17:45:02 2024/11/17 17:45:02 Generate NSX Input Data
SUCCESSFUL 2024/11/17 17:45:02 2024/11/17 17:45:03 Update the SDDC Manager Inventory with NSX Details Prior to Deployment
SUCCESSFUL 2024/11/17 17:45:03 2024/11/17 17:45:03 Automation Helper Action
SUCCESSFUL 2024/11/17 17:45:03 2024/11/17 17:45:04 Create NSX Manager to vCenter Server Service Account Credentials
SUCCESSFUL 2024/11/17 17:45:04 2024/11/17 17:45:05 Automation Helper Action
SUCCESSFUL 2024/11/17 17:45:05 2024/11/17 17:45:05 Generate vCenter Server Service Accounts Data
SUCCESSFUL 2024/11/17 17:45:06 2024/11/17 17:45:06 Automation Helper Action
SUCCESSFUL 2024/11/17 17:45:06 2024/11/17 17:45:08 Create vCenter Server Users
SUCCESSFUL 2024/11/17 17:45:08 2024/11/17 17:45:08 Create vCenter Server Roles
SUCCESSFUL 2024/11/17 17:45:08 2024/11/17 17:45:09 Assign User Roles in vCenter Server
SUCCESSFUL 2024/11/17 17:45:09 2024/11/17 17:45:09 Automation Helper Action
SUCCESSFUL 2024/11/17 17:45:09 2024/11/17 17:45:10 Create NSX Workload Domain Credentials
SUCCESSFUL 2024/11/17 17:45:10 2024/11/17 17:45:11 Automation Helper Action
SUCCESSFUL 2024/11/17 17:45:11 2024/11/17 17:47:20 Validate ESXi Host(s) Connectivity to the NSX
SUCCESSFUL 2024/11/17 17:47:21 2024/11/17 20:52:14 Deploy NSX Manager
SUCCESSFUL 2024/11/17 20:52:14 2024/11/17 21:11:51 Join NSX Managers
SUCCESSFUL 2024/11/17 21:11:51 2024/11/17 21:11:51 Automation Helper Action
SUCCESSFUL 2024/11/17 21:11:51 2024/11/17 21:18:08 Set VIP For NSX Managers
SUCCESSFUL 2024/11/17 21:18:08 2024/11/17 21:18:56 Issue VMCA Certificate for NSX Managers
SUCCESSFUL 2024/11/17 21:18:56 2024/11/17 21:19:39 Issue VMCA Certificate for NSX Managers Using Virtual IP
SUCCESSFUL 2024/11/17 21:19:39 2024/11/17 21:21:01 Update SDDC Manager's known_hosts file with NSX SSH Key
SUCCESSFUL 2024/11/17 21:21:02 2024/11/17 21:21:05 Create NSX Anti Affinity Rule
SUCCESSFUL 2024/11/17 21:21:06 2024/11/17 21:21:11 Apply NSX License
SUCCESSFUL 2024/11/17 21:21:11 2024/11/17 21:21:32 Configure NSX Backup Schedule
SUCCESSFUL 2024/11/17 21:21:33 2024/11/17 21:22:15 Update NSX Manager User Attributes
SUCCESSFUL 2024/11/17 21:22:15 2024/11/17 21:22:19 Enable vLCM deployment configuration for VCF in NSX
SUCCESSFUL 2024/11/17 21:22:19 2024/11/17 21:22:24 Accept End User License Agreement for NSX
SUCCESSFUL 2024/11/17 21:22:24 2024/11/17 21:22:25 Generate Cluster High Availability Virtual Machine Restart Order Data
SUCCESSFUL 2024/11/17 21:22:25 2024/11/17 21:22:29 Override HA VM Restart Priority For Clusters
SUCCESSFUL 2024/11/17 21:22:29 2024/11/17 21:22:30 Generate Inputs for Watermarking newly deployed NSX Manager
SUCCESSFUL 2024/11/17 21:22:30 2024/11/17 21:22:31 Watermark NSX Manager
SUCCESSFUL 2024/11/17 21:22:31 2024/11/17 21:22:32 Update the SDDC Manager Inventory with NSX Details
SUCCESSFUL 2024/11/17 21:22:32 2024/11/17 21:22:33 Automation Helper Action
SUCCESSFUL 2024/11/17 21:22:33 2024/11/17 21:22:33 Generate NSX Input Data
SUCCESSFUL 2024/11/17 21:22:33 2024/11/17 21:22:34 Generate Overlay Networking Input Data
SUCCESSFUL 2024/11/17 21:22:35 2024/11/17 21:22:35 Validate ESXi Host(s) Connectivity to the NSX
SUCCESSFUL 2024/11/17 21:22:35 2024/11/17 21:25:23 Configure NSX Fabric Compute Manager
SUCCESSFUL 2024/11/17 21:25:24 2024/11/17 21:25:29 Create NSX Transport Zones
SUCCESSFUL 2024/11/17 21:25:29 2024/11/17 21:25:30 Automation Helper Action
SUCCESSFUL 2024/11/17 21:25:30 2024/11/17 21:25:34 Create NSX Uplink Profile
SUCCESSFUL 2024/11/17 21:25:34 2024/11/17 21:25:35 Prepare Inputs for Sub Transport Node Profile
SUCCESSFUL 2024/11/17 21:25:35 2024/11/17 21:25:36 Create or update NSX SubCluster
SUCCESSFUL 2024/11/17 21:25:36 2024/11/17 21:25:41 Create NSX Transport Node Profile
SUCCESSFUL 2024/11/17 21:25:42 2024/11/17 22:00:06 Create Transport Node Collection
SUCCESSFUL 2024/11/17 22:00:06 2024/11/17 22:00:07 Validate ESXi Host(s) Connectivity to the NSX
SUCCESSFUL 2024/11/17 22:00:07 2024/11/17 22:00:07 Automation Helper Action
SUCCESSFUL 2024/11/17 22:00:07 2024/11/17 22:00:13 Update Firewall Exclusion List
SUCCESSFUL 2024/11/17 22:00:13 2024/11/17 22:00:14 Generate Disable SSH On ESXi Host(s) Input Data
SUCCESSFUL 2024/11/17 22:00:14 2024/11/17 22:00:15 Disable SSH on ESXi host
SUCCESSFUL 2024/11/17 22:00:15 2024/11/17 22:00:18 Clear Alarms on ESXi Hosts
SUCCESSFUL 2024/11/17 22:00:18 2024/11/17 22:00:18 Update the SDDC Manager Inventory with new Workload Domain Details
SUCCESSFUL 2024/11/17 22:00:18 2024/11/17 22:00:19 Generate input data for unmount vCenter Server ISO Image.
SUCCESSFUL 2024/11/17 22:00:19 2024/11/17 22:00:21 Unmount the vCenter Server ISO Image
SUCCESSFUL 2024/11/17 22:00:21 2024/11/17 22:00:21 Generate Update ESXi Host(s) Source ID in the SDDC Manager Inventory Data
SUCCESSFUL 2024/11/17 22:00:21 2024/11/17 22:00:22 Update ESXi Host's Source ID in the SDDC Manager Inventory
SUCCESSFUL 2024/11/17 22:00:22 2024/11/17 22:00:22 Add newly deployed vCenter in monitoring framework
SUCCESSFUL 2024/11/17 22:00:22 2024/11/17 22:00:22 Update the NSX switch configuration in the vSphere Distributed Switch inventory
SUCCESSFUL 2024/11/17 22:00:23 2024/11/17 22:00:24 Checks whether SDDC Manager is registered as the Relying Party of WS1B
SUCCESSFUL 2024/11/17 22:00:24 2024/11/17 22:00:24 Register NSX as the Relying Party of WS1B
SUCCESSFUL 2024/11/17 22:00:24 2024/11/17 22:00:24 Release allocated resources
SUCCESSFUL 2024/11/17 22:00:24 2024/11/17 22:00:25 Automation Helper Action
SUCCESSFUL 2024/11/17 22:00:25 2024/11/17 22:00:25 Build Event data for given input
SUCCESSFUL 2024/11/17 22:00:25 2024/11/17 22:00:26 Publish Event in SDDC Manager Inventory
SUCCESSFUL 2024/11/17 22:00:26 2024/11/17 22:00:27 Generate Release Resources Lock Data
SUCCESSFUL 2024/11/17 22:00:27 2024/11/17 22:00:27 Release Resource Locks

 

作成された VI Workload Domain の様子

作成されたクラスタは、vSAN ESA クラスタ(primaryDatastoreType:VSAN_ESA)として構成されています。

PS C:\Users\Administrator.C> Get-VCFCluster -name vcf-w01-cl01

id                       : a062f0d7-6780-4211-a51e-8ce5d3e9099e
domain                   : @{id=aeee92d4-3440-4945-9495-efaea7fa1e46}
name                     : vcf-w01-cl01
status                   : ACTIVE
primaryDatastoreName     : vcf-w01-cl01-vsan
primaryDatastoreType     : VSAN_ESA
hosts                    : {@{id=71c316ae-a430-4559-9945-5bbe582b4ec7}, @{id=1d0bbbec-c360-44c6-8f00-908f622fafe1}, @{id=72cd2e7d-8810-4032-b837-0686613e478c}}
isStretched              : False
isDefault                : True
failuresToTolerate       : 1
isImageBased             : True
capacity                 : @{cpu=; memory=; storage=}
vcenter                  : @{id=d826b18b-8ee0-4178-abc6-86a04a0aed72; fqdn=vcf-w01-vc-01.c.go-lab.jp; vcInstanceId=ac15332f-deb9-44bd-8051-0e70bb5f71b1}
managedObjectReferenceId : domain-c9
vsanClusterMode          : NONE

 

SDDC Manager でも、VI Workload Domain の作成が完了したことがわかります。

 

クラスタが、vSAN ESA になっています。

 

vSphere Client でも、VI Workload Domain の vCenter が登録され、vSAN ESA クラスタが作成されていることが確認できます。

 

以上、PowerVCF で vSAN ESA の VI Workload Domain を展開してみる話でした。