Skip to content

Commit bc5b120

Browse files
tidy: update go.mod/go.sum after dependency bumps
1 parent a0b06fd commit bc5b120

File tree

3 files changed

+81
-106
lines changed

3 files changed

+81
-106
lines changed

crds/operator.kyma-project.io_valkeyoperators.yaml

Lines changed: 12 additions & 22 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.16.5
6+
controller-gen.kubebuilder.io/version: v0.19.0
77
name: valkeyoperators.operator.kyma-project.io
88
spec:
99
group: operator.kyma-project.io
@@ -330,7 +330,6 @@ spec:
330330
pod labels will be ignored. The default value is empty.
331331
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
332332
Also, matchLabelKeys cannot be set when labelSelector isn't set.
333-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
334333
items:
335334
type: string
336335
type: array
@@ -345,7 +344,6 @@ spec:
345344
pod labels will be ignored. The default value is empty.
346345
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
347346
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
348-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
349347
items:
350348
type: string
351349
type: array
@@ -511,7 +509,6 @@ spec:
511509
pod labels will be ignored. The default value is empty.
512510
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
513511
Also, matchLabelKeys cannot be set when labelSelector isn't set.
514-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
515512
items:
516513
type: string
517514
type: array
@@ -526,7 +523,6 @@ spec:
526523
pod labels will be ignored. The default value is empty.
527524
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
528525
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
529-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
530526
items:
531527
type: string
532528
type: array
@@ -619,8 +615,8 @@ spec:
619615
most preferred is the one with the greatest sum of weights, i.e.
620616
for each node that meets all of the scheduling requirements (resource
621617
request, requiredDuringScheduling anti-affinity expressions, etc.),
622-
compute a sum by iterating through the elements of this field and adding
623-
"weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the
618+
compute a sum by iterating through the elements of this field and subtracting
619+
"weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the
624620
node(s) with the highest sum are the most preferred.
625621
items:
626622
description: The weights of all of the matched WeightedPodAffinityTerm
@@ -689,7 +685,6 @@ spec:
689685
pod labels will be ignored. The default value is empty.
690686
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
691687
Also, matchLabelKeys cannot be set when labelSelector isn't set.
692-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
693688
items:
694689
type: string
695690
type: array
@@ -704,7 +699,6 @@ spec:
704699
pod labels will be ignored. The default value is empty.
705700
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
706701
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
707-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
708702
items:
709703
type: string
710704
type: array
@@ -870,7 +864,6 @@ spec:
870864
pod labels will be ignored. The default value is empty.
871865
The same key is forbidden to exist in both matchLabelKeys and labelSelector.
872866
Also, matchLabelKeys cannot be set when labelSelector isn't set.
873-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
874867
items:
875868
type: string
876869
type: array
@@ -885,7 +878,6 @@ spec:
885878
pod labels will be ignored. The default value is empty.
886879
The same key is forbidden to exist in both mismatchLabelKeys and labelSelector.
887880
Also, mismatchLabelKeys cannot be set when labelSelector isn't set.
888-
This is a beta field and requires enabling MatchLabelKeysInPodAffinity feature gate (enabled by default).
889881
items:
890882
type: string
891883
type: array
@@ -1010,29 +1002,29 @@ spec:
10101002
properties:
10111003
alert:
10121004
description: |-
1013-
Name of the alert. Must be a valid label value.
1005+
alert defines the name of the alert. Must be a valid label value.
10141006
Only one of `record` and `alert` must be set.
10151007
type: string
10161008
annotations:
10171009
additionalProperties:
10181010
type: string
10191011
description: |-
1020-
Annotations to add to each alert.
1012+
annotations defines annotations to add to each alert.
10211013
Only valid for alerting rules.
10221014
type: object
10231015
expr:
10241016
anyOf:
10251017
- type: integer
10261018
- type: string
1027-
description: PromQL expression to evaluate.
1019+
description: expr defines the PromQL expression to evaluate.
10281020
x-kubernetes-int-or-string: true
10291021
for:
1030-
description: Alerts are considered firing once they
1031-
have been returned for this long.
1022+
description: for defines how alerts are considered firing
1023+
once they have been returned for this long.
10321024
pattern: ^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$
10331025
type: string
10341026
keep_firing_for:
1035-
description: KeepFiringFor defines how long an alert
1027+
description: keep_firing_for defines how long an alert
10361028
will continue firing after the condition that triggered
10371029
it has cleared.
10381030
minLength: 1
@@ -1041,11 +1033,11 @@ spec:
10411033
labels:
10421034
additionalProperties:
10431035
type: string
1044-
description: Labels to add or overwrite.
1036+
description: labels defines labels to add or overwrite.
10451037
type: object
10461038
record:
10471039
description: |-
1048-
Name of the time series to output to. Must be a valid metric name.
1040+
record defines the name of the time series to output to. Must be a valid metric name.
10491041
Only one of `record` and `alert` must be set.
10501042
type: string
10511043
required:
@@ -1319,7 +1311,7 @@ spec:
13191311
Claims lists the names of resources, defined in spec.resourceClaims,
13201312
that are used by this container.
13211313
1322-
This is an alpha field and requires enabling the
1314+
This field depends on the
13231315
DynamicResourceAllocation feature gate.
13241316
13251317
This field is immutable. It can only be set for containers.
@@ -1723,7 +1715,6 @@ spec:
17231715
- Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations.
17241716
17251717
If this value is nil, the behavior is equivalent to the Honor policy.
1726-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
17271718
type: string
17281719
nodeTaintsPolicy:
17291720
description: |-
@@ -1734,7 +1725,6 @@ spec:
17341725
- Ignore: node taints are ignored. All nodes are included.
17351726
17361727
If this value is nil, the behavior is equivalent to the Ignore policy.
1737-
This is a beta-level feature default enabled by the NodeInclusionPolicyInPodTopologySpread feature flag.
17381728
type: string
17391729
topologyKey:
17401730
description: |-

go.mod

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,9 @@ require (
3636
github.com/go-openapi/swag v0.23.0 // indirect
3737
github.com/gobuffalo/flect v1.0.3 // indirect
3838
github.com/gogo/protobuf v1.3.2 // indirect
39-
github.com/golang/protobuf v1.5.4 // indirect
4039
github.com/google/btree v1.1.3 // indirect
4140
github.com/google/gnostic-models v0.7.0 // indirect
4241
github.com/google/go-cmp v0.7.0 // indirect
43-
github.com/google/gofuzz v1.2.0 // indirect
4442
github.com/google/uuid v1.6.0 // indirect
4543
github.com/hashicorp/errwrap v1.1.0 // indirect
4644
github.com/hashicorp/go-multierror v1.1.1 // indirect
@@ -49,7 +47,6 @@ require (
4947
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5048
github.com/josharian/intern v1.0.0 // indirect
5149
github.com/json-iterator/go v1.1.12 // indirect
52-
github.com/klauspost/compress v1.18.0 // indirect
5350
github.com/mailru/easyjson v0.7.7 // indirect
5451
github.com/mattn/go-colorable v0.1.13 // indirect
5552
github.com/mattn/go-isatty v0.0.20 // indirect

0 commit comments

Comments
 (0)