Skip to content

Commit c8be469

Browse files
(go/v3,go/v4-alpha): Upgrade controller-runtime version from 1.13.0 to 1.13.1
1 parent 1f099ea commit c8be469

Some content is hidden

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

54 files changed

+54
-54
lines changed

pkg/plugins/golang/v3/scaffolds/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434

3535
const (
3636
// ControllerRuntimeVersion is the kubernetes-sigs/controller-runtime version to be used in the project
37-
ControllerRuntimeVersion = "v0.13.0"
37+
ControllerRuntimeVersion = "v0.13.1"
3838
// ControllerToolsVersion is the kubernetes-sigs/controller-tools version to be used in the project
3939
ControllerToolsVersion = "v0.10.0"
4040

pkg/plugins/golang/v4/scaffolds/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434

3535
const (
3636
// ControllerRuntimeVersion is the kubernetes-sigs/controller-runtime version to be used in the project
37-
ControllerRuntimeVersion = "v0.13.0"
37+
ControllerRuntimeVersion = "v0.13.1"
3838
// ControllerToolsVersion is the kubernetes-sigs/controller-tools version to be used in the project
3939
ControllerToolsVersion = "v0.10.0"
4040

testdata/project-v3-addon-and-grafana/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/onsi/gomega v1.19.0
99
k8s.io/apimachinery v0.25.0
1010
k8s.io/client-go v0.25.0
11-
sigs.k8s.io/controller-runtime v0.13.0
11+
sigs.k8s.io/controller-runtime v0.13.1
1212
sigs.k8s.io/kubebuilder-declarative-pattern v0.11.20220513-0.20220907223038-e0605f0e1a40
1313
)
1414

testdata/project-v3-config/controllers/admiral_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type AdmiralReconciler struct {
4545
// the user.
4646
//
4747
// For more details, check Reconcile and its Result here:
48-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/reconcile
48+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/reconcile
4949
func (r *AdmiralReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
5050
_ = log.FromContext(ctx)
5151

testdata/project-v3-config/controllers/captain_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type CaptainReconciler struct {
4545
// the user.
4646
//
4747
// For more details, check Reconcile and its Result here:
48-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/reconcile
48+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/reconcile
4949
func (r *CaptainReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
5050
_ = log.FromContext(ctx)
5151

testdata/project-v3-config/controllers/firstmate_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type FirstMateReconciler struct {
4545
// the user.
4646
//
4747
// For more details, check Reconcile and its Result here:
48-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/reconcile
48+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/reconcile
4949
func (r *FirstMateReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
5050
_ = log.FromContext(ctx)
5151

testdata/project-v3-config/controllers/laker_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type LakerReconciler struct {
4343
// the user.
4444
//
4545
// For more details, check Reconcile and its Result here:
46-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/reconcile
46+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/reconcile
4747
func (r *LakerReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
4848
_ = log.FromContext(ctx)
4949

testdata/project-v3-config/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.25.0
99
k8s.io/apimachinery v0.25.0
1010
k8s.io/client-go v0.25.0
11-
sigs.k8s.io/controller-runtime v0.13.0
11+
sigs.k8s.io/controller-runtime v0.13.1
1212
)
1313

1414
require (

testdata/project-v3-multigroup/controllers/apps/deployment_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type DeploymentReconciler struct {
4444
// the user.
4545
//
4646
// For more details, check Reconcile and its Result here:
47-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/reconcile
47+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/reconcile
4848
func (r *DeploymentReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
4949
_ = log.FromContext(ctx)
5050

testdata/project-v3-multigroup/controllers/crew/captain_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type CaptainReconciler struct {
4545
// the user.
4646
//
4747
// For more details, check Reconcile and its Result here:
48-
// - https://pkg.go.dev/sigs.k8s.io/[email protected].0/pkg/reconcile
48+
// - https://pkg.go.dev/sigs.k8s.io/[email protected].1/pkg/reconcile
4949
func (r *CaptainReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
5050
_ = log.FromContext(ctx)
5151

0 commit comments

Comments
 (0)