Skip to content

Commit e6bd365

Browse files
fix(go.mod/go.sum): update minor dependencies (golang) (#32)
* fix(go.mod/go.sum): update minor dependencies (golang) * update deps --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: i771807 <[email protected]>
1 parent ba08db4 commit e6bd365

4 files changed

Lines changed: 99 additions & 119 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM --platform=$BUILDPLATFORM golang:1.25.3 AS builder
2+
FROM --platform=$BUILDPLATFORM golang:1.25.6 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

crds/cache.cs.sap.com_valkeys.yaml

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.19.0
6+
controller-gen.kubebuilder.io/version: v0.20.0
77
name: valkeys.cache.cs.sap.com
88
spec:
99
group: cache.cs.sap.com
@@ -2246,7 +2246,7 @@ spec:
22462246
resources:
22472247
description: |-
22482248
resources represents the minimum resources the volume should have.
2249-
If RecoverVolumeExpansionFailure feature is enabled users are allowed to specify resource requirements
2249+
Users are allowed to specify resource requirements
22502250
that are lower than previous value but must still be higher than capacity recorded in the
22512251
status field of the claim.
22522252
More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
@@ -3127,6 +3127,24 @@ spec:
31273127
description: Kubelet's generated CSRs will
31283128
be addressed to this signer.
31293129
type: string
3130+
userAnnotations:
3131+
additionalProperties:
3132+
type: string
3133+
description: |-
3134+
userAnnotations allow pod authors to pass additional information to
3135+
the signer implementation. Kubernetes does not restrict or validate this
3136+
metadata in any way.
3137+
3138+
These values are copied verbatim into the `spec.unverifiedUserAnnotations` field of
3139+
the PodCertificateRequest objects that Kubelet creates.
3140+
3141+
Entries are subject to the same validation as object metadata annotations,
3142+
with the addition that all keys must be domain-prefixed. No restrictions
3143+
are placed on values, except an overall size limitation on the entire field.
3144+
3145+
Signers should document the keys and values they support. Signers should
3146+
deny requests that contain keys they do not recognize.
3147+
type: object
31303148
required:
31313149
- keyType
31323150
- signerName
@@ -5188,7 +5206,9 @@ spec:
51885206
type: integer
51895207
type: object
51905208
resizePolicy:
5191-
description: Resources resize policy for the container.
5209+
description: |-
5210+
Resources resize policy for the container.
5211+
This field cannot be set on ephemeral containers.
51925212
items:
51935213
description: ContainerResizePolicy represents resource resize
51945214
policy for the container.
@@ -5881,9 +5901,10 @@ spec:
58815901
operator:
58825902
description: |-
58835903
Operator represents a key's relationship to the value.
5884-
Valid operators are Exists and Equal. Defaults to Equal.
5904+
Valid operators are Exists, Equal, Lt, and Gt. Defaults to Equal.
58855905
Exists is equivalent to wildcard for value, so that a pod can
58865906
tolerate all taints of a particular category.
5907+
Lt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators).
58875908
type: string
58885909
tolerationSeconds:
58895910
description: |-

go.mod

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
module github.com/sap/valkey-operator
22

3-
go 1.25.3
3+
go 1.25.6
44

55
require (
66
github.com/Masterminds/sprig/v3 v3.3.0
77
github.com/cert-manager/cert-manager v1.19.1
88
github.com/google/uuid v1.6.0
9-
github.com/onsi/ginkgo/v2 v2.27.1
10-
github.com/onsi/gomega v1.38.2
9+
github.com/onsi/ginkgo/v2 v2.27.2
10+
github.com/onsi/gomega v1.39.0
1111
github.com/pkg/errors v0.9.1
12-
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.86.1
13-
github.com/redis/go-redis/v9 v9.14.1
12+
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.88.0
13+
github.com/redis/go-redis/v9 v9.17.2
1414
github.com/sap/admission-webhook-runtime v0.1.73
1515
github.com/sap/component-operator-runtime v0.3.115
1616
github.com/sap/go-generics v0.2.42
17-
golang.org/x/mod v0.29.0
18-
k8s.io/api v0.34.1
19-
k8s.io/apiextensions-apiserver v0.34.1
20-
k8s.io/apimachinery v0.35.0-alpha.2
21-
k8s.io/client-go v0.34.1
22-
k8s.io/code-generator v0.34.1
23-
k8s.io/kube-aggregator v0.34.1
24-
sigs.k8s.io/controller-runtime v0.22.3
17+
golang.org/x/mod v0.32.0
18+
k8s.io/api v0.35.0
19+
k8s.io/apiextensions-apiserver v0.35.0
20+
k8s.io/apimachinery v0.35.0
21+
k8s.io/client-go v0.35.0
22+
k8s.io/code-generator v0.35.0
23+
k8s.io/kube-aggregator v0.35.0
24+
sigs.k8s.io/controller-runtime v0.23.0
2525
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20251020210837-fb2beabd029b
26-
sigs.k8s.io/controller-tools v0.19.0
26+
sigs.k8s.io/controller-tools v0.20.0
2727
sigs.k8s.io/yaml v1.6.0
2828
)
2929

@@ -49,7 +49,6 @@ require (
4949
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
5050
github.com/gobuffalo/flect v1.0.3 // indirect
5151
github.com/gobwas/glob v0.2.3 // indirect
52-
github.com/gogo/protobuf v1.3.2 // indirect
5352
github.com/google/btree v1.1.3 // indirect
5453
github.com/google/gnostic-models v0.7.0 // indirect
5554
github.com/google/go-cmp v0.7.0 // indirect
@@ -80,30 +79,29 @@ require (
8079
github.com/shopspring/decimal v1.4.0 // indirect
8180
github.com/spf13/afero v1.12.0 // indirect
8281
github.com/spf13/cast v1.10.0 // indirect
83-
github.com/spf13/cobra v1.10.1 // indirect
82+
github.com/spf13/cobra v1.10.2 // indirect
8483
github.com/spf13/pflag v1.0.10 // indirect
8584
github.com/x448/float16 v0.8.4 // indirect
86-
go.uber.org/automaxprocs v1.6.0 // indirect
8785
go.uber.org/multierr v1.11.0 // indirect
8886
go.uber.org/zap v1.27.0 // indirect
8987
go.yaml.in/yaml/v2 v2.4.3 // indirect
9088
go.yaml.in/yaml/v3 v3.0.4 // indirect
91-
golang.org/x/crypto v0.42.0 // indirect
92-
golang.org/x/net v0.44.0 // indirect
89+
golang.org/x/crypto v0.46.0 // indirect
90+
golang.org/x/net v0.48.0 // indirect
9391
golang.org/x/oauth2 v0.31.0 // indirect
94-
golang.org/x/sync v0.17.0 // indirect
95-
golang.org/x/sys v0.36.0 // indirect
96-
golang.org/x/term v0.35.0 // indirect
97-
golang.org/x/text v0.29.0 // indirect
92+
golang.org/x/sync v0.19.0 // indirect
93+
golang.org/x/sys v0.39.0 // indirect
94+
golang.org/x/term v0.38.0 // indirect
95+
golang.org/x/text v0.32.0 // indirect
9896
golang.org/x/time v0.13.0 // indirect
99-
golang.org/x/tools v0.37.0 // indirect
97+
golang.org/x/tools v0.40.0 // indirect
10098
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
10199
google.golang.org/protobuf v1.36.9 // indirect
102100
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
103101
gopkg.in/inf.v0 v0.9.1 // indirect
104102
gopkg.in/yaml.v2 v2.4.0 // indirect
105103
gopkg.in/yaml.v3 v3.0.1 // indirect
106-
k8s.io/gengo/v2 v2.0.0-20250820003526-c297c0c1eb9d // indirect
104+
k8s.io/gengo/v2 v2.0.0-20250922181213-ec3ebc5fd46b // indirect
107105
k8s.io/klog/v2 v2.130.1 // indirect
108106
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
109107
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect

0 commit comments

Comments
 (0)