1
1
package cli
2
2
3
3
import (
4
+ "os"
5
+ "path/filepath"
6
+
7
+ "github.com/mattfenwick/collections/pkg/builtin"
8
+ "github.com/mattfenwick/collections/pkg/slice"
4
9
"github.com/mattfenwick/cyclonus/pkg/kube"
5
10
"github.com/mattfenwick/cyclonus/pkg/utils"
6
11
"github.com/pkg/errors"
7
12
log "github.com/sirupsen/logrus"
8
13
networkingv1 "k8s.io/api/networking/v1"
9
- "os"
10
- "path/filepath"
11
14
)
12
15
13
16
func readPoliciesFromPath (policyPath string ) ([]* networkingv1.NetworkPolicy , error ) {
@@ -26,15 +29,25 @@ func readPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPolicy, err
26
29
return err
27
30
}
28
31
29
- // try parsing a list first
32
+ // try parsing multiple policies separated by '---' lines
30
33
policies , err := utils.ParseYaml [[]* networkingv1.NetworkPolicy ](bytes )
31
34
if err == nil {
32
35
log .Debugf ("parsed %d policies from %s" , len (* policies ), path )
33
36
allPolicies = append (allPolicies , * policies ... )
34
37
return nil
35
38
}
36
39
37
- log .Debugf ("failed to parse list from %s, falling back to parsing single policy" , path )
40
+ log .Debugf ("unable to parse multiple policies separated by '---' lines: %+v" , err )
41
+
42
+ // try parsing a list
43
+ policyList , err := utils.ParseYamlStrict [networkingv1.NetworkPolicyList ](bytes )
44
+ if err == nil {
45
+ allPolicies = append (allPolicies , slice .Map (builtin .Reference [networkingv1 .NetworkPolicy ], policyList .Items )... )
46
+ return nil
47
+ }
48
+
49
+ log .Debugf ("unable to parse list of policies: %+v" , err )
50
+
38
51
policy , err := utils.ParseYamlStrict [networkingv1.NetworkPolicy ](bytes )
39
52
if err != nil {
40
53
return errors .WithMessagef (err , "unable to parse single policy from yaml at %s" , path )
0 commit comments