Skip to content
This repository was archived by the owner on Apr 25, 2023. It is now read-only.

Commit c22e251

Browse files
committed
working 0.11.0 controller-runtime
1 parent 9ad8d46 commit c22e251

5 files changed

Lines changed: 50 additions & 135 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: '^1.16.6'
14+
go-version: '^1.17.6'
1515

1616
- name: Run tests
1717
run: |

.github/workflows/test-and-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: actions/setup-go@v2
1818
with:
19-
go-version: '^1.16.6'
19+
go-version: '^1.17.6'
2020

2121
- name: Run tests
2222
run: DOWNLOAD_BINARIES=y bash -x ./scripts/pre-commit.sh

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ endif
4444
BUILDMNT = /go/src/$(GOTARGET)
4545
# The version here should match the version of go configured in
4646
# .github/workflows files.
47-
BUILD_IMAGE ?= golang:1.16.6
47+
BUILD_IMAGE ?= golang:1.17.6
4848

4949
HYPERFED_TARGET = bin/hyperfed
5050
CONTROLLER_TARGET = bin/controller-manager

go.mod

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ require (
1414
github.com/spf13/cobra v1.2.1
1515
github.com/spf13/pflag v1.0.5
1616
github.com/stretchr/testify v1.7.0
17-
golang.org/x/net v0.0.0-20210825183410-e898025ed96a
18-
k8s.io/api v0.23.0
19-
k8s.io/apiextensions-apiserver v0.23.0
20-
k8s.io/apimachinery v0.23.0
21-
k8s.io/apiserver v0.23.0
22-
k8s.io/client-go v0.23.0
23-
k8s.io/component-base v0.23.0
17+
golang.org/x/net v0.0.0-20211209124913-491a49abca63
18+
k8s.io/api v0.23.2
19+
k8s.io/apiextensions-apiserver v0.23.2
20+
k8s.io/apimachinery v0.23.2
21+
k8s.io/apiserver v0.23.2
22+
k8s.io/client-go v0.23.2
23+
k8s.io/component-base v0.23.2
2424
k8s.io/klog/v2 v2.30.0
25-
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65
26-
k8s.io/kubectl v0.21.2
25+
k8s.io/kube-openapi v0.0.0-20220124234850-424119656bbf
26+
k8s.io/kubectl v0.23.2
2727
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b
2828
sigs.k8s.io/controller-runtime v0.11.0
2929
sigs.k8s.io/yaml v1.3.0
@@ -54,7 +54,6 @@ require (
5454
github.com/go-logr/zapr v1.2.0 // indirect
5555
github.com/go-openapi/jsonpointer v0.19.5 // indirect
5656
github.com/go-openapi/jsonreference v0.19.5 // indirect
57-
github.com/go-openapi/spec v0.19.5 // indirect
5857
github.com/go-openapi/swag v0.19.14 // indirect
5958
github.com/gogo/protobuf v1.3.2 // indirect
6059
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
@@ -111,9 +110,9 @@ require (
111110
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
112111
gopkg.in/yaml.v2 v2.4.0 // indirect
113112
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
114-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.25 // indirect
113+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.0.27 // indirect
115114
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
116-
sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect
115+
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
117116
)
118117

119-
replace github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.4.1
118+
replace github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.5.5

0 commit comments

Comments
 (0)