You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #542 from rabbitmq/controller-runtime-0.7
Bump controller-runtime to 0.7 and k8s.io dependencies to v.0.19.2
* Update leader election role to have permission for leases.coordination.k8s.io instead of ConfigMap. Related controller runtime change: kubernetes-sigs/controller-runtime#1144
* Use client.Object instead of runtime.Object in controller runtime helper methods. A number of controller runtime methods that previously took runtime.Object & internally type-asserted them to metav1.Object now take client.Object and client.ObjectList. Related controller runtime change: kubernetes-sigs/controller-runtime#1195
* Update how envTest starts the test manager since Manager.Start() now takes context instead of a channel
Copy file name to clipboardExpand all lines: controllers/reconcile_rabbitmq_configurations.go
+1-2
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,6 @@ import (
10
10
appsv1 "k8s.io/api/apps/v1"
11
11
corev1 "k8s.io/api/core/v1"
12
12
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
13
-
"k8s.io/apimachinery/pkg/runtime"
14
13
"k8s.io/apimachinery/pkg/types"
15
14
clientretry "k8s.io/client-go/util/retry"
16
15
"sigs.k8s.io/controller-runtime/pkg/client"
@@ -28,7 +27,7 @@ const (
28
27
// These annotations are temporary markers used in later reconcile loops to perform some action (such as restarting the StatefulSet or executing RabbitMQ CLI commands)
0 commit comments