-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
There are two main use cases for coreos-cluster:
- Creating a new cluster
- Expanding an existing cluster
In the case of a new cluster, we should expose the option of creating a new private network, or using an existing private network guid. Whether or not you create a new network, or using an existing one, we'll store metadata on each server created with the guid of the private network connected. This comes into play in the expanding an existing cluster case.
In the case of expanding the existing cluster, we'll simply look up the metadata on the existing nodes, and if a private network guid is found in the metadata, we'll connect the new nodes to this network.
So I foresee two valid options for creating your cluster:
New Network
{
privateNetwork: true
// other options
}Existing Network
{
privateNetwork: 'some-guid-to-your-private-network'
// other options
}Edit: clarified the description
Reactions are currently unavailable