Skip to content

Commit 316d96d

Browse files
Update module github.com/gardener/gardener to v1.133.0
1 parent b0386e3 commit 316d96d

7 files changed

+116
-89
lines changed

.github/renovate.json5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ The following dependencies have been updated:\n\
8484
"github.com/gobwas/glob",
8585
"github.com/goccy/go-yaml",
8686
"github.com/gogo/protobuf",
87+
"github.com/golang-jwt/jwt/v5",
8788
"github.com/golang/protobuf",
8889
"github.com/google/btree",
8990
"github.com/google/cel-go",

config/crd/bases/controlplane.cluster.x-k8s.io_gardenershootcontrolplanes.yaml

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ spec:
316316
ignoreTaints:
317317
description: |-
318318
IgnoreTaints specifies a list of taint keys to ignore in node templates when considering to scale a node group.
319-
Deprecated: Ignore taints are deprecated as of K8S 1.29 and treated as startup taints
319+
Deprecated: Ignore taints are deprecated and treated as startup taints
320320
items:
321321
type: string
322322
type: array
@@ -793,9 +793,8 @@ spec:
793793
type: string
794794
type: object
795795
structuredAuthentication:
796-
description: |-
797-
StructuredAuthentication contains configuration settings for structured authentication for the kube-apiserver.
798-
This field is only available for Kubernetes v1.30 or later.
796+
description: StructuredAuthentication contains configuration
797+
settings for structured authentication for the kube-apiserver.
799798
properties:
800799
configMapName:
801800
description: |-
@@ -806,9 +805,8 @@ spec:
806805
- configMapName
807806
type: object
808807
structuredAuthorization:
809-
description: |-
810-
StructuredAuthorization contains configuration settings for structured authorization for the kube-apiserver.
811-
This field is only available for Kubernetes v1.30 or later.
808+
description: StructuredAuthorization contains configuration
809+
settings for structured authorization for the kube-apiserver.
812810
properties:
813811
configMapName:
814812
description: |-
@@ -1262,7 +1260,7 @@ spec:
12621260
properties:
12631261
swapBehavior:
12641262
description: |-
1265-
SwapBehavior configures swap memory available to container workloads. May be one of {"LimitedSwap", "UnlimitedSwap"}
1263+
SwapBehavior configures swap memory available to container workloads. May be one of {"NoSwap", "LimitedSwap"}
12661264
defaults to: LimitedSwap
12671265
type: string
12681266
type: object
@@ -1857,6 +1855,19 @@ spec:
18571855
description: Credentials contains information about the shoot
18581856
credentials.
18591857
properties:
1858+
encryptionAtRest:
1859+
description: EncryptionAtRest contains information about Shoot
1860+
data encryption at rest.
1861+
properties:
1862+
resources:
1863+
description: |-
1864+
Resources is the list of resources in the Shoot which are currently encrypted.
1865+
Secrets are encrypted by default and are not part of the list.
1866+
See https://github.com/gardener/gardener/blob/master/docs/usage/security/etcd_encryption_config.md for more details.
1867+
items:
1868+
type: string
1869+
type: array
1870+
type: object
18601871
rotation:
18611872
description: Rotation contains information about the credential
18621873
rotations.
@@ -2058,6 +2069,9 @@ spec:
20582069
EncryptedResources is the list of resources in the Shoot which are currently encrypted.
20592070
Secrets are encrypted by default and are not part of the list.
20602071
See https://github.com/gardener/gardener/blob/master/docs/usage/security/etcd_encryption_config.md for more details.
2072+
2073+
Deprecated: This field is deprecated and will be removed with release v1.138.
2074+
This field will be removed in favor of `status.credentials.encryptionAtRest.resources`.
20612075
items:
20622076
type: string
20632077
type: array

config/crd/bases/infrastructure.cluster.x-k8s.io_gardenerworkerpools.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ spec:
479479
properties:
480480
swapBehavior:
481481
description: |-
482-
SwapBehavior configures swap memory available to container workloads. May be one of {"LimitedSwap", "UnlimitedSwap"}
482+
SwapBehavior configures swap memory available to container workloads. May be one of {"NoSwap", "LimitedSwap"}
483483
defaults to: LimitedSwap
484484
type: string
485485
type: object

go.mod

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ toolchain go1.24.10
66

