Skip to content

Commit 6a32a3d

Browse files
committed
bump controller-runtime v0.15.0
Signed-off-by: kkkkun <[email protected]>
1 parent a109f24 commit 6a32a3d

File tree

35 files changed

+314
-265
lines changed

35 files changed

+314
-265
lines changed

docs/book/src/component-config-tutorial/testdata/project/go.mod

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module tutorial.kubebuilder.io/project
33
go 1.20
44

55
require (
6-
k8s.io/apimachinery v0.27.1
7-
k8s.io/client-go v0.27.1
8-
sigs.k8s.io/controller-runtime v0.15.0-alpha.0
6+
k8s.io/apimachinery v0.27.2
7+
k8s.io/client-go v0.27.2
8+
sigs.k8s.io/controller-runtime v0.15.0
99
)
1010

1111
require (
@@ -16,7 +16,7 @@ require (
1616
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
1717
github.com/fsnotify/fsnotify v1.6.0 // indirect
1818
github.com/go-logr/logr v1.2.4 // indirect
19-
github.com/go-logr/zapr v1.2.3 // indirect
19+
github.com/go-logr/zapr v1.2.4 // indirect
2020
github.com/go-openapi/jsonpointer v0.19.6 // indirect
2121
github.com/go-openapi/jsonreference v0.20.1 // indirect
2222
github.com/go-openapi/swag v0.22.3 // indirect
@@ -36,31 +36,31 @@ require (
3636
github.com/modern-go/reflect2 v1.0.2 // indirect
3737
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3838
github.com/pkg/errors v0.9.1 // indirect
39-
github.com/prometheus/client_golang v1.15.0 // indirect
40-
github.com/prometheus/client_model v0.3.0 // indirect
39+
github.com/prometheus/client_golang v1.15.1 // indirect
40+
github.com/prometheus/client_model v0.4.0 // indirect
4141
github.com/prometheus/common v0.42.0 // indirect
4242
github.com/prometheus/procfs v0.9.0 // indirect
4343
github.com/spf13/pflag v1.0.5 // indirect
4444
go.uber.org/atomic v1.7.0 // indirect
4545
go.uber.org/multierr v1.6.0 // indirect
4646
go.uber.org/zap v1.24.0 // indirect
47-
golang.org/x/net v0.8.0 // indirect
47+
golang.org/x/net v0.10.0 // indirect
4848
golang.org/x/oauth2 v0.5.0 // indirect
49-
golang.org/x/sys v0.7.0 // indirect
50-
golang.org/x/term v0.6.0 // indirect
51-
golang.org/x/text v0.8.0 // indirect
49+
golang.org/x/sys v0.8.0 // indirect
50+
golang.org/x/term v0.8.0 // indirect
51+
golang.org/x/text v0.9.0 // indirect
5252
golang.org/x/time v0.3.0 // indirect
53-
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
53+
gomodules.xyz/jsonpatch/v2 v2.3.0 // indirect
5454
google.golang.org/appengine v1.6.7 // indirect
5555
google.golang.org/protobuf v1.30.0 // indirect
5656
gopkg.in/inf.v0 v0.9.1 // indirect
5757
gopkg.in/yaml.v2 v2.4.0 // indirect
5858
gopkg.in/yaml.v3 v3.0.1 // indirect
59-
k8s.io/api v0.27.1 // indirect
60-
k8s.io/apiextensions-apiserver v0.27.1 // indirect
61-
k8s.io/component-base v0.27.1 // indirect
59+
k8s.io/api v0.27.2 // indirect
60+
k8s.io/apiextensions-apiserver v0.27.2 // indirect
61+
k8s.io/component-base v0.27.2 // indirect
6262
k8s.io/klog/v2 v2.90.1 // indirect
63-
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
63+
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
6464
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
6565
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
6666
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect

docs/book/src/component-config-tutorial/testdata/project/go.sum

Lines changed: 43 additions & 41 deletions
Large diffs are not rendered by default.

docs/book/src/cronjob-tutorial/testdata/project/config/crd/bases/batch.tutorial.kubebuilder.io_cronjobs.yaml

Lines changed: 62 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,8 @@ spec:
135135
of failed pods, represented by the jobs's .status.failed
136136
field, is incremented and it is checked against the backoffLimit.
137137
This field cannot be used in combination with restartPolicy=OnFailure.
138-
\n This field is alpha-level. To use this field, you must
139-
enable the `JobPodFailurePolicy` feature gate (disabled
140-
by default)."
138+
\n This field is beta-level. It can be used when the `JobPodFailurePolicy`
139+
feature gate is enabled (enabled by default)."
141140
properties:
142141
rules:
143142
description: A list of pod failure policy rules. The rules
@@ -1670,7 +1669,10 @@ spec:
16701669
properties:
16711670
name:
16721671
description: The header field
1673-
name
1672+
name. This will be canonicalized
1673+
upon output, so case-variant
1674+
names will be understood
1675+
as the same header.
16741676
type: string
16751677
value:
16761678
description: The header field
@@ -1788,7 +1790,10 @@ spec:
17881790
properties:
17891791
name:
17901792
description: The header field
1791-
name
1793+
name. This will be canonicalized
1794+
upon output, so case-variant
1795+
names will be understood
1796+
as the same header.
17921797
type: string
17931798
value:
17941799
description: The header field
@@ -1919,7 +1924,10 @@ spec:
19191924
properties:
19201925
name:
19211926
description: The header field
1922-
name
1927+
name. This will be canonicalized
1928+
upon output, so case-variant
1929+
names will be understood as
1930+
the same header.
19231931
type: string
19241932
value:
19251933
description: The header field
@@ -2153,7 +2161,10 @@ spec:
21532161
properties:
21542162
name:
21552163
description: The header field
2156-
name
2164+
name. This will be canonicalized
2165+
upon output, so case-variant
2166+
names will be understood as
2167+
the same header.
21572168
type: string
21582169
value:
21592170
description: The header field
@@ -2623,7 +2634,10 @@ spec:
26232634
properties:
26242635
name:
26252636
description: The header field
2626-
name
2637+
name. This will be canonicalized
2638+
upon output, so case-variant
2639+
names will be understood as
2640+
the same header.
26272641
type: string
26282642
value:
26292643
description: The header field
@@ -3209,7 +3223,10 @@ spec:
32093223
properties:
32103224
name:
32113225
description: The header field
3212-
name
3226+
name. This will be canonicalized
3227+
upon output, so case-variant
3228+
names will be understood
3229+
as the same header.
32133230
type: string
32143231
value:
32153232
description: The header field
@@ -3327,7 +3344,10 @@ spec:
33273344
properties:
33283345
name:
33293346
description: The header field
3330-
name
3347+
name. This will be canonicalized
3348+
upon output, so case-variant
3349+
names will be understood
3350+
as the same header.
33313351
type: string
33323352
value:
33333353
description: The header field
@@ -3457,7 +3477,10 @@ spec:
34573477
properties:
34583478
name:
34593479
description: The header field
3460-
name
3480+
name. This will be canonicalized
3481+
upon output, so case-variant
3482+
names will be understood as
3483+
the same header.
34613484
type: string
34623485
value:
34633486
description: The header field
@@ -3681,7 +3704,10 @@ spec:
36813704
properties:
36823705
name:
36833706
description: The header field
3684-
name
3707+
name. This will be canonicalized
3708+
upon output, so case-variant
3709+
names will be understood as
3710+
the same header.
36853711
type: string
36863712
value:
36873713
description: The header field
@@ -4142,7 +4168,10 @@ spec:
41424168
properties:
41434169
name:
41444170
description: The header field
4145-
name
4171+
name. This will be canonicalized
4172+
upon output, so case-variant
4173+
names will be understood as
4174+
the same header.
41464175
type: string
41474176
value:
41484177
description: The header field
@@ -4767,7 +4796,10 @@ spec:
47674796
properties:
47684797
name:
47694798
description: The header field
4770-
name
4799+
name. This will be canonicalized
4800+
upon output, so case-variant
4801+
names will be understood
4802+
as the same header.
47714803
type: string
47724804
value:
47734805
description: The header field
@@ -4885,7 +4917,10 @@ spec:
48854917
properties:
48864918
name:
48874919
description: The header field
4888-
name
4920+
name. This will be canonicalized
4921+
upon output, so case-variant
4922+
names will be understood
4923+
as the same header.
48894924
type: string
48904925
value:
48914926
description: The header field
@@ -5016,7 +5051,10 @@ spec:
50165051
properties:
50175052
name:
50185053
description: The header field
5019-
name
5054+
name. This will be canonicalized
5055+
upon output, so case-variant
5056+
names will be understood as
5057+
the same header.
50205058
type: string
50215059
value:
50225060
description: The header field
@@ -5250,7 +5288,10 @@ spec:
52505288
properties:
52515289
name:
52525290
description: The header field
5253-
name
5291+
name. This will be canonicalized
5292+
upon output, so case-variant
5293+
names will be understood as
5294+
the same header.
52545295
type: string
52555296
value:
52565297
description: The header field
@@ -5720,7 +5761,10 @@ spec:
57205761
properties:
57215762
name:
57225763
description: The header field
5723-
name
5764+
name. This will be canonicalized
5765+
upon output, so case-variant
5766+
names will be understood as
5767+
the same header.
57245768
type: string
57255769
value:
57265770
description: The header field

docs/book/src/cronjob-tutorial/testdata/project/go.mod

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ module tutorial.kubebuilder.io/project
33
go 1.20
44

55
require (
6-
github.com/onsi/ginkgo/v2 v2.9.2
7-
github.com/onsi/gomega v1.27.6
8-
k8s.io/api v0.27.1
9-
k8s.io/apimachinery v0.27.1
10-
k8s.io/client-go v0.27.1
11-
sigs.k8s.io/controller-runtime v0.15.0-alpha.0
6+
github.com/onsi/ginkgo/v2 v2.9.5
7+
github.com/onsi/gomega v1.27.7
8+
k8s.io/api v0.27.2
9+
k8s.io/apimachinery v0.27.2
10+
k8s.io/client-go v0.27.2
11+
sigs.k8s.io/controller-runtime v0.15.0
1212
)
1313

1414
require (
@@ -19,7 +19,7 @@ require (
1919
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
2020
github.com/fsnotify/fsnotify v1.6.0 // indirect
2121
github.com/go-logr/logr v1.2.4 // indirect
22-
github.com/go-logr/zapr v1.2.3 // indirect
22+
github.com/go-logr/zapr v1.2.4 // indirect
2323
github.com/go-openapi/jsonpointer v0.19.6 // indirect
2424
github.com/go-openapi/jsonreference v0.20.1 // indirect
2525
github.com/go-openapi/swag v0.22.3 // indirect
@@ -41,32 +41,32 @@ require (
4141
github.com/modern-go/reflect2 v1.0.2 // indirect
4242
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4343
github.com/pkg/errors v0.9.1 // indirect
44-
github.com/prometheus/client_golang v1.15.0 // indirect
45-
github.com/prometheus/client_model v0.3.0 // indirect
44+
github.com/prometheus/client_golang v1.15.1 // indirect
45+
github.com/prometheus/client_model v0.4.0 // indirect
4646
github.com/prometheus/common v0.42.0 // indirect
4747
github.com/prometheus/procfs v0.9.0 // indirect
4848
github.com/robfig/cron v1.2.0 // indirect
4949
github.com/spf13/pflag v1.0.5 // indirect
5050
go.uber.org/atomic v1.7.0 // indirect
5151
go.uber.org/multierr v1.6.0 // indirect
5252
go.uber.org/zap v1.24.0 // indirect
53-
golang.org/x/net v0.8.0 // indirect
53+
golang.org/x/net v0.10.0 // indirect
5454
golang.org/x/oauth2 v0.5.0 // indirect
55-
golang.org/x/sys v0.7.0 // indirect
56-
golang.org/x/term v0.6.0 // indirect
57-
golang.org/x/text v0.8.0 // indirect
55+
golang.org/x/sys v0.8.0 // indirect
56+
golang.org/x/term v0.8.0 // indirect
57+
golang.org/x/text v0.9.0 // indirect
5858
golang.org/x/time v0.3.0 // indirect
59-
golang.org/x/tools v0.7.0 // indirect
60-
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
59+
golang.org/x/tools v0.9.1 // indirect
60+
gomodules.xyz/jsonpatch/v2 v2.3.0 // indirect
6161
google.golang.org/appengine v1.6.7 // indirect
6262
google.golang.org/protobuf v1.30.0 // indirect
6363
gopkg.in/inf.v0 v0.9.1 // indirect
6464
gopkg.in/yaml.v2 v2.4.0 // indirect
6565
gopkg.in/yaml.v3 v3.0.1 // indirect
66-
k8s.io/apiextensions-apiserver v0.27.1 // indirect
67-
k8s.io/component-base v0.27.1 // indirect
66+
k8s.io/apiextensions-apiserver v0.27.2 // indirect
67+
k8s.io/component-base v0.27.2 // indirect
6868
k8s.io/klog/v2 v2.90.1 // indirect
69-
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
69+
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
7070
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
7171
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
7272
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect

0 commit comments

Comments
 (0)