Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

Commit

Permalink
Kube 1.16.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ash2k committed Oct 5, 2019
1 parent 9632032 commit 86f6ded
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 73 deletions.
5 changes: 2 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
ALL_GO_FILES=$$(find . -type f -name '*.go' -not -path "./vendor/*")
KUBE="kubernetes-1.15.1"
CLIENT="v12.0.0"
KUBE="kubernetes-1.16.1"

.PHONY: fmt
fmt:
Expand All @@ -20,7 +19,7 @@ update-kube:
go get \
k8s.io/api/core/v1@$(KUBE) \
k8s.io/apimachinery@$(KUBE) \
k8s.io/client-go@$(CLIENT) \
k8s.io/client-go@$(KUBE) \
k8s.io/code-generator/cmd/deepcopy-gen@$(KUBE) \
github.com/stretchr/[email protected]
go mod tidy
Expand Down
12 changes: 6 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/atlassian/ctrl

go 1.12
go 1.13.1

require (
github.com/ash2k/stager v0.0.0-20170622123058-6e9c7b0eacd4
Expand All @@ -11,9 +11,9 @@ require (
go.uber.org/atomic v1.4.0 // indirect
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.10.0
golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4
k8s.io/api v0.0.0-20190718183219-b59d8169aab5
k8s.io/apimachinery v0.0.0-20190612205821-1799e75a0719
k8s.io/client-go v0.0.0-20190620085101-78d2af792bab
k8s.io/code-generator v0.0.0-20190612205613-18da4a14b22b
golang.org/x/sync v0.0.0-20190423024810-112230192c58
k8s.io/api v0.0.0-20191003000013-35e20aa79eb8
k8s.io/apimachinery v0.0.0-20190913080033-27d36303b655
k8s.io/client-go v0.0.0-20191003000419-f68efa97b39e
k8s.io/code-generator v0.0.0-20190927045949-f81bca4f5e85
)
Loading

0 comments on commit 86f6ded

Please sign in to comment.