Merge pull request #1320 from kelseyhightower/run-without-machines

apiserver does not require a cloud provider or machine list
This commit is contained in:
Dawn Chen 2014-09-15 12:13:33 -07:00
commit 91e9089819

View File

@ -60,7 +60,7 @@ func init() {
func verifyMinionFlags() {
if *cloudProvider == "" || *minionRegexp == "" {
if len(machineList) == 0 {
glog.Fatal("No machines specified!")
glog.Info("No machines specified!")
}
return
}