move pkg/proxy/server to cmd/kube-proxy/app

This commit is contained in:
Tim Hockin
2015-02-07 13:55:35 -08:00
parent 9f1451121d
commit 8c2ff81ae0
3 changed files with 6 additions and 6 deletions

View File

@@ -21,10 +21,10 @@ package main
import (
"os"
proxy "github.com/GoogleCloudPlatform/kubernetes/cmd/kube-proxy/app"
"github.com/GoogleCloudPlatform/kubernetes/pkg/controllermanager"
"github.com/GoogleCloudPlatform/kubernetes/pkg/hyperkube"
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"
)