add cloud-controller-manager as the first step in breaking controller-manager

This commit is contained in:
wlan0
2016-10-07 17:39:21 -07:00
parent 731616e0b2
commit 1e48fd18cb
13 changed files with 572 additions and 57 deletions

View File

@@ -90,6 +90,11 @@ func InitCloudProvider(name string, configFilePath string) (Interface, error) {
var cloud Interface
var err error
if name == "external" {
glog.Info("cloud provider external specified.")
return nil, nil
}
if name == "" {
glog.Info("No cloud provider specified.")
return nil, nil