VCF 5.2 was released for GA a few days ago. I wanted to make sure I provided an update post with some of the changes I’ve made for the lab, and the json manifest.
Software Versions used in this demo
Software | Version |
---|---|
VMware Cloud Foundation | 5.2 |
Physical vSphere Host | 8.0 Update 3 |
Update to Blog post
Please see the primary VCF deployment blog post. I explain all the steps on how to get VCF up and running in your home lab. This post is just to update on some of new pieces for 5.2.
What’s changed in the product?
You can see the official release notes here: VCF 5.2 Release Notes
What’s changed in my lab?
I purchased an unmanaged 10GbE switch (TP-Link TL-SX1008) so that I could move data between the virtualized hosts faster, and still give them internet connectivity. If you recall in a recent post, I was overwhelming the 1GbE links between each of the physical ESXI hosts, and it was causing things like vmotion to operate much slower than I liked. I added 10GB NICs to each of the SuperMicro hosts and put a cat 6 between them. That solved the vmotion problem, but since it was an isolated link, no internet access, and any pings to a gateway would fail. So I bit the bullet and just upgraded the switch.
Only other change was the licensing thing I discuss below. I’ll post the updated lab diagram here.

Updated json config for VCF Cloud Builder Tool
The main thing that has changed from below is the addition of the “deployWithoutLicenseKeys” parameter. I was running into some issues with the license serial keys I had, so it seems to fix the issue with applying that parameter. It will deploy VCF and all the components, but just put a temp license on them, you can always come back to the SDDC manager at a later time and add new licenses.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | { "subscriptionLicensing": false, "skipEsxThumbprintValidation": true, "deployWithoutLicenseKeys": true, "managementPoolName": "vcf-mgmt-01", "sddcManagerSpec": { "secondUserCredentials": { "username": "vcf", "password": "" }, "ipAddress": "192.168.3.60", "hostname": "vcf-sddc-mgr", "rootUserCredentials": { "username": "root", "password": "" }, "localUserPassword": "" }, "sddcId": "vcf-01", // "esxLicense": "", "taskName": "workflowconfig/workflowspec-ems.json", "ceipEnabled": false, "fipsEnabled": false, "ntpServers": ["pool.ntp.org"], "dnsSpec": { "subdomain": "home.lab", "domain": "home.lab", "nameserver": "192.168.3.6" }, "networkSpecs": [ { "networkType": "MANAGEMENT", "subnet": "192.168.3.0/24", "gateway": "192.168.3.1", "vlanId": "3", "mtu": "9000", "portGroupKey": "cl01-vds01-pg-mgmt", "standbyUplinks":[], "activeUplinks":[ "uplink1", "uplink2" ] }, { "networkType": "VMOTION", "subnet": "192.168.50.0/24", "gateway": "192.168.50.1", "vlanId": "1612", "mtu": "9000", "portGroupKey": "cl01-vds02-pg-vmotion", "includeIpAddressRanges": [{"endIpAddress": "192.168.50.104", "startIpAddress": "192.168.50.101"}], "standbyUplinks":[], "activeUplinks":[ "uplink1", "uplink2" ] }, { "networkType": "VSAN", "subnet": "192.168.51.0/24", "gateway": "192.168.51.1", "vlanId": "1613", "mtu": "9000", "portGroupKey": "cl01-vds02-pg-vsan", "includeIpAddressRanges": [{"endIpAddress": "192.168.51.104", "startIpAddress": "192.168.51.101"}], "standbyUplinks":[], "activeUplinks":[ "uplink1", "uplink2" ] }, { "networkType": "VM_MANAGEMENT", "subnet": "192.168.3.0/24", "gateway": "192.168.3.1", "vlanId": "3", "mtu": "9000", "portGroupKey": "cl01-vds01-pg-vm-mgmt", "standbyUplinks":[], "activeUplinks":[ "uplink1", "uplink2" ] } ], "nsxtSpec": { "nsxtManagerSize": "small", "nsxtManagers": [ { "hostname": "vcf-nsxa", "ip": "192.168.3.61" } ], "rootNsxtManagerPassword": "", "nsxtAdminPassword": "", "nsxtAuditPassword": "", "vip": "192.168.3.62", "vipFqdn": "vcf-nsx", // "nsxtLicense": "", "transportVlanId": 1614 }, "vsanSpec": { // "licenseFile": "", "vsanDedup": "true", "esaConfig": { "enabled": false }, "datastoreName": "cl01-ds-vsan01" }, "dvsSpecs": [ { "dvsName": "cl01-vds01", "vmnics": [ "vmnic0", "vmnic1" ], "mtu": 9000, "networks":[ "MANAGEMENT", "VM_MANAGEMENT" ], "niocSpecs":[ { "trafficType":"VSAN", "value":"HIGH" }, { "trafficType":"VMOTION", "value":"LOW" }, { "trafficType":"VDP", "value":"LOW" }, { "trafficType":"VIRTUALMACHINE", "value":"HIGH" }, { "trafficType":"MANAGEMENT", "value":"NORMAL" }, { "trafficType":"NFS", "value":"LOW" }, { "trafficType":"HBR", "value":"LOW" }, { "trafficType":"FAULTTOLERANCE", "value":"LOW" }, { "trafficType":"ISCSI", "value":"LOW" } ], "nsxtSwitchConfig": { "transportZones": [ { "name": "vcf-01-tz-overlay01", "transportType": "OVERLAY" }, { "name": "vcf-01-tz-vlan01", "transportType": "VLAN" } ] } }, { "dvsName": "cl01-vds02", "vmnics": [ "vmnic2", "vmnic3" ], "mtu": 9000, "networks":[ "VSAN", "VMOTION" ], "nsxtSwitchConfig": { "transportZones": [ { "name": "vcf-01-tz-vlan02", "transportType": "VLAN" } ] } } ], "clusterSpec": { "clusterName": "cl01", "clusterEvcMode": "", "clusterImageEnabled": true, "vmFolders": { "MANAGEMENT": "vcf-01-fd-mgmt", "NETWORKING": "vcf-01-fd-nsx", "EDGENODES": "vcf-01-fd-edge" }, "resourcePoolSpecs": [{ "name": "cl01-rp-sddc-mgmt", "type": "management", "cpuReservationPercentage": 0, "cpuLimit": -1, "cpuReservationExpandable": true, "cpuSharesLevel": "normal", "cpuSharesValue": 0, "memoryReservationMb": 0, "memoryLimit": -1, "memoryReservationExpandable": true, "memorySharesLevel": "normal", "memorySharesValue": 0 }, { "name": "cl01-rp-sddc-edge", "type": "network", "cpuReservationPercentage": 0, "cpuLimit": -1, "cpuReservationExpandable": true, "cpuSharesLevel": "normal", "cpuSharesValue": 0, "memoryReservationPercentage": 0, "memoryLimit": -1, "memoryReservationExpandable": true, "memorySharesLevel": "normal", "memorySharesValue": 0 }, { "name": "cl01-rp-user-edge", "type": "compute", "cpuReservationPercentage": 0, "cpuLimit": -1, "cpuReservationExpandable": true, "cpuSharesLevel": "normal", "cpuSharesValue": 0, "memoryReservationPercentage": 0, "memoryLimit": -1, "memoryReservationExpandable": true, "memorySharesLevel": "normal", "memorySharesValue": 0 }, { "name": "cl01-rp-user-vm", "type": "compute", "cpuReservationPercentage": 0, "cpuLimit": -1, "cpuReservationExpandable": true, "cpuSharesLevel": "normal", "cpuSharesValue": 0, "memoryReservationPercentage": 0, "memoryLimit": -1, "memoryReservationExpandable": true, "memorySharesLevel": "normal", "memorySharesValue": 0 }] }, "pscSpecs": [ { "adminUserSsoPassword": "", "pscSsoSpec": { "ssoDomain": "vsphere.local" } } ], "vcenterSpec": { "vcenterIp": "192.168.3.63", "vcenterHostname": "vcf-vcenter", // "licenseFile": "", "vmSize": "small", "storageSize": "", "rootVcenterPassword": "" }, "hostSpecs": [ { "association": "dc01", "sshThumbprint": null, "sslThumbprint": null, "ipAddressPrivate": { "ipAddress": "192.168.3.16" }, "hostname": "vesxi-1", "credentials": { "username": "root", "password": "" }, "vSwitch": "vSwitch0" }, { "association": "dc01", "sshThumbprint": null, "sslThumbprint": null, "ipAddressPrivate": { "ipAddress": "192.168.3.17" }, "hostname": "vesxi-2", "credentials": { "username": "root", "password": "" }, "vSwitch": "vSwitch0" }, { "association": "dc01", "sshThumbprint": null, "sslThumbprint": null, "ipAddressPrivate": { "ipAddress": "192.168.3.18" }, "hostname": "vesxi-3", "credentials": { "username": "root", "password": "" }, "vSwitch": "vSwitch0" }, { "association": "dc01", "sshThumbprint": null, "sslThumbprint": null, "ipAddressPrivate": { "ipAddress": "192.168.3.19" }, "hostname": "vesxi-4", "credentials": { "username": "root", "password": "" }, "vSwitch": "vSwitch0" } ] } |