Reputation: 29567
OpenStack has 3 types of core nodes:
But to me, all Compute/Nova instances are VMs. VMs with file systems. VMs that need to be networked, and ultimately receive their network connections from a physical switch in an actual data center somewhere.
So to have "Storage" and "Network" nodes that provide file system storage and network connections, at first blush, seems unnecessary. Couldn't all nodes be Compute/Nova nodes?
Obviously I'm missing a major piece of the puzzle here, so I ask: what is it that I'm missing?
Upvotes: 4
Views: 254
Reputation: 78011
But to me, all Compute/Nova instances are VMs.
Strictly speaking, this is incorrect. Nova has a number of component parts. Simply put there is a API component which exposes the service interface and one or more compute components that talk to VM hypervisors. So, a single nova compute node can support multiple VMs. The idea is that you scale up Openstack by running more servers capable of hosting virtual machines.
For more details on how Nova works, I suggest reading the developer documentation:
http://docs.openstack.org/developer/nova/devref/architecture.html
I also recommend first learning the interaction between Keystone, Glance and Nova. Hopefully you'll begin to understand how each additional component adds more services to your cloud.
Upvotes: 3