1
- package cli
1
+ package kube
2
2
3
3
import (
4
4
"os"
5
5
"path/filepath"
6
6
7
7
"github.com/mattfenwick/collections/pkg/builtin"
8
8
"github.com/mattfenwick/collections/pkg/slice"
9
- "github.com/mattfenwick/cyclonus/pkg/kube"
10
9
"github.com/mattfenwick/cyclonus/pkg/utils"
11
10
"github.com/pkg/errors"
12
11
log "github.com/sirupsen/logrus"
13
12
networkingv1 "k8s.io/api/networking/v1"
14
13
)
15
14
16
- func readPoliciesFromPath (policyPath string ) ([]* networkingv1.NetworkPolicy , error ) {
15
+ func ReadNetworkPoliciesFromPath (policyPath string ) ([]* networkingv1.NetworkPolicy , error ) {
17
16
var allPolicies []* networkingv1.NetworkPolicy
18
17
err := filepath .Walk (policyPath , func (path string , info os.FileInfo , err error ) error {
19
18
if err != nil {
@@ -42,7 +41,7 @@ func readPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPolicy, err
42
41
// try parsing a list
43
42
policyList , err := utils.ParseYamlStrict [networkingv1.NetworkPolicyList ](bytes )
44
43
if err == nil {
45
- allPolicies = append (allPolicies , slice . Map ( builtin . Reference [ networkingv1 . NetworkPolicy ], policyList .Items )... )
44
+ allPolicies = append (allPolicies , refNetpolList ( policyList .Items )... )
46
45
return nil
47
46
}
48
47
@@ -69,18 +68,14 @@ func readPoliciesFromPath(policyPath string) ([]*networkingv1.NetworkPolicy, err
69
68
return allPolicies , nil
70
69
}
71
70
72
- func readPoliciesFromKube (kubeClient * kube. Kubernetes , namespaces []string ) ([]* networkingv1.NetworkPolicy , error ) {
73
- netpols , err := kube . GetNetworkPoliciesInNamespaces (kubeClient , namespaces )
71
+ func ReadNetworkPoliciesFromKube (kubeClient * Kubernetes , namespaces []string ) ([]* networkingv1.NetworkPolicy , error ) {
72
+ netpols , err := GetNetworkPoliciesInNamespaces (kubeClient , namespaces )
74
73
if err != nil {
75
74
return nil , err
76
75
}
77
76
return refNetpolList (netpols ), nil
78
77
}
79
78
80
79
func refNetpolList (refs []networkingv1.NetworkPolicy ) []* networkingv1.NetworkPolicy {
81
- policies := make ([]* networkingv1.NetworkPolicy , len (refs ))
82
- for i := 0 ; i < len (refs ); i ++ {
83
- policies [i ] = & refs [i ]
84
- }
85
- return policies
80
+ return slice .Map (builtin .Reference [networkingv1 .NetworkPolicy ], refs )
86
81
}
0 commit comments