Skip to content

Commit fe2f31e

Browse files
authored
chore: bump k8s packages to 0.34 (#68)
* chore: bump k8s packages to 0.34 Signed-off-by: Artur Shad Nik <[email protected]> * chore: bump version Signed-off-by: Artur Shad Nik <[email protected]> --------- Signed-off-by: Artur Shad Nik <[email protected]>
1 parent 379bb9d commit fe2f31e

File tree

570 files changed

+49931
-26816
lines changed

Some content is hidden

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

570 files changed

+49931
-26816
lines changed

fleetconfig-controller/charts/fleetconfig-controller/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Resource specifications for all klusterlet-managed containers.
152152
| `replicas` | fleetconfig-controller replica count | `1` |
153153
| `imageRegistry` | Image registry | `""` |
154154
| `image.repository` | Image repository | `quay.io/open-cluster-management/fleetconfig-controller` |
155-
| `image.tag` | Image tag | `v0.0.13` |
155+
| `image.tag` | Image tag | `v0.0.14` |
156156
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
157157
| `imagePullSecrets` | Image pull secrets | `[]` |
158158
| `serviceAccount.annotations` | Annotations to add to the service account | `{}` |

fleetconfig-controller/charts/fleetconfig-controller/crds/fleetconfig.open-cluster-management.io_fleetconfigs.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,8 +1103,8 @@ spec:
11031103
most preferred is the one with the greatest sum of weights, i.e.
11041104
for each node that meets all of the scheduling requirements (resource
11051105
request, requiredDuringScheduling anti-affinity expressions, etc.),
1106-
compute a sum by iterating through the elements of this field and adding
1107-
"weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
1106+
compute a sum by iterating through the elements of this field and subtracting
1107+
"weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the
11081108
node(s) with the highest sum are the most preferred.
11091109
items:
11101110
description: The weights of all of the matched
@@ -1826,7 +1826,7 @@ spec:
18261826
Claims lists the names of resources, defined in spec.resourceClaims,
18271827
that are used by this container.
18281828
1829-
This is an alpha field and requires enabling the
1829+
This field depends on the
18301830
DynamicResourceAllocation feature gate.
18311831
18321832
This field is immutable. It can only be set for containers.
@@ -2246,7 +2246,7 @@ spec:
22462246
Claims lists the names of resources, defined in spec.resourceClaims,
22472247
that are used by this container.
22482248
2249-
This is an alpha field and requires enabling the
2249+
This field depends on the
22502250
DynamicResourceAllocation feature gate.
22512251
22522252
This field is immutable. It can only be set for containers.

fleetconfig-controller/charts/fleetconfig-controller/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ imageRegistry: ""
277277
## @param image.pullPolicy Image pull policy
278278
image:
279279
repository: quay.io/open-cluster-management/fleetconfig-controller
280-
tag: v0.0.13
280+
tag: v0.0.14
281281
pullPolicy: IfNotPresent
282282

283283
## @param imagePullSecrets Image pull secrets

fleetconfig-controller/go.mod

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@ require (
1111
github.com/openshift/build-machinery-go v0.0.0-20250602125535-1b6d00b8c37c
1212
github.com/openshift/imagebuilder v1.2.16
1313
github.com/pkg/errors v0.9.1
14-
k8s.io/api v0.33.3
15-
k8s.io/apimachinery v0.33.3
16-
k8s.io/client-go v0.33.3
14+
k8s.io/api v0.34.1
15+
k8s.io/apimachinery v0.34.1
16+
k8s.io/client-go v0.34.1
1717
k8s.io/kubectl v0.33.3
1818
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
1919
open-cluster-management.io/api v1.0.0
2020
open-cluster-management.io/ocm v1.0.0
2121
sigs.k8s.io/cluster-api v1.10.1
2222
sigs.k8s.io/controller-runtime v0.21.0
23-
sigs.k8s.io/yaml v1.5.0
23+
sigs.k8s.io/yaml v1.6.0
2424
)
2525

2626
require (
@@ -49,7 +49,7 @@ require (
4949
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
5050
github.com/fsnotify/fsnotify v1.9.0 // indirect
5151
github.com/fsouza/go-dockerclient v1.11.2 // indirect
52-
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
52+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
5353
github.com/go-logr/zapr v1.3.0 // indirect
5454
github.com/go-openapi/jsonpointer v0.21.1 // indirect
5555
github.com/go-openapi/jsonreference v0.21.0 // indirect
@@ -59,7 +59,7 @@ require (
5959
github.com/gobwas/glob v0.2.3 // indirect
6060
github.com/gogo/protobuf v1.3.2 // indirect
6161
github.com/google/btree v1.1.3 // indirect
62-
github.com/google/gnostic-models v0.6.9 // indirect
62+
github.com/google/gnostic-models v0.7.0 // indirect
6363
github.com/google/go-cmp v0.7.0 // indirect
6464
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
6565
github.com/google/uuid v1.6.0 // indirect
@@ -81,13 +81,14 @@ require (
8181
github.com/moby/sys/userns v0.1.0 // indirect
8282
github.com/moby/term v0.5.2 // indirect
8383
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
84-
github.com/modern-go/reflect2 v1.0.2 // indirect
84+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
8585
github.com/morikuni/aec v1.0.0 // indirect
8686
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
8787
github.com/opencontainers/go-digest v1.0.0 // indirect
8888
github.com/opencontainers/image-spec v1.1.1 // indirect
8989
github.com/opencontainers/runtime-spec v1.2.0 // indirect
9090
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
91+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
9192
github.com/prometheus/client_golang v1.22.0 // indirect
9293
github.com/prometheus/client_model v0.6.1 // indirect
9394
github.com/prometheus/common v0.63.0 // indirect
@@ -102,12 +103,11 @@ require (
102103
github.com/x448/float16 v0.8.4 // indirect
103104
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.60.0 // indirect
104105
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
105-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
106106
go.uber.org/automaxprocs v1.6.0 // indirect
107107
go.uber.org/multierr v1.11.0 // indirect
108108
go.uber.org/zap v1.27.0 // indirect
109109
go.yaml.in/yaml/v2 v2.4.2 // indirect
110-
go.yaml.in/yaml/v3 v3.0.3 // indirect
110+
go.yaml.in/yaml/v3 v3.0.4 // indirect
111111
golang.org/x/crypto v0.40.0 // indirect
112112
golang.org/x/exp v0.0.0-20250606033433-dcc06ee1d476 // indirect
113113
golang.org/x/net v0.41.0 // indirect
@@ -128,38 +128,38 @@ require (
128128
k8s.io/cluster-bootstrap v0.33.0 // indirect
129129
k8s.io/klog v1.0.0 // indirect
130130
k8s.io/klog/v2 v2.130.1 // indirect
131-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
131+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
132132
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
133133
sigs.k8s.io/randfill v1.0.0 // indirect
134-
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
134+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
135135
)
136136

137137
replace (
138-
k8s.io/api => k8s.io/api v0.33.1
139-
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.33.1
140-
k8s.io/apimachinery => k8s.io/apimachinery v0.33.1
141-
k8s.io/apiserver => k8s.io/apiserver v0.33.1
142-
k8s.io/client-go => k8s.io/client-go v0.33.1
143-
k8s.io/client-go/rest => k8s.io/client-go/rest v0.33.1
144-
k8s.io/cloud-provider => k8s.io/cloud-provider v0.33.1
145-
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.33.1
146-
k8s.io/component-base => k8s.io/component-base v0.33.1
147-
k8s.io/controller-manager => k8s.io/controller-manager v0.33.1
148-
k8s.io/cri-api => k8s.io/cri-api v0.33.1
149-
k8s.io/cri-client => k8s.io/cri-client v0.33.1
150-
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.33.1
151-
k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.33.1
152-
k8s.io/endpointslice => k8s.io/endpointslice v0.33.1
153-
k8s.io/externaljwt => k8s.io/externaljwt v0.33.1
154-
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.33.1
155-
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.33.1
156-
k8s.io/kube-proxy => k8s.io/kube-proxy v0.33.1
157-
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.33.1
158-
k8s.io/kubectl => k8s.io/kubectl v0.33.1
159-
k8s.io/kubelet => k8s.io/kubelet v0.33.1
160-
k8s.io/mount-utils => k8s.io/mount-utils v0.33.1
161-
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.33.1
162-
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.33.1
138+
k8s.io/api => k8s.io/api v0.34.1
139+
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.34.1
140+
k8s.io/apimachinery => k8s.io/apimachinery v0.34.1
141+
k8s.io/apiserver => k8s.io/apiserver v0.34.1
142+
k8s.io/client-go => k8s.io/client-go v0.34.1
143+
k8s.io/client-go/rest => k8s.io/client-go/rest v0.34.1
144+
k8s.io/cloud-provider => k8s.io/cloud-provider v0.34.1
145+
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.34.1
146+
k8s.io/component-base => k8s.io/component-base v0.34.1
147+
k8s.io/controller-manager => k8s.io/controller-manager v0.34.1
148+
k8s.io/cri-api => k8s.io/cri-api v0.34.1
149+
k8s.io/cri-client => k8s.io/cri-client v0.34.1
150+
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.34.1
151+
k8s.io/dynamic-resource-allocation => k8s.io/dynamic-resource-allocation v0.34.1
152+
k8s.io/endpointslice => k8s.io/endpointslice v0.34.1
153+
k8s.io/externaljwt => k8s.io/externaljwt v0.34.1
154+
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.34.1
155+
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.34.1
156+
k8s.io/kube-proxy => k8s.io/kube-proxy v0.34.1
157+
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.34.1
158+
k8s.io/kubectl => k8s.io/kubectl v0.34.1
159+
k8s.io/kubelet => k8s.io/kubelet v0.34.1
160+
k8s.io/mount-utils => k8s.io/mount-utils v0.34.1
161+
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.34.1
162+
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.34.1
163163
)
164164

165165
replace helm.sh/helm/v3 => helm.sh/helm/v3 v3.18.5

0 commit comments

Comments
 (0)