File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
10
### Changed
11
11
12
12
- Change ` renovate ` configuration to only get upgrades for CAPA compatible versions of k8s dependencies.
13
+ - Don't reconcile the ` ShareReconciler ` if only the status field has changed.
13
14
14
15
## [ 0.19.0] - 2025-06-17
15
16
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import (
14
14
"sigs.k8s.io/controller-runtime/pkg/client"
15
15
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
16
16
"sigs.k8s.io/controller-runtime/pkg/log"
17
+ "sigs.k8s.io/controller-runtime/pkg/predicate"
17
18
18
19
"github.com/aws-resolver-rules-operator/pkg/resolver"
19
20
"github.com/aws-resolver-rules-operator/pkg/util/annotations"
@@ -46,6 +47,11 @@ func (r *ShareReconciler) SetupWithManager(mgr ctrl.Manager) error {
46
47
return ctrl .NewControllerManagedBy (mgr ).
47
48
Named ("share-reconciler" ).
48
49
For (& capa.AWSCluster {}).
50
+ WithEventFilter (
51
+ predicate.Funcs {
52
+ UpdateFunc : predicateToFilterAWSClusterResourceVersionChanges ,
53
+ },
54
+ ).
49
55
Complete (r )
50
56
}
51
57
You can’t perform that action at this time.
0 commit comments