Skip to content

Commit 82449d9

Browse files
fix(deps): update module sigs.k8s.io/controller-runtime to v0.22.1 (#531)
| datasource | package | from | to | | ---------- | ------------------------------ | ------- | ------- | | go | sigs.k8s.io/controller-runtime | v0.21.0 | v0.22.1 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Marco Nenciarini <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Marco Nenciarini <[email protected]>
1 parent dfd9861 commit 82449d9

File tree

4 files changed

+137
-62
lines changed

4 files changed

+137
-62
lines changed

config/crd/bases/barmancloud.cnpg.io_objectstores.yaml

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,9 @@ spec:
406406
in a Container.
407407
properties:
408408
name:
409-
description: Name of the environment variable. Must be a
410-
C_IDENTIFIER.
409+
description: |-
410+
Name of the environment variable.
411+
May consist of any printable ASCII characters except '='.
411412
type: string
412413
value:
413414
description: |-
@@ -465,6 +466,43 @@ spec:
465466
- fieldPath
466467
type: object
467468
x-kubernetes-map-type: atomic
469+
fileKeyRef:
470+
description: |-
471+
FileKeyRef selects a key of the env file.
472+
Requires the EnvFiles feature gate to be enabled.
473+
properties:
474+
key:
475+
description: |-
476+
The key within the env file. An invalid key will prevent the pod from starting.
477+
The keys defined within a source may consist of any printable ASCII characters except '='.
478+
During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters.
479+
type: string
480+
optional:
481+
default: false
482+
description: |-
483+
Specify whether the file or its key must be defined. If the file or key
484+
does not exist, then the env var is not published.
485+
If optional is set to true and the specified key does not exist,
486+
the environment variable will not be set in the Pod's containers.
487+
488+
If optional is set to false and the specified key does not exist,
489+
an error will be returned during Pod creation.
490+
type: boolean
491+
path:
492+
description: |-
493+
The path within the volume from which to select the file.
494+
Must be relative and may not contain the '..' path or start with '..'.
495+
type: string
496+
volumeName:
497+
description: The name of the volume mount containing
498+
the env file.
499+
type: string
500+
required:
501+
- key
502+
- path
503+
- volumeName
504+
type: object
505+
x-kubernetes-map-type: atomic
468506
resourceFieldRef:
469507
description: |-
470508
Selects a resource of the container: only resources limits and requests
@@ -528,7 +566,7 @@ spec:
528566
Claims lists the names of resources, defined in spec.resourceClaims,
529567
that are used by this container.
530568
531-
This is an alpha field and requires enabling the
569+
This field depends on the
532570
DynamicResourceAllocation feature gate.
533571
534572
This field is immutable. It can only be set for containers.

go.mod

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ require (
1616
github.com/spf13/viper v1.21.0
1717
google.golang.org/grpc v1.75.1
1818
gopkg.in/yaml.v3 v3.0.1
19-
k8s.io/api v0.33.4
20-
k8s.io/apiextensions-apiserver v0.33.4
21-
k8s.io/apimachinery v0.33.4
22-
k8s.io/client-go v0.33.4
19+
k8s.io/api v0.34.0
20+
k8s.io/apiextensions-apiserver v0.34.0
21+
k8s.io/apimachinery v0.34.0
22+
k8s.io/client-go v0.34.0
2323
k8s.io/utils v0.0.0-20250820121507-0af2bda4dd1d
24-
sigs.k8s.io/controller-runtime v0.21.0
24+
sigs.k8s.io/controller-runtime v0.22.1
2525
sigs.k8s.io/kustomize/api v0.20.1
2626
sigs.k8s.io/kustomize/kyaml v0.20.1
2727
)
@@ -35,11 +35,11 @@ require (
3535
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
3636
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3737
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
38-
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
38+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
3939
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
4040
github.com/felixge/httpsnoop v1.0.4 // indirect
4141
github.com/fsnotify/fsnotify v1.9.0 // indirect
42-
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
42+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
4343
github.com/go-errors/errors v1.5.1 // indirect
4444
github.com/go-logr/logr v1.4.3 // indirect
4545
github.com/go-logr/stdr v1.2.2 // indirect
@@ -51,14 +51,14 @@ require (
5151
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
5252
github.com/gogo/protobuf v1.3.2 // indirect
5353
github.com/google/btree v1.1.3 // indirect
54-
github.com/google/cel-go v0.25.0 // indirect
55-
github.com/google/gnostic-models v0.6.9 // indirect
54+
github.com/google/cel-go v0.26.0 // indirect
55+
github.com/google/gnostic-models v0.7.0 // indirect
5656
github.com/google/go-cmp v0.7.0 // indirect
5757
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
5858
github.com/google/uuid v1.6.0 // indirect
5959
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
6060
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 // indirect
61-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1 // indirect
61+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
6262
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6363
github.com/josharian/intern v1.0.0 // indirect
6464
github.com/json-iterator/go v1.1.12 // indirect
@@ -67,12 +67,13 @@ require (
6767
github.com/mailru/easyjson v0.9.0 // indirect
6868
github.com/moby/spdystream v0.5.0 // indirect
6969
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
70-
github.com/modern-go/reflect2 v1.0.2 // indirect
70+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
7171
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
7272
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
7373
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
7474
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
7575
github.com/pkg/errors v0.9.1 // indirect
76+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
7677
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.84.1 // indirect
7778
github.com/prometheus/client_golang v1.23.0 // indirect
7879
github.com/prometheus/client_model v0.6.2 // indirect
@@ -92,12 +93,12 @@ require (
9293
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
9394
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
9495
go.opentelemetry.io/otel v1.37.0 // indirect
95-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 // indirect
96-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 // indirect
96+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
97+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
9798
go.opentelemetry.io/otel/metric v1.37.0 // indirect
9899
go.opentelemetry.io/otel/sdk v1.37.0 // indirect
99100
go.opentelemetry.io/otel/trace v1.37.0 // indirect
100-
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
101+
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
101102
go.uber.org/automaxprocs v1.6.0 // indirect
102103
go.uber.org/multierr v1.11.0 // indirect
103104
go.uber.org/zap v1.27.0 // indirect
@@ -118,14 +119,14 @@ require (
118119
google.golang.org/protobuf v1.36.7 // indirect
119120
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
120121
gopkg.in/inf.v0 v0.9.1 // indirect
121-
k8s.io/apiserver v0.33.4 // indirect
122-
k8s.io/component-base v0.33.4 // indirect
122+
k8s.io/apiserver v0.34.0 // indirect
123+
k8s.io/component-base v0.34.0 // indirect
123124
k8s.io/klog/v2 v2.130.1 // indirect
124-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
125+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
125126
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
126127
sigs.k8s.io/gateway-api v1.1.0 // indirect
127128
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
128129
sigs.k8s.io/randfill v1.0.0 // indirect
129-
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
130+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
130131
sigs.k8s.io/yaml v1.6.0 // indirect
131132
)

0 commit comments

Comments
 (0)