Skip to content

Commit

Permalink
Merge pull request #73 from aveshagarwal/master-rebase-kube-1-9
Browse files Browse the repository at this point in the history
Rebase to kube 1 9
  • Loading branch information
aveshagarwal authored Jan 9, 2018
2 parents 7df543d + e858c9e commit d3c2f25
Show file tree
Hide file tree
Showing 16,627 changed files with 1,917,870 additions and 1,586,819 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion cmd/descheduler/app/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.
package options

import (
"k8s.io/kubernetes/pkg/client/clientset_generated/clientset"
clientset "k8s.io/client-go/kubernetes"

// install the componentconfig api so we get its defaulting and conversion functions
"github.com/kubernetes-incubator/descheduler/pkg/apis/componentconfig"
Expand Down
5 changes: 4 additions & 1 deletion cmd/descheduler/descheduler.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,18 @@ limitations under the License.
package main

import (
"flag"
"fmt"
"github.com/kubernetes-incubator/descheduler/cmd/descheduler/app"
"os"

"github.com/kubernetes-incubator/descheduler/cmd/descheduler/app"
)

func main() {
out := os.Stdout
cmd := app.NewDeschedulerCommand(out)
cmd.AddCommand(app.NewVersionCommand())
flag.CommandLine.Parse([]string{})
if err := cmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
Expand Down
Loading

0 comments on commit d3c2f25

Please sign in to comment.