diff --git a/pkg/engine/validate/utils.go b/pkg/engine/validate/utils.go index c3b684d459..cd53eaa58d 100644 --- a/pkg/engine/validate/utils.go +++ b/pkg/engine/validate/utils.go @@ -42,7 +42,7 @@ func getSortedNestedAnchorResource(resources map[string]interface{}) *list.List fmt.Println("resources: ", resources) for k, v := range resources { fmt.Println("k: ", k, " v:", v) - if commonAnchors.IsConditionAnchor(k) || commonAnchors.IsExistenceAnchor(k) || commonAnchors.IsEqualityAnchor(k) || commonAnchors.IsNegationAnchor(k) || commonAnchors.IsGlobalAnchor(k) { + if commonAnchors.IsGlobalAnchor(k) { sortedResourceKeys.PushFront(k) continue }