Skip to content

Commit ecfd100

Browse files
committed
add ability to parse network policy list from file
1 parent 36ea6ce commit ecfd100

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

pkg/cli/utils.go

+17-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
package cli
22

33
import (
4+
"os"
5+
"path/filepath"
6+
7+
"github.com/mattfenwick/collections/pkg/builtin"
8+
"github.com/mattfenwick/collections/pkg/slice"
49
"github.com/mattfenwick/cyclonus/pkg/kube"
510
"github.com/mattfenwick/cyclonus/pkg/utils"
611
"github.com/pkg/errors"
712
log "github.com/sirupsen/logrus"
813
networkingv1 "k8s.io/api/networking/v1"
9-
"os"
10-
"path/filepath"
1114
)
1215

1316
func readPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPolicy, error) {
@@ -26,15 +29,25 @@ func readPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPolicy, err
2629
return err
2730
}
2831

29-
// try parsing a list first
32+
// try parsing multiple policies separated by '---' lines
3033
policies, err := utils.ParseYaml[[]*networkingv1.NetworkPolicy](bytes)
3134
if err == nil {
3235
log.Debugf("parsed %d policies from %s", len(*policies), path)
3336
allPolicies = append(allPolicies, *policies...)
3437
return nil
3538
}
3639

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+
3851
policy, err := utils.ParseYamlStrict[networkingv1.NetworkPolicy](bytes)
3952
if err != nil {
4053
return errors.WithMessagef(err, "unable to parse single policy from yaml at %s", path)

pkg/matcher/simplifier_tests.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ func RunSimplifierTests() {
123123
}
124124
port99OnUdp := &PortProtocolMatcher{
125125
Port: &port99,
126-
Protocol: v1.ProtocolSCTP, // TODO should this be udp?
126+
Protocol: v1.ProtocolUDP,
127127
}
128128

129129
allMatcher := &AllPortMatcher{}

0 commit comments

Comments
 (0)