Make nodecontroller configure nodes' pod IP ranges

This commit is contained in:
Tomek Kulczynski
2015-02-24 13:32:44 +01:00
committed by CJ Cullen
parent db6586bdab
commit 290c7b94ef
13 changed files with 286 additions and 126 deletions

View File

@@ -80,6 +80,10 @@ type Instances interface {
List(filter string) ([]string, error)
// GetNodeResources gets the resources for a particular node
GetNodeResources(name string) (*api.NodeResources, error)
// Configure the specified instance using the spec
Configure(name string, spec *api.NodeSpec) error
// Delete all the configuration related to the instance, including other cloud resources
Release(name string) error
}
// Zone represents the location of a particular machine.