Skip to content

Commit

Permalink
Update k8s dependency to v1.16 (#2828)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesuen authored Dec 11, 2019
1 parent 0fa02b0 commit 0ea0404
Show file tree
Hide file tree
Showing 37 changed files with 11,504 additions and 10,665 deletions.
11 changes: 6 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,13 @@ jobs:
steps:
- checkout
- restore_cache:
keys: [codegen-v2]
keys:
- codegen-v1-{{ checksum "Gopkg.lock" }}-{{ checksum "hack/installers/install-codegen-go-tools.sh" }}
- run: ./hack/install.sh codegen-go-tools
- run: sudo ./hack/install.sh codegen-tools
- run: dep ensure
- run: dep ensure -v
- save_cache:
key: codegen-v2
key: codegen-v1-{{ checksum "Gopkg.lock" }}-{{ checksum "hack/installers/install-codegen-go-tools.sh" }}
paths: [vendor, /tmp/dl, /go/pkg]
- run: helm init --client-only
- run: make codegen-local
Expand Down Expand Up @@ -92,7 +93,7 @@ jobs:
- configure_git
- run: go get github.com/jstemmer/go-junit-report
- restore_vendor
- run: dep ensure
- run: dep ensure -v
- run: make test
- save_vendor
- save_go_cache
Expand Down Expand Up @@ -134,7 +135,7 @@ jobs:
key: e2e-dl-v10
paths: [/tmp/dl]
- restore_vendor
- run: dep ensure
- run: dep ensure -v
- configure_git
- run: make cli
- run:
Expand Down
123 changes: 86 additions & 37 deletions Gopkg.lock

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

26 changes: 19 additions & 7 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ required = [

[[constraint]]
name = "github.com/gogo/protobuf"
version = "1.1.1"
version = "1.3.1"

# override github.com/grpc-ecosystem/go-grpc-middleware's constraint on master
[[override]]
Expand All @@ -36,23 +36,35 @@ required = [
revision = "7858729281ec582767b20e0d696b6041d995d5e0"

[[override]]
branch = "release-1.14"
branch = "release-1.16"
name = "k8s.io/api"

[[override]]
branch = "release-1.14"
branch = "release-1.16"
name = "k8s.io/kubernetes"

[[override]]
branch = "release-1.14"
branch = "release-1.16"
name = "k8s.io/code-generator"

[[override]]
branch = "release-1.14"
branch = "release-1.16"
name = "k8s.io/apimachinery"

[[override]]
branch = "release-11.0"
branch = "release-1.16"
name = "k8s.io/apiextensions-apiserver"

[[override]]
branch = "release-1.16"
name = "k8s.io/apiserver"

[[override]]
branch = "release-1.16"
name = "k8s.io/kubectl"

[[override]]
branch = "release-13.0"
name = "k8s.io/client-go"

[[override]]
Expand Down Expand Up @@ -82,5 +94,5 @@ required = [
# TODO: move off of k8s.io/kube-openapi and use controller-tools for CRD spec generation
# (override argoproj/argo contraint on master)
[[override]]
revision = "411b2483e5034420675ebcdd4a55fc76fe5e55cf"
revision = "30be4d16710ac61bce31eb28a01054596fe6a9f1"
name = "k8s.io/kube-openapi"
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.4.0
Loading

0 comments on commit 0ea0404

Please sign in to comment.