We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6071d04 commit 798a754Copy full SHA for 798a754
internal/controller/marklogiccluster_controller.go
@@ -107,9 +107,9 @@ func markLogicClusterCreateUpdateDeletePredicate() predicate.Predicate {
107
return true // Reconcile if labels have changed
108
}
109
// If annotations and labels are the same, check if the spec has changed
110
- oldObj := e.ObjectOld.(*marklogicv1.MarklogicGroup)
+ oldObj := e.ObjectOld.(*marklogicv1.MarklogicCluster)
111
// Check if the spec has changed
112
- newObj := e.ObjectNew.(*marklogicv1.MarklogicGroup)
+ newObj := e.ObjectNew.(*marklogicv1.MarklogicCluster)
113
if !reflect.DeepEqual(oldObj.Spec, newObj.Spec) {
114
return true // Reconcile if spec has changed
115
0 commit comments