-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump certificates.k8s.io to v1 (#25)
* Bump to certificates.k8s.io/v1 * Add get permission for coordination.k8s.io/leases * Change scheme registration * Add discovery API to support multiple group versions * Change duplicate package imports * Bump min Go version 1.16 * Remove Makefile dependency on test on docker-build * Enable kubelet CSR controller in E2E test #23 Signed-off-by: JenTing Hsiao <[email protected]>
- Loading branch information
JenTing Hsiao
authored
Oct 21, 2021
1 parent
7763887
commit e60c545
Showing
16 changed files
with
1,076 additions
and
197 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,6 @@ jobs: | |
strategy: | ||
matrix: | ||
go: | ||
- '1.13' | ||
- '1.14' | ||
- '1.15' | ||
- '1.16' | ||
- '1.17' | ||
runs-on: ubuntu-latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,17 @@ | ||
module github.com/jenting/kucero | ||
|
||
go 1.13 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/sirupsen/logrus v1.6.0 | ||
github.com/spf13/cobra v1.0.0 | ||
github.com/weaveworks/kured v0.0.0-20200430160730-f2a0f8e20dbe | ||
golang.org/x/net v0.0.0-20200202094626-16171245cfb2 // indirect | ||
golang.org/x/sys v0.0.0-20191022100944-742c48ecaeb7 // indirect | ||
k8s.io/api v0.17.4 | ||
k8s.io/apimachinery v0.17.4 | ||
k8s.io/apiserver v0.17.4 | ||
k8s.io/client-go v0.17.4 | ||
k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6 // indirect | ||
k8s.io/kubectl v0.17.4 | ||
k8s.io/utils v0.0.0-20200414100711-2df71ebbae66 // indirect | ||
sigs.k8s.io/controller-runtime v0.5.0 | ||
sigs.k8s.io/yaml v1.2.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/spf13/cobra v1.2.1 | ||
github.com/vmware-tanzu/velero v1.7.0 | ||
github.com/weaveworks/kured v0.0.0-20211008084731-7c33ad8b6e60 | ||
k8s.io/api v0.22.2 | ||
k8s.io/apimachinery v0.22.2 | ||
k8s.io/apiserver v0.22.2 | ||
k8s.io/client-go v0.22.2 | ||
k8s.io/kubectl v0.22.2 | ||
sigs.k8s.io/controller-runtime v0.10.2 | ||
sigs.k8s.io/yaml v1.3.0 | ||
) |
Oops, something went wrong.