@@ -4,6 +4,7 @@ set -euo pipefail
4
4
set -xv
5
5
6
6
# run all 5
7
+ printf " \n\n********************** run all 5 modes **************************\n\n"
7
8
go run ../cmd/cyclonus/main.go analyze \
8
9
--use-example-policies \
9
10
--mode explain,lint,query-target,query-traffic,probe \
@@ -12,29 +13,34 @@ go run ../cmd/cyclonus/main.go analyze \
12
13
--probe-path ./probe-example.json
13
14
14
15
# run just the explainer
16
+ printf " \n\n********************** run just the explainer **************************\n\n"
15
17
go run ../cmd/cyclonus/main.go analyze \
16
18
--mode explain \
17
19
--policy-path ../networkpolicies/simple-example/
18
20
19
21
# run just the targets
22
+ printf " \n\n********************** run just the targets **************************\n\n"
20
23
go run ../cmd/cyclonus/main.go analyze \
21
24
--mode query-target \
22
25
--policy-path ../networkpolicies/simple-example/ \
23
26
--target-pod-path ./targets.json
24
27
25
28
# run just the traffic
29
+ printf " \n\n********************** run just the traffic **************************\n\n"
26
30
go run ../cmd/cyclonus/main.go analyze \
27
31
--mode query-traffic \
28
32
--policy-path ../networkpolicies/simple-example/ \
29
33
--traffic-path ./traffic.json
30
34
31
35
# run just the probe
36
+ printf " \n\n********************** run just the probe **************************\n\n"
32
37
go run ../cmd/cyclonus/main.go analyze \
33
38
--mode probe \
34
39
--policy-path ../networkpolicies/simple-example/ \
35
40
--probe-path ./probe.json
36
41
37
42
# run just the linter
43
+ printf " \n\n********************** run just the linter **************************\n\n"
38
44
go run ../cmd/cyclonus/main.go analyze \
39
45
--mode lint \
40
- --policy-path ../networkpolicies/simple-example
46
+ --policy-path ../networkpolicies/simple-example
0 commit comments