mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
parent
14697f9d06
commit
e841a1b204
2 changed files with 3 additions and 2 deletions
|
@ -241,7 +241,7 @@ func (nsc *NamespaceController) syncNamespace(key string) error {
|
|||
|
||||
// skip processing namespace if its been filtered
|
||||
// exclude the filtered resources
|
||||
if nsc.configHandler.ToFilter("Namespace", "", namespace.Name) {
|
||||
if nsc.configHandler.ToFilter("", namespace.Name, "") {
|
||||
//TODO: improve the text
|
||||
glog.V(4).Infof("excluding namespace %s as its a filtered resource", namespace.Name)
|
||||
return nil
|
||||
|
|
|
@ -221,7 +221,8 @@ func Test_Operations(t *testing.T) {
|
|||
if err != nil {
|
||||
t.Error(err)
|
||||
}
|
||||
if !reflect.DeepEqual(retPolicies, []kyverno.ClusterPolicy{policy1, policy2}) {
|
||||
if len(retPolicies) != len([]kyverno.ClusterPolicy{policy1, policy2}) {
|
||||
// checking length as the order of polcies might be different
|
||||
t.Error("not matching")
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue