Skip to content

Commit 1172d43

Browse files
warning: bump controller runtime v0.15.0 alpha to allow we working on in breaking changes
1 parent 4a04609 commit 1172d43

File tree

45 files changed

+637
-1228
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+637
-1228
lines changed

docs/book/src/component-config-tutorial/testdata/project/config/crd/bases/config.tutorial.kubebuilder.io_projectconfigs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ spec:
138138
metadata:
139139
type: object
140140
metrics:
141-
description: Metrics contains thw controller metrics configuration
141+
description: Metrics contains the controller metrics configuration
142142
properties:
143143
bindAddress:
144144
description: BindAddress is the TCP address that the controller should

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

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

55
require (
6-
k8s.io/apimachinery v0.26.1
7-
k8s.io/client-go v0.26.1
8-
sigs.k8s.io/controller-runtime v0.14.4
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
99
)
1010

1111
require (
1212
github.com/beorn7/perks v1.0.1 // indirect
13-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
13+
github.com/cespare/xxhash/v2 v2.2.0 // indirect
1414
github.com/davecgh/go-spew v1.1.1 // indirect
1515
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
1616
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
1717
github.com/fsnotify/fsnotify v1.6.0 // indirect
18-
github.com/go-logr/logr v1.2.3 // indirect
18+
github.com/go-logr/logr v1.2.4 // indirect
1919
github.com/go-logr/zapr v1.2.3 // indirect
20-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
21-
github.com/go-openapi/jsonreference v0.20.0 // indirect
22-
github.com/go-openapi/swag v0.19.14 // indirect
20+
github.com/go-openapi/jsonpointer v0.19.6 // indirect
21+
github.com/go-openapi/jsonreference v0.20.1 // indirect
22+
github.com/go-openapi/swag v0.22.3 // indirect
2323
github.com/gogo/protobuf v1.3.2 // indirect
2424
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
25-
github.com/golang/protobuf v1.5.2 // indirect
25+
github.com/golang/protobuf v1.5.3 // indirect
2626
github.com/google/gnostic v0.5.7-v3refs // indirect
2727
github.com/google/go-cmp v0.5.9 // indirect
2828
github.com/google/gofuzz v1.1.0 // indirect
29-
github.com/google/uuid v1.1.2 // indirect
29+
github.com/google/uuid v1.3.0 // indirect
3030
github.com/imdario/mergo v0.3.6 // indirect
3131
github.com/josharian/intern v1.0.0 // indirect
3232
github.com/json-iterator/go v1.1.12 // indirect
33-
github.com/mailru/easyjson v0.7.6 // indirect
34-
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
33+
github.com/mailru/easyjson v0.7.7 // indirect
34+
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
3535
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
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.14.0 // indirect
39+
github.com/prometheus/client_golang v1.15.0 // indirect
4040
github.com/prometheus/client_model v0.3.0 // indirect
41-
github.com/prometheus/common v0.37.0 // indirect
42-
github.com/prometheus/procfs v0.8.0 // indirect
41+
github.com/prometheus/common v0.42.0 // indirect
42+
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.3.1-0.20221206200815-1e63c2f08a10 // indirect
48-
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
49-
golang.org/x/sys v0.3.0 // indirect
50-
golang.org/x/term v0.3.0 // indirect
51-
golang.org/x/text v0.5.0 // indirect
47+
golang.org/x/net v0.8.0 // indirect
48+
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
5252
golang.org/x/time v0.3.0 // indirect
5353
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
5454
google.golang.org/appengine v1.6.7 // indirect
55-
google.golang.org/protobuf v1.28.1 // indirect
55+
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.26.1 // indirect
60-
k8s.io/apiextensions-apiserver v0.26.1 // indirect
61-
k8s.io/component-base v0.26.1 // indirect
62-
k8s.io/klog/v2 v2.80.1 // indirect
63-
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 // indirect
64-
k8s.io/utils v0.0.0-20221128185143-99ec85e7a448 // indirect
65-
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // 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
62+
k8s.io/klog/v2 v2.90.1 // indirect
63+
k8s.io/kube-openapi v0.0.0-20230308215209-15aac26d736a // indirect
64+
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
65+
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
6666
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
6767
sigs.k8s.io/yaml v1.3.0 // indirect
6868
)

0 commit comments

Comments
 (0)