Skip to content

Commit 5255f40

Browse files
✨ Upgrade controller-runtime from v0.19.0 to v0.19.1 (#4234)
Upgrade controller-runtime from v0.19.0 to v0.19.1
1 parent 81cf04f commit 5255f40

File tree

38 files changed

+47
-47
lines changed

38 files changed

+47
-47
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
@@ -118,7 +118,7 @@ func main() {
118118

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

docs/book/src/cronjob-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.31.0
1010
k8s.io/apimachinery v0.31.0
1111
k8s.io/client-go v0.31.0
12-
sigs.k8s.io/controller-runtime v0.19.0
12+
sigs.k8s.io/controller-runtime v0.19.1
1313
)
1414

1515
require (

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 h1:pUdcCO1Lk/tbT5ztQWOBi5HBgbBP1
243243
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
244244
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 h1:2770sDpzrjjsAtVhSeUFseziht227YAWYHLGNM8QPwY=
245245
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3/go.mod h1:Ve9uj1L+deCXFrPOk1LpFXqTg7LCFzFso6PA48q/XZw=
246-
sigs.k8s.io/controller-runtime v0.19.0 h1:nWVM7aq+Il2ABxwiCizrVDSlmDcshi9llbaFbC0ji/Q=
247-
sigs.k8s.io/controller-runtime v0.19.0/go.mod h1:iRmWllt8IlaLjvTTDLhRBXIEtkCK6hwVBJJsYS9Ajf4=
246+
sigs.k8s.io/controller-runtime v0.19.1 h1:Son+Q40+Be3QWb+niBXAg2vFiYWolDjjRfO8hn/cxOk=
247+
sigs.k8s.io/controller-runtime v0.19.1/go.mod h1:iRmWllt8IlaLjvTTDLhRBXIEtkCK6hwVBJJsYS9Ajf4=
248248
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
249249
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
250250
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=

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
func (r *CronJobReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
100100
log := log.FromContext(ctx)
101101

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

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

9999
// Metrics endpoint is enabled in 'config/default/kustomization.yaml'. The Metrics options configure the server.
100100
// More info:
101-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/metrics/server
101+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/metrics/server
102102
// - https://book.kubebuilder.io/reference/metrics.html
103103
metricsServerOptions := metricsserver.Options{
104104
BindAddress: metricsAddr,
@@ -116,7 +116,7 @@ func main() {
116116
// FilterProvider is used to protect the metrics endpoint with authn/authz.
117117
// These configurations ensure that only authorized users and service accounts
118118
// can access the metrics endpoint. The RBAC are configured in 'config/rbac/kustomization.yaml'. More info:
119-
// https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/metrics/filters#WithAuthenticationAndAuthorization
119+
// https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/metrics/filters#WithAuthenticationAndAuthorization
120120
metricsServerOptions.FilterProvider = filters.WithAuthenticationAndAuthorization
121121
}
122122

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
k8s.io/api v0.31.0
99
k8s.io/apimachinery v0.31.0
1010
k8s.io/client-go v0.31.0
11-
sigs.k8s.io/controller-runtime v0.19.0
11+
sigs.k8s.io/controller-runtime v0.19.1
1212
)
1313

1414
require (

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 h1:pUdcCO1Lk/tbT5ztQWOBi5HBgbBP1
241241
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
242242
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 h1:2770sDpzrjjsAtVhSeUFseziht227YAWYHLGNM8QPwY=
243243
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3/go.mod h1:Ve9uj1L+deCXFrPOk1LpFXqTg7LCFzFso6PA48q/XZw=
244-
sigs.k8s.io/controller-runtime v0.19.0 h1:nWVM7aq+Il2ABxwiCizrVDSlmDcshi9llbaFbC0ji/Q=
245-
sigs.k8s.io/controller-runtime v0.19.0/go.mod h1:iRmWllt8IlaLjvTTDLhRBXIEtkCK6hwVBJJsYS9Ajf4=
244+
sigs.k8s.io/controller-runtime v0.19.1 h1:Son+Q40+Be3QWb+niBXAg2vFiYWolDjjRfO8hn/cxOk=
245+
sigs.k8s.io/controller-runtime v0.19.1/go.mod h1:iRmWllt8IlaLjvTTDLhRBXIEtkCK6hwVBJJsYS9Ajf4=
246246
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
247247
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
248248
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4=

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 := log.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
@@ -117,7 +117,7 @@ func main() {
117117

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

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.31.0
1010
k8s.io/apimachinery v0.31.0
1111
k8s.io/client-go v0.31.0
12-
sigs.k8s.io/controller-runtime v0.19.0
12+
sigs.k8s.io/controller-runtime v0.19.1
1313
)
1414

1515
require (

0 commit comments

Comments
 (0)