WilliamLam.com

  • About
    • About
    • Privacy
  • VMware Cloud Foundation
  • VKS
  • Homelab
    • Resources
    • Nested Virtualization
  • VMware Nostalgia
  • Apple
You are here: Home / Automation / VMware Cloud Foundation on Intel NUC?

VMware Cloud Foundation on Intel NUC?

02.24.2023 by William Lam // 10 Comments

Say what!? 😎


As some of you may have noticed, the theme for several of my blog posts this week has been about deploying VMware Cloud Foundation (VCF) in a homelab environment.

To conclude this week, I thought it would be a fun experiment to see if I could leverage all the tricks that I have shared this week (here, here and here) and push the boundary even further and attempt to deploy a VCF Management Domain running on just a single Intel NUC?


Sounds crazy, right? I thought so too until I realized it was actually possible!

While you can deploy a basic VCF Management Domain running on a single Intel NUC, if your intention is to get the full benefit and power out of the VCF solution, you will definitely need more resources and ideally additional ESXi hosts, especially if you want to deploy a VCF Workload Domain and the management components will not fit onto a single Intel NUC.

Disclaimer: This is not officially supported by VMware, use at your own risk.

Requirements:

  • VMware Cloud Builder 4.5 OVA (Build 20612863)
  • VCF 4.5 Licenses
  • Intel NUC configured with
    • 64GB of memory or more
    • Dual onboard networking ("Tall" NUC like Intel NUC 11 Pro, which is what I had used), no USB NICs
    • 2 x SSD that are empty for use for vSAN bootstrap (500GB+ for capacity)
  • ESXi 7.0 Update 3g installed on the Intel NUC using USB device
  • Ability to deploy and run the VMware Cloud Builder (CB) Appliance in a separate environment (ESXi/Fusion/Workstation)

Note: While my experiment used an Intel NUC, any system that meets the basic requirements above should also work.

Procedure:

Step 1 - Boot up the ESXi installer from USB and then perform a standard ESXi installation using the same USB device that it was booted up from

Step 2 - Once ESXi is up and running, you will need to minimally configure networking along with an FQDN (ensure proper DNS resolution), NTP and specify which SSD should be used for the vSAN capacity drive. You can use the DCUI to setup the initial networking but recommend switching to ESXi Shell afterwards and finish the require preparations steps as demonstrated in the following ESXCLI commands:

esxcli system ntp set -e true -s pool.ntp.org
esxcli system hostname set --fqdn vcf-m01-esx01.primp-industries.local
esxcli vsan storage tag add -d [DISK_ID] -t capacityFlash

Note: Use vdq -q command to query for the available disks for use with vSAN and ensure there are no partitions residing on the disks

To ensure that the self-signed TLS certificate that ESXi generates matches that of the FQDN that you had configured, we will need to regenerate the certificate and restart hostd for the changes to go into effect by running the following commands within ESXi Shell:

/bin/generate-certificates
/etc/init.d/hostd restart

Step 3 - Deploy the VMware Cloud builder in a separate environment and wait for it to be accessible over the browser. Once CB is online, download the setup_vmware_cloud_builder_for_one_node_management_domain.sh setup script and transfer that to CB system.

Next, set the script to have executable permission and then run the script as shown below, it will automatically handle prepping the CB appliance to be able to deploy to the Intel NUC. For those interested in the details, the script is simply automating this and this.

chmod +x setup_vmware_cloud_builder_for_one_node_management_domain.sh
./setup_vmware_cloud_builder_for_one_node_management_domain.sh


The script will take some time, especially as it converts the NSX OVA->OVF->OVA and if everything was configured successfully, you should see the same output as the screenshot above.

Step 4 - Download the example JSON deployment file vcf45-management-domain-example.json and and adjust the values based on your environment. In addition to changing the hostname/IP Addresses you will also need to replace all the FILL_ME_IN_VCF_*_LICENSE_KEY with valid VCF 4.5 license keys.

Step 5 - Lastly, open a browser to CB and provide your modified JSON file to deployment wizard and watch the VCF Management Domain get deployed to your Intel NUC or any other system that you are using 🙂


