Add a clusters interface and GCE implementation.

This commit is contained in:
Brendan Burns
2014-11-13 12:35:03 -08:00
parent 8c358f0cae
commit aabf1c3573
7 changed files with 65 additions and 9 deletions

View File

@@ -101,6 +101,10 @@ func newAWSCloud(config io.Reader, authFunc AuthFunc) (*AWSCloud, error) {
}, nil
}
func (aws *AWSCloud) Clusters() (cloudprovider.Clusters, bool) {
return nil, false
}
// TCPLoadBalancer returns an implementation of TCPLoadBalancer for Amazon Web Services.
func (aws *AWSCloud) TCPLoadBalancer() (cloudprovider.TCPLoadBalancer, bool) {
return nil, false