Skip to content

Commit bb86349

Browse files
✨ Upgrade controller-runtime from v0.22.0 to v0.22.1 (#5098)
Upgrade controller-runtime from v0.22.0 to v0.22.1
1 parent e22ff6f commit bb86349

File tree

41 files changed

+50
-50
lines changed

Some content is hidden

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

41 files changed

+50
-50
lines changed

docs/book/src/cronjob-tutorial/testdata/project/cmd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func main() {
141141

142142
// Metrics endpoint is enabled in 'config/default/kustomization.yaml'. The Metrics options configure the server.
143143
// More info:
144-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/metrics/server
144+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/metrics/server
145145
// - https://book.kubebuilder.io/reference/metrics.html
146146
metricsServerOptions := metricsserver.Options{
147147
BindAddress: metricsAddr,
@@ -153,7 +153,7 @@ func main() {
153153
// FilterProvider is used to protect the metrics endpoint with authn/authz.
154154
// These configurations ensure that only authorized users and service accounts
155155
// can access the metrics endpoint. The RBAC are configured in 'config/rbac/kustomization.yaml'. More info:
156-
// https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/metrics/filters#WithAuthenticationAndAuthorization
156+
// https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/metrics/filters#WithAuthenticationAndAuthorization
157157
metricsServerOptions.FilterProvider = filters.WithAuthenticationAndAuthorization
158158
}
159159

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
k8s.io/apimachinery v0.34.0
1111
k8s.io/client-go v0.34.0
1212
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
13-
sigs.k8s.io/controller-runtime v0.22.0
13+
sigs.k8s.io/controller-runtime v0.22.1
1414
)
1515

1616
require (

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 h1:hwvWFiBzdWw1FhfY1FooPn3kzWuJ8
249249
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
250250
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 h1:jpcvIRr3GLoUoEKRkHKSmGjxb6lWwrBlJsXc+eUYQHM=
251251
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2/go.mod h1:Ve9uj1L+deCXFrPOk1LpFXqTg7LCFzFso6PA48q/XZw=
252-
sigs.k8s.io/controller-runtime v0.22.0 h1:mTOfibb8Hxwpx3xEkR56i7xSjB+nH4hZG37SrlCY5e0=
253-
sigs.k8s.io/controller-runtime v0.22.0/go.mod h1:FwiwRjkRPbiN+zp2QRp7wlTCzbUXxZ/D4OzuQUDwBHY=
252+
sigs.k8s.io/controller-runtime v0.22.1 h1:Ah1T7I+0A7ize291nJZdS1CabF/lB4E++WizgV24Eqg=
253+
sigs.k8s.io/controller-runtime v0.22.1/go.mod h1:FwiwRjkRPbiN+zp2QRp7wlTCzbUXxZ/D4OzuQUDwBHY=
254254
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 h1:gBQPwqORJ8d8/YNZWEjoZs7npUVDpVXUUOFfW6CgAqE=
255255
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8/go.mod h1:mdzfpAEoE6DHQEN0uh9ZbOCuHbLK5wOm7dK4ctXE9Tg=
256256
sigs.k8s.io/randfill v1.0.0 h1:JfjMILfT8A6RbawdsK2JXGBR5AQVfd+9TbzrlneTyrU=

docs/book/src/cronjob-tutorial/testdata/project/internal/controller/cronjob_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ var (
9595
// the user.
9696
//
9797
// For more details, check Reconcile and its Result here:
98-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/reconcile
98+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/reconcile
9999
// nolint:gocyclo
100100
func (r *CronJobReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
101101
log := logf.FromContext(ctx)

docs/book/src/getting-started/testdata/project/cmd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ func main() {
121121

122122
// Metrics endpoint is enabled in 'config/default/kustomization.yaml'. The Metrics options configure the server.
123123
// More info:
124-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/metrics/server
124+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/metrics/server
125125
// - https://book.kubebuilder.io/reference/metrics.html
126126
metricsServerOptions := metricsserver.Options{
127127
BindAddress: metricsAddr,
@@ -133,7 +133,7 @@ func main() {
133133
// FilterProvider is used to protect the metrics endpoint with authn/authz.
134134
// These configurations ensure that only authorized users and service accounts
135135
// can access the metrics endpoint. The RBAC are configured in 'config/rbac/kustomization.yaml'. More info:
136-
// https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/metrics/filters#WithAuthenticationAndAuthorization
136+
// https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/metrics/filters#WithAuthenticationAndAuthorization
137137
metricsServerOptions.FilterProvider = filters.WithAuthenticationAndAuthorization
138138
}
139139

docs/book/src/getting-started/testdata/project/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
k8s.io/apimachinery v0.34.0
1010
k8s.io/client-go v0.34.0
1111
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
12-
sigs.k8s.io/controller-runtime v0.22.0
12+
sigs.k8s.io/controller-runtime v0.22.1
1313
)
1414

1515
require (

docs/book/src/getting-started/testdata/project/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,8 @@ k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 h1:hwvWFiBzdWw1FhfY1FooPn3kzWuJ8
247247
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
248248
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 h1:jpcvIRr3GLoUoEKRkHKSmGjxb6lWwrBlJsXc+eUYQHM=
249249
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2/go.mod h1:Ve9uj1L+deCXFrPOk1LpFXqTg7LCFzFso6PA48q/XZw=
250-
sigs.k8s.io/controller-runtime v0.22.0 h1:mTOfibb8Hxwpx3xEkR56i7xSjB+nH4hZG37SrlCY5e0=
251-
sigs.k8s.io/controller-runtime v0.22.0/go.mod h1:FwiwRjkRPbiN+zp2QRp7wlTCzbUXxZ/D4OzuQUDwBHY=
250+
sigs.k8s.io/controller-runtime v0.22.1 h1:Ah1T7I+0A7ize291nJZdS1CabF/lB4E++WizgV24Eqg=
251+
sigs.k8s.io/controller-runtime v0.22.1/go.mod h1:FwiwRjkRPbiN+zp2QRp7wlTCzbUXxZ/D4OzuQUDwBHY=
252252
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 h1:gBQPwqORJ8d8/YNZWEjoZs7npUVDpVXUUOFfW6CgAqE=
253253
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8/go.mod h1:mdzfpAEoE6DHQEN0uh9ZbOCuHbLK5wOm7dK4ctXE9Tg=
254254
sigs.k8s.io/randfill v1.0.0 h1:JfjMILfT8A6RbawdsK2JXGBR5AQVfd+9TbzrlneTyrU=

docs/book/src/getting-started/testdata/project/internal/controller/memcached_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ type MemcachedReconciler struct {
6868
// - About Controllers: https://kubernetes.io/docs/concepts/architecture/controller/
6969
//
7070
// For more details, check Reconcile and its Result here:
71-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/reconcile
71+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/reconcile
7272
func (r *MemcachedReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
7373
log := logf.FromContext(ctx)
7474

docs/book/src/multiversion-tutorial/testdata/project/cmd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func main() {
140140

141141
// Metrics endpoint is enabled in 'config/default/kustomization.yaml'. The Metrics options configure the server.
142142
// More info:
143-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/metrics/server
143+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/metrics/server
144144
// - https://book.kubebuilder.io/reference/metrics.html
145145
metricsServerOptions := metricsserver.Options{
146146
BindAddress: metricsAddr,
@@ -152,7 +152,7 @@ func main() {
152152
// FilterProvider is used to protect the metrics endpoint with authn/authz.
153153
// These configurations ensure that only authorized users and service accounts
154154
// can access the metrics endpoint. The RBAC are configured in 'config/rbac/kustomization.yaml'. More info:
155-
// https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/metrics/filters#WithAuthenticationAndAuthorization
155+
// https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/metrics/filters#WithAuthenticationAndAuthorization
156156
metricsServerOptions.FilterProvider = filters.WithAuthenticationAndAuthorization
157157
}
158158

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
k8s.io/api v0.34.0
1010
k8s.io/apimachinery v0.34.0
1111
k8s.io/client-go v0.34.0
12-
sigs.k8s.io/controller-runtime v0.22.0
12+
sigs.k8s.io/controller-runtime v0.22.1
1313
)
1414

1515
require (

0 commit comments

Comments
 (0)