We are moving away from using VMWare over to Windows Failover Cluster (version 2019) to host our company services. I have successfully configured WFC and have a few Virtual-Machine roles running along with the File-Server role and DHCP-Server role. Next is to get our SQL server instances (also version 2019) setup and I am posed with an architectural question.
Is it acceptable to install SQL server clustered role directly onto the bare-metal WFC hypervisors? Let me take a step back..
We want SQL server to be highly-available, just like anything else in the cluster. Following articles such as https://www.mssqltips.com/sqlservertip/6586/clustering-sql-server-2019-step-by-step/ it shows how to setup an always online SQL server instance, which uses WFC as a foundation to facilitate failover between the SQL server instances.
My thought is, why waste resources by firing up two new virtual machines, turning these two machines into a WFC, then installing SQL AO into that WFC when it can just be done in the parent instance? It seems overly redundant, the sql servers can failover within the virtual WFC and each vm can failover within the parent WFC. It seems like this was designed to be installed directly on the main WFC instance alongside other roles.
What is best practice here?