move pkg/kubelet/server to cmd/kubelet/app

This commit is contained in:
Tim Hockin
2015-02-07 13:30:53 -08:00
parent 710157ac9e
commit 7fe7f8a542
6 changed files with 11 additions and 11 deletions

View File

@@ -21,9 +21,9 @@ package main
import (
"os"
kubelet "github.com/GoogleCloudPlatform/kubernetes/cmd/kubelet/app"
"github.com/GoogleCloudPlatform/kubernetes/pkg/controllermanager"
"github.com/GoogleCloudPlatform/kubernetes/pkg/hyperkube"
kubelet "github.com/GoogleCloudPlatform/kubernetes/pkg/kubelet/server"
apiserver "github.com/GoogleCloudPlatform/kubernetes/pkg/master/server"
proxy "github.com/GoogleCloudPlatform/kubernetes/pkg/proxy/server"
sched "github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/server"