Add a minion registry that is backed by a cloud provider.

This commit is contained in:
Brendan Burns
2014-06-24 22:27:33 -07:00
parent 60e2d4b258
commit 93019b8563
5 changed files with 180 additions and 7 deletions

View File

@@ -38,4 +38,6 @@ type TCPLoadBalancer interface {
type Instances interface {
IPAddress(name string) (net.IP, error)
// Lists instances that match 'filter' which is a regular expression which must match the entire instance name
List(filter string) ([]string, error)
}