File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ import (
21
21
"fmt"
22
22
"slices"
23
23
24
+ "sigs.k8s.io/controller-runtime/pkg/builder"
25
+ "sigs.k8s.io/controller-runtime/pkg/predicate"
26
+
24
27
appsv1 "k8s.io/api/apps/v1"
25
28
corev1 "k8s.io/api/core/v1"
26
29
"k8s.io/apimachinery/pkg/api/errors"
@@ -437,7 +440,7 @@ func (r *EtcdClusterReconciler) updateClusterState(cluster *etcdaenixiov1alpha1.
437
440
// SetupWithManager sets up the controller with the Manager.
438
441
func (r * EtcdClusterReconciler ) SetupWithManager (mgr ctrl.Manager ) error {
439
442
return ctrl .NewControllerManagedBy (mgr ).
440
- For (& etcdaenixiov1alpha1.EtcdCluster {}).
443
+ For (& etcdaenixiov1alpha1.EtcdCluster {}, builder . WithPredicates (predicate. GenerationChangedPredicate {}) ).
441
444
Owns (& appsv1.StatefulSet {}).
442
445
Owns (& corev1.ConfigMap {}).
443
446
Owns (& corev1.Service {}).
You can’t perform that action at this time.
0 commit comments