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

This commit is contained in:
Tim Hockin
2015-02-07 20:16:29 -08:00
parent 0b17c0f225
commit 5f021cfc3e
4 changed files with 43 additions and 23 deletions

View File

@@ -19,13 +19,13 @@ package main
import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/version/verflag"
"github.com/GoogleCloudPlatform/kubernetes/plugin/pkg/scheduler/server"
"github.com/GoogleCloudPlatform/kubernetes/plugin/cmd/kube-scheduler/app"
"github.com/spf13/pflag"
)
func main() {
s := server.NewSchedulerServer()
s := app.NewSchedulerServer()
s.AddFlags(pflag.CommandLine)
util.InitFlags()