Move VagrantCloud into its own pkg

This commit is contained in:
Tim Hockin
2014-08-19 15:40:46 -07:00
parent b23bef26eb
commit eb9f3394c5
3 changed files with 9 additions and 6 deletions

View File

@@ -29,6 +29,7 @@ import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
"github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider"
"github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider/gce"
"github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider/vagrant"
"github.com/GoogleCloudPlatform/kubernetes/pkg/master"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
verflag "github.com/GoogleCloudPlatform/kubernetes/pkg/version/flag"
@@ -86,7 +87,7 @@ func main() {
}
case "vagrant":
var err error
cloud, err = cloudprovider.NewVagrantCloud()
cloud, err = vagrant_cloud.NewVagrantCloud()
if err != nil {
glog.Fatalf("Couldn't connect to vagrant cloud: %#v", err)
}