Skip to content

Commit

Permalink
Merge pull request #28 from aveshagarwal/master-rebase
Browse files Browse the repository at this point in the history
Rebase to kubernetes 1.7.6
  • Loading branch information
aveshagarwal authored Oct 16, 2017
2 parents 73d9803 + 04dd7a5 commit dd831d0
Show file tree
Hide file tree
Showing 367 changed files with 12,532 additions and 7,338 deletions.
76 changes: 32 additions & 44 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions glide.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package: github.com/kubernetes-incubator/descheduler
import:
- package: k8s.io/client-go
version: e356aa2e77ab4a5914c216c12ba14cce25a25ab0 # kube 1.7.0
version: ec52d278b25c8fef82a965d93afdc74771ea6963
- package: k8s.io/apiserver
version: ab57ed5a72c3b67058f665d660e23bae18339fc2
version: release-1.7
- package: k8s.io/apimachinery
version: abe34e4f5b4413c282a83011892cbeea5b32223b # kube 1.7.0
version: 917740426ad66ff818da4809990480bcc0786a77
- package: k8s.io/kubernetes
version: ebb8d6e0fadfc95f3d64ccecc36c8ed2ac9224ef # kube 1.7.0
version: 1.7.6
- package: github.com/kubernetes/repo-infra
- package: github.com/spf13/cobra
version: f62e98d28ab7ad31d707ba837a966378465c7b57
Expand Down
2 changes: 1 addition & 1 deletion pkg/descheduler/pod/pods_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func TestPodTypes(t *testing.T) {
VolumeSource: v1.VolumeSource{
HostPath: &v1.HostPathVolumeSource{Path: "somePath"},
EmptyDir: &v1.EmptyDirVolumeSource{
SizeLimit: *resource.NewQuantity(int64(10), resource.BinarySI)},
SizeLimit: resource.NewQuantity(int64(10), resource.BinarySI)},
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/descheduler/strategies/duplicates_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func TestFindDuplicatePods(t *testing.T) {
VolumeSource: v1.VolumeSource{
HostPath: &v1.HostPathVolumeSource{Path: "somePath"},
EmptyDir: &v1.EmptyDirVolumeSource{
SizeLimit: *resource.NewQuantity(int64(10), resource.BinarySI)},
SizeLimit: resource.NewQuantity(int64(10), resource.BinarySI)},
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/descheduler/strategies/lownodeutilization_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func TestLowNodeUtilization(t *testing.T) {
VolumeSource: v1.VolumeSource{
HostPath: &v1.HostPathVolumeSource{Path: "somePath"},
EmptyDir: &v1.EmptyDirVolumeSource{
SizeLimit: *resource.NewQuantity(int64(10), resource.BinarySI)},
SizeLimit: resource.NewQuantity(int64(10), resource.BinarySI)},
},
},
}
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit dd831d0

Please sign in to comment.