Skip to content

Commit 7316c97

Browse files
Copilotrenovate[bot]g3force
authored
fix(deps): update module sigs.k8s.io/controller-runtime to v0.23.1 (#75)
* fix(deps): update module sigs.k8s.io/controller-runtime to v0.23.1 * fix: Update webhooks for controller-runtime v0.23.1 breaking changes --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: g3force <779094+g3force@users.noreply.github.com>
1 parent f411a1a commit 7316c97

8 files changed

Lines changed: 104 additions & 228 deletions

File tree

config/crd/bases/runtime.agentic-layer.ai_agents.yaml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1237,7 +1237,7 @@ spec:
12371237
resources:
12381238
description: |-
12391239
resources represents the minimum resources the volume should have.
1240-
If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements
1240+
Users are allowed to specify resource requirements
12411241
that are lower than previous value but must still be higher than capacity recorded in the
12421242
status field of the claim.
12431243
More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
@@ -2116,6 +2116,24 @@ spec:
21162116
description: Kubelet's generated CSRs will be
21172117
addressed to this signer.
21182118
type: string
2119+
userAnnotations:
2120+
additionalProperties:
2121+
type: string
2122+
description: |-
2123+
userAnnotations allow pod authors to pass additional information to
2124+
the signer implementation. Kubernetes does not restrict or validate this
2125+
metadata in any way.
2126+
2127+
These values are copied verbatim into the `spec.unverifiedUserAnnotations` field of
2128+
the PodCertificateRequest objects that Kubelet creates.
2129+
2130+
Entries are subject to the same validation as object metadata annotations,
2131+
with the addition that all keys must be domain-prefixed. No restrictions
2132+
are placed on values, except an overall size limitation on the entire field.
2133+
2134+
Signers should document the keys and values they support. Signers should
2135+
deny requests that contain keys they do not recognize.
2136+
type: object
21192137
required:
21202138
- keyType
21212139
- signerName

go.mod

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
k8s.io/api v0.35.1
99
k8s.io/apimachinery v0.35.1
1010
k8s.io/client-go v0.35.1
11-
sigs.k8s.io/controller-runtime v0.22.4
11+
sigs.k8s.io/controller-runtime v0.23.1
1212
)
1313

1414
require (
@@ -32,7 +32,6 @@ require (
3232
github.com/go-openapi/jsonreference v0.20.2 // indirect
3333
github.com/go-openapi/swag v0.23.0 // indirect
3434
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
35-
github.com/gogo/protobuf v1.3.2 // indirect
3635
github.com/google/btree v1.1.3 // indirect
3736
github.com/google/cel-go v0.26.0 // indirect
3837
github.com/google/gnostic-models v0.7.0 // indirect
@@ -50,24 +49,23 @@ require (
5049
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
5150
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5251
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
53-
github.com/pkg/errors v0.9.1 // indirect
5452
github.com/pmezard/go-difflib v1.0.0 // indirect
55-
github.com/prometheus/client_golang v1.22.0 // indirect
56-
github.com/prometheus/client_model v0.6.1 // indirect
57-
github.com/prometheus/common v0.62.0 // indirect
58-
github.com/prometheus/procfs v0.15.1 // indirect
59-
github.com/spf13/cobra v1.9.1 // indirect
53+
github.com/prometheus/client_golang v1.23.2 // indirect
54+
github.com/prometheus/client_model v0.6.2 // indirect
55+
github.com/prometheus/common v0.66.1 // indirect
56+
github.com/prometheus/procfs v0.16.1 // indirect
57+
github.com/spf13/cobra v1.10.0 // indirect
6058
github.com/spf13/pflag v1.0.9 // indirect
6159
github.com/stoewer/go-strcase v1.3.0 // indirect
6260
github.com/x448/float16 v0.8.4 // indirect
6361
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
64-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
65-
go.opentelemetry.io/otel v1.35.0 // indirect
62+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
63+
go.opentelemetry.io/otel v1.36.0 // indirect
6664
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
6765
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
68-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
69-
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
70-
go.opentelemetry.io/otel/trace v1.35.0 // indirect
66+
go.opentelemetry.io/otel/metric v1.36.0 // indirect
67+
go.opentelemetry.io/otel/sdk v1.36.0 // indirect
68+
go.opentelemetry.io/otel/trace v1.36.0 // indirect
7169
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
7270
go.uber.org/multierr v1.11.0 // indirect
7371
go.uber.org/zap v1.27.0 // indirect
@@ -85,21 +83,21 @@ require (
8583
golang.org/x/tools v0.41.0 // indirect
8684
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
8785
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
88-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
89-
google.golang.org/grpc v1.72.1 // indirect
86+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
87+
google.golang.org/grpc v1.72.2 // indirect
9088
google.golang.org/protobuf v1.36.8 // indirect
9189
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
9290
gopkg.in/inf.v0 v0.9.1 // indirect
9391
gopkg.in/yaml.v3 v3.0.1 // indirect
94-
k8s.io/apiextensions-apiserver v0.34.1 // indirect
95-
k8s.io/apiserver v0.34.1 // indirect
96-
k8s.io/component-base v0.34.1 // indirect
92+
k8s.io/apiextensions-apiserver v0.35.0 // indirect
93+
k8s.io/apiserver v0.35.0 // indirect
94+
k8s.io/component-base v0.35.0 // indirect
9795
k8s.io/klog/v2 v2.130.1 // indirect
9896
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
9997
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
10098
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
10199
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
102100
sigs.k8s.io/randfill v1.0.0 // indirect
103-
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
101+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482 // indirect
104102
sigs.k8s.io/yaml v1.6.0 // indirect
105103
)

0 commit comments

Comments
 (0)