Skip to content

Commit 1487091

Browse files
committed
Migrate to multicluster-runtime
1 parent 38daf7c commit 1487091

139 files changed

Lines changed: 2249 additions & 4765 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v3
3131
- uses: actions/setup-go@v3
3232
with:
33-
go-version: v1.23.4
33+
go-version: v1.24.0
3434
- run: make test-e2e
3535

3636
go-test:
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v3
4141
- uses: actions/setup-go@v3
4242
with:
43-
go-version: v1.23.4
43+
go-version: v1.24.0
4444
- run: make test
4545

4646
lint:
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@v3
5151
- uses: actions/setup-go@v3
5252
with:
53-
go-version: v1.23.4
53+
go-version: v1.24.0
5454
- run: make lint
5555

5656
verify:
@@ -60,5 +60,5 @@ jobs:
6060
- uses: actions/checkout@v3
6161
- uses: actions/setup-go@v3
6262
with:
63-
go-version: v1.23.4
63+
go-version: v1.24.0
6464
- run: make verify

.github/workflows/docs-gen-and-push.yaml

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

3535
- uses: actions/setup-go@v5
3636
with:
37-
go-version: v1.23.4
37+
go-version: v1.24.0
3838
cache: true
3939

4040
- uses: actions/setup-python@v5

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: 0
2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: v1.23.4
25+
go-version: v1.24.0
2626
- name: Delete non-semver tags
2727
run: 'git tag -d $(git tag -l | grep -v "^v")'
2828
- name: Run GoReleaser on tag

.github/workflows/image.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v3
1818
- uses: actions/setup-go@v3
1919
with:
20-
go-version: v1.23.4
20+
go-version: v1.24.0
2121
check-latest: true
2222
# We need this to remove local tags that are not semver so goreleaser doesn't get confused.
2323
- name: Delete non-semver tags

.ko.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
baseImageOverrides:
2-
github.com/google/ko: golang:1.23.4
2+
github.com/google/ko: golang:1.24.0
33

44
builds:
55
- id: konnector

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.23.4 AS builder
15+
FROM golang:1.24.0 AS builder

cli/go.mod

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kube-bind/kube-bind/cli
22

3-
go 1.23.4
3+
go 1.24.0
44

55
replace (
66
github.com/kube-bind/kube-bind => ../
@@ -20,12 +20,12 @@ require (
2020
github.com/spf13/cobra v1.9.1
2121
github.com/spf13/pflag v1.0.6
2222
github.com/stretchr/testify v1.10.0
23-
k8s.io/api v0.32.3
24-
k8s.io/apiextensions-apiserver v0.32.3
25-
k8s.io/apimachinery v0.32.3
23+
k8s.io/api v0.33.0
24+
k8s.io/apiextensions-apiserver v0.33.0
25+
k8s.io/apimachinery v0.33.0
2626
k8s.io/cli-runtime v0.32.0
27-
k8s.io/client-go v0.32.3
28-
k8s.io/component-base v0.32.3
27+
k8s.io/client-go v0.33.0
28+
k8s.io/component-base v0.33.0
2929
k8s.io/klog/v2 v2.130.1
3030
sigs.k8s.io/yaml v1.4.0
3131
)
@@ -35,7 +35,6 @@ require (
3535
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
3636
github.com/NYTimes/gziphandler v1.1.1 // indirect
3737
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
38-
github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect
3938
github.com/beorn7/perks v1.0.1 // indirect
4039
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
4140
github.com/cespare/xxhash/v2 v2.3.0 // indirect
@@ -55,10 +54,9 @@ require (
5554
github.com/gogo/protobuf v1.3.2 // indirect
5655
github.com/golang/protobuf v1.5.4 // indirect
5756
github.com/google/btree v1.1.3 // indirect
58-
github.com/google/cel-go v0.22.1 // indirect
57+
github.com/google/cel-go v0.23.2 // indirect
5958
github.com/google/gnostic-models v0.6.9 // indirect
6059
github.com/google/go-cmp v0.7.0 // indirect
61-
github.com/google/gofuzz v1.2.0 // indirect
6260
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
6361
github.com/google/uuid v1.6.0 // indirect
6462
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
@@ -67,7 +65,6 @@ require (
6765
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6866
github.com/josharian/intern v1.0.0 // indirect
6967
github.com/json-iterator/go v1.1.12 // indirect
70-
github.com/klauspost/compress v1.17.11 // indirect
7168
github.com/kylelemons/godebug v1.1.0 // indirect
7269
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
7370
github.com/mailru/easyjson v0.9.0 // indirect
@@ -83,17 +80,17 @@ require (
8380
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
8481
github.com/pkg/errors v0.9.1 // indirect
8582
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
86-
github.com/prometheus/client_golang v1.20.5 // indirect
83+
github.com/prometheus/client_golang v1.22.0 // indirect
8784
github.com/prometheus/client_model v0.6.1 // indirect
88-
github.com/prometheus/common v0.61.0 // indirect
85+
github.com/prometheus/common v0.62.0 // indirect
8986
github.com/prometheus/procfs v0.15.1 // indirect
9087
github.com/rivo/uniseg v0.2.0 // indirect
9188
github.com/stoewer/go-strcase v1.3.0 // indirect
9289
github.com/x448/float16 v0.8.4 // indirect
9390
github.com/xlab/treeprint v1.2.0 // indirect
94-
go.etcd.io/etcd/api/v3 v3.5.17 // indirect
95-
go.etcd.io/etcd/client/pkg/v3 v3.5.17 // indirect
96-
go.etcd.io/etcd/client/v3 v3.5.17 // indirect
91+
go.etcd.io/etcd/api/v3 v3.5.21 // indirect
92+
go.etcd.io/etcd/client/pkg/v3 v3.5.21 // indirect
93+
go.etcd.io/etcd/client/v3 v3.5.21 // indirect
9794
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9895
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect
9996
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
@@ -118,17 +115,18 @@ require (
118115
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 // indirect
119116
google.golang.org/genproto/googleapis/rpc v0.0.0-20250106144421-5f5ef82da422 // indirect
120117
google.golang.org/grpc v1.69.2 // indirect
121-
google.golang.org/protobuf v1.36.2 // indirect
118+
google.golang.org/protobuf v1.36.5 // indirect
122119
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
123120
gopkg.in/inf.v0 v0.9.1 // indirect
124121
gopkg.in/yaml.v3 v3.0.1 // indirect
125-
k8s.io/apiserver v0.32.3 // indirect
126-
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
122+
k8s.io/apiserver v0.33.0 // indirect
123+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
127124
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
128125
rsc.io/qr v0.2.0 // indirect
129-
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.1 // indirect
126+
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
130127
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
131128
sigs.k8s.io/kustomize/api v0.18.0 // indirect
132129
sigs.k8s.io/kustomize/kyaml v0.18.1 // indirect
133-
sigs.k8s.io/structured-merge-diff/v4 v4.5.0 // indirect
130+
sigs.k8s.io/randfill v1.0.0 // indirect
131+
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
134132
)

0 commit comments

Comments
 (0)