Skip to content

Commit 9e43767

Browse files
committed
add helpful console output, fix comments
1 parent fb9e8ad commit 9e43767

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

pkg/cli/analyze.go

+6
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,13 @@ func RunAnalyzeCommand(args *AnalyzeArgs) {
123123
for _, mode := range args.Modes {
124124
switch mode {
125125
case ParseMode:
126+
fmt.Println("parsed policies:")
126127
ParsePolicies(kubePolicies)
127128
case ExplainMode:
129+
fmt.Println("explained policies:")
128130
ExplainPolicies(policies)
129131
case LintMode:
132+
fmt.Println("policy lint:")
130133
Lint(kubePolicies)
131134
case QueryTargetMode:
132135
pods := make([]*QueryTargetPod, len(kubePods))
@@ -136,10 +139,13 @@ func RunAnalyzeCommand(args *AnalyzeArgs) {
136139
Labels: p.Labels,
137140
}
138141
}
142+
fmt.Println("query target:")
139143
QueryTargets(policies, args.TargetPodPath, pods)
140144
case QueryTrafficMode:
145+
fmt.Println("query traffic:")
141146
QueryTraffic(policies, args.TrafficPath)
142147
case ProbeMode:
148+
fmt.Println("probe:")
143149
ProbeSyntheticConnectivity(policies, args.ProbePath, kubePods, kubeNamespaces)
144150
default:
145151
panic(errors.Errorf("unrecognized mode %s", mode))

pkg/generator/action.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package generator
22

33
import networkingv1 "k8s.io/api/networking/v1"
44

5-
// Action: exactly one field must be non-null. This models a discriminated union (sum type).
5+
// Action models a sum type (discriminated union): exactly one field must be non-null.
66
type Action struct {
77
CreatePolicy *CreatePolicyAction
88
UpdatePolicy *UpdatePolicyAction

pkg/matcher/policy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99
)
1010

11-
// This is the root type
11+
// Policy is the root type
1212
type Policy struct {
1313
Ingress map[string]*Target
1414
Egress map[string]*Target

pkg/matcher/target.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func (t *Target) Allows(peer *TrafficPeer, portInt int, portName string, protoco
3535
return false
3636
}
3737

38-
// CombinePeerMatchers creates a new Target combining the egress and ingress rules
38+
// Combine creates a new Target combining the egress and ingress rules
3939
// of the two original targets. Neither input is modified.
4040
// The Primary Keys of the two targets must match.
4141
func (t *Target) Combine(other *Target) *Target {
@@ -53,7 +53,7 @@ func (t *Target) Combine(other *Target) *Target {
5353
}
5454
}
5555

56-
// The primary key is a deterministic combination of PodSelector and namespace
56+
// GetPrimaryKey returns a deterministic combination of PodSelector and namespace
5757
func (t *Target) GetPrimaryKey() string {
5858
if t.primaryKey == "" {
5959
t.primaryKey = fmt.Sprintf(`{"Namespace": "%s", "PodSelector": %s}`, t.Namespace, kube.SerializeLabelSelector(t.PodSelector))

0 commit comments

Comments
 (0)