Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Commit

Permalink
Merge pull request #635 from s-urbaniak/k8s
Browse files Browse the repository at this point in the history
k8s: bump to v1.3.0 and fix API changes.
  • Loading branch information
jonboulle authored Jul 6, 2016
2 parents 67cdff0 + de6f4f2 commit 8880358
Show file tree
Hide file tree
Showing 11 changed files with 1,392 additions and 817 deletions.
14 changes: 7 additions & 7 deletions Godeps/Godeps.json

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

8 changes: 4 additions & 4 deletions schema/types/isolator_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ func NewResourceCPUIsolator(request, limit string) (*ResourceCPU, error) {
res := &ResourceCPU{
ResourceBase{
resourceValue{
Request: req,
Limit: lim,
Request: &req,
Limit: &lim,
},
},
}
Expand Down Expand Up @@ -218,8 +218,8 @@ func NewResourceMemoryIsolator(request, limit string) (*ResourceMemory, error) {
res := &ResourceMemory{
ResourceBase{
resourceValue{
Request: req,
Limit: lim,
Request: &req,
Limit: &lim,
},
},
}
Expand Down
298 changes: 298 additions & 0 deletions vendor/k8s.io/kubernetes/pkg/api/resource/amount.go

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

Loading

0 comments on commit 8880358

Please sign in to comment.