Depending on the available resources, the deployment time will vary but it should eventually complete. Depending on your usage of the VCF Management Domain, you could reduce some of the resources. In my very limited testing, I was able to shutdown SDDC Manager and NSX Manager tune them down to 14GB and they seem to run fine. You probably can do same for vCenter Server, but make sure vCenter Server is operational before you start up both SDDC Manager since it uses vCenter SSO authentication.

More from my site

  • VMware Cloud Foundation 5.0 running on Intel NUC
  • VMware Cloud Foundation with a single ESXi host for Workload Domain?
  • ESXi on Intel NUC 12 Enthusiast (Serpent Canyon)
  • Considerations for future vSphere Homelabs due to upcoming removal of SD card/USB support for ESXi
  • ESXi on 11th Gen Intel NUC (Panther Canyon) & (Tiger Canyon)

Categories // Automation, Home Lab, VMware Cloud Foundation Tags // homelab, Intel NUC, VMware Cloud Foundation

Comments

  1. *protectedHusam Hilal (@husamhilal) says

    02/24/2023 at 12:46 pm

    Would I be able to deploy without a license? Just for testing purposes.
    Also, would a NUC with one NIC work?
    I have NUC 11 Pro (single NIC) - NUC11TNHi70L

    Reply
    • William Lam says

      02/24/2023 at 4:31 pm

      No, you will need valid licenses (hence the requirement section) and you’ll need 2 x NICs (as mentioned again in requirements)

      Reply
  2. *protectedpelusini says

    02/25/2023 at 12:05 am

    What do you mean with "separate environment"? Do I need another NUC?

    Reply
    • William Lam says

      02/25/2023 at 7:17 am

      Another NUC or you can even use your desktop with VMware Fusion/Workstation

      Reply
  3. *protectedLars Day says

    02/25/2023 at 11:51 am

    Is it true that VCF licenses cost $118,000? So how does a home lab afford this huge cost?

    Reply
    • William Lam says

      02/25/2023 at 11:58 am

      $200 for VMUG Advantage (1yr non-prod) and you get access to pretty much the majority of VMware solutions

      Reply
      • *protectedMike says

        03/02/2023 at 7:51 am

        Is it only $100 now?

        Reply
        • William Lam says

          03/02/2023 at 7:56 am

          $200* (sorry, typo). Still great value on top of all the other things you get

          Reply
  4. *protectedMatt Scott says

    03/03/2023 at 4:29 pm

    Great information. As far as SDDC anything that requires $ interaction with Amazon?

    Reply
  5. *protectedMatt says

    07/06/2023 at 6:00 pm

    Here's my error with the script.

    root@CB01 [ ~ ]# chmod +x setup_vmware_cloud_builder_for_one_node_management_domain.sh
    root@CB01 [ ~ ]# ./setup_vmware_cloud_builder_for_one_node_management_domain.sh
    ./setup_vmware_cloud_builder_for_one_node_management_domain.sh: line 7: syntax error near unexpected token `newline'
    ./setup_vmware_cloud_builder_for_one_node_management_domain.sh: line 7: `'

    Reply

Thanks for the comment!Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Search

Thank Author

Author

William is Distinguished Platform Engineering Architect in the VMware Cloud Foundation (VCF) Division at Broadcom. His primary focus is helping customers and partners build, run and operate a modern Private Cloud using the VMware Cloud Foundation (VCF) platform.

Connect

  • Bluesky
  • Email
  • GitHub
  • LinkedIn
  • Mastodon
  • Reddit
  • RSS
  • Twitter
  • Vimeo

Recent

  • Programmatically accessing the Broadcom Compatibility Guide (BCG) 05/06/2025
  • Quick Tip - Validating Broadcom Download Token  05/01/2025
  • Supported chipsets for the USB Network Native Driver for ESXi Fling 04/23/2025
  • vCenter Identity Federation with Authelia 04/16/2025
  • vCenter Server Identity Federation with Kanidm 04/10/2025

Advertisment

Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

Copyright WilliamLam.com © 2025

 

Loading Comments...