77
require (
88
github.com/MakeNowJust/heredoc v1.0.0
9-
github.com/gardener/gardener v1.132.2
9+
github.com/gardener/gardener v1.133.0
1010
github.com/google/gofuzz v1.2.0
1111
github.com/kcp-dev/kcp/sdk v0.28.3
1212
github.com/kcp-dev/multicluster-provider v0.2.1
1313
github.com/onsi/ginkgo/v2 v2.27.1
1414
github.com/onsi/gomega v1.38.2
1515
github.com/valyala/fastjson v1.6.4
1616
golang.org/x/sync v0.18.0
17-
k8s.io/api v0.34.1
18-
k8s.io/apimachinery v0.34.1
19-
k8s.io/client-go v0.34.1
20-
k8s.io/cluster-bootstrap v0.34.1
21-
k8s.io/component-base v0.34.1
17+
k8s.io/api v0.34.2
18+
k8s.io/apimachinery v0.34.2
19+
k8s.io/client-go v0.34.2
20+
k8s.io/cluster-bootstrap v0.34.2
21+
k8s.io/component-base v0.34.2
2222
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
2323
sigs.k8s.io/cluster-api v1.10.8
2424
sigs.k8s.io/controller-runtime v0.22.4
@@ -73,6 +73,7 @@ require (
7373
github.com/gobwas/glob v0.2.3 // indirect
7474
github.com/goccy/go-yaml v1.18.0 // indirect
7575
github.com/gogo/protobuf v1.3.2 // indirect
76+
github.com/golang-jwt/jwt/v5 v5.3.0 // indirect
7677
github.com/golang/protobuf v1.5.4 // indirect
7778
github.com/google/btree v1.1.3 // indirect
7879
github.com/google/cel-go v0.26.0 // indirect
@@ -119,10 +120,10 @@ require (
119120
github.com/perses/perses-operator v0.2.0 // indirect
120121
github.com/pkg/errors v0.9.1 // indirect
121122
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
122-
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.86.2 // indirect
123+
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.87.0 // indirect
123124
github.com/prometheus/client_golang v1.23.2 // indirect
124125
github.com/prometheus/client_model v0.6.2 // indirect
125-
github.com/prometheus/common v0.67.2 // indirect
126+
github.com/prometheus/common v0.67.4 // indirect
126127
github.com/prometheus/otlptranslator v0.0.2 // indirect
127128
github.com/prometheus/procfs v0.17.0 // indirect
128129
github.com/robfig/cron v1.2.0 // indirect
@@ -173,17 +174,17 @@ require (
173174
go.yaml.in/yaml/v2 v2.4.3 // indirect
174175
go.yaml.in/yaml/v3 v3.0.4 // indirect
175176
go.yaml.in/yaml/v4 v4.0.0-rc.2 // indirect
176-
golang.org/x/crypto v0.44.0 // indirect
177-
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect
178-
golang.org/x/mod v0.29.0 // indirect
179-
golang.org/x/net v0.46.0 // indirect
177+
golang.org/x/crypto v0.45.0 // indirect
178+
golang.org/x/exp v0.0.0-20251113190631-e25ba8c21ef6 // indirect
179+
golang.org/x/mod v0.30.0 // indirect
180+
golang.org/x/net v0.47.0 // indirect
180181
golang.org/x/oauth2 v0.32.0 // indirect
181182
golang.org/x/sys v0.38.0 // indirect
182-
golang.org/x/telemetry v0.0.0-20251008203120-078029d740a8 // indirect
183+
golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 // indirect
183184
golang.org/x/term v0.37.0 // indirect
184185
golang.org/x/text v0.31.0 // indirect
185186
golang.org/x/time v0.14.0 // indirect
186-
golang.org/x/tools v0.38.0 // indirect
187+
golang.org/x/tools v0.39.0 // indirect
187188
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
188189
google.golang.org/genproto/googleapis/api v0.0.0-20250825161204-c5933d9347a5 // indirect
189190
google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 // indirect
@@ -194,23 +195,23 @@ require (
194195
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
195196
gopkg.in/yaml.v2 v2.4.0 // indirect
196197
gopkg.in/yaml.v3 v3.0.1 // indirect
197-
helm.sh/helm/v3 v3.19.1 // indirect
198+
helm.sh/helm/v3 v3.19.2 // indirect
198199
istio.io/api v1.27.3 // indirect
199200
istio.io/client-go v1.27.2 // indirect
200-
k8s.io/apiextensions-apiserver v0.34.1 // indirect
201-
k8s.io/apiserver v0.34.1 // indirect
201+
k8s.io/apiextensions-apiserver v0.34.2 // indirect
202+
k8s.io/apiserver v0.34.2 // indirect
202203
k8s.io/autoscaler/vertical-pod-autoscaler v1.5.1 // indirect
203-
k8s.io/code-generator v0.34.1 // indirect
204+
k8s.io/code-generator v0.34.2 // indirect
204205
k8s.io/gengo v0.0.0-20230829151522-9cce18d56c01 // indirect
205206
k8s.io/gengo/v2 v2.0.0-20250820003526-c297c0c1eb9d // indirect
206207
k8s.io/klog v1.0.0 // indirect
207208
k8s.io/klog/v2 v2.130.1 // indirect
208-
k8s.io/kms v0.34.1 // indirect
209-
k8s.io/kube-aggregator v0.34.1 // indirect
209+
k8s.io/kms v0.34.2 // indirect
210+
k8s.io/kube-aggregator v0.34.2 // indirect
210211
k8s.io/kube-openapi v0.0.0-20250814151709-d7b6acb124c3 // indirect
211-
k8s.io/kubelet v0.34.1 // indirect
212-
k8s.io/metrics v0.34.1 // indirect
213-
k8s.io/pod-security-admission v0.34.1 // indirect
212+
k8s.io/kubelet v0.34.2 // indirect
213+
k8s.io/metrics v0.34.2 // indirect
214+
k8s.io/pod-security-admission v0.34.2 // indirect
214215
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.3 // indirect
215216
sigs.k8s.io/controller-tools v0.19.0 // indirect
216217
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect

0 commit comments

Comments
 (0)