Skip to content

Commit 9594640

Browse files
committed
improve readability of example output
1 parent a135d68 commit 9594640

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

examples/run.sh

+7-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set -euo pipefail
44
set -xv
55

66
# run all 5
7+
printf "\n\n********************** run all 5 modes **************************\n\n"
78
go run ../cmd/cyclonus/main.go analyze \
89
--use-example-policies \
910
--mode explain,lint,query-target,query-traffic,probe \
@@ -12,29 +13,34 @@ go run ../cmd/cyclonus/main.go analyze \
1213
--probe-path ./probe-example.json
1314

1415
# run just the explainer
16+
printf "\n\n********************** run just the explainer **************************\n\n"
1517
go run ../cmd/cyclonus/main.go analyze \
1618
--mode explain \
1719
--policy-path ../networkpolicies/simple-example/
1820

1921
# run just the targets
22+
printf "\n\n********************** run just the targets **************************\n\n"
2023
go run ../cmd/cyclonus/main.go analyze \
2124
--mode query-target \
2225
--policy-path ../networkpolicies/simple-example/ \
2326
--target-pod-path ./targets.json
2427

2528
# run just the traffic
29+
printf "\n\n********************** run just the traffic **************************\n\n"
2630
go run ../cmd/cyclonus/main.go analyze \
2731
--mode query-traffic \
2832
--policy-path ../networkpolicies/simple-example/ \
2933
--traffic-path ./traffic.json
3034

3135
# run just the probe
36+
printf "\n\n********************** run just the probe **************************\n\n"
3237
go run ../cmd/cyclonus/main.go analyze \
3338
--mode probe \
3439
--policy-path ../networkpolicies/simple-example/ \
3540
--probe-path ./probe.json
3641

3742
# run just the linter
43+
printf "\n\n********************** run just the linter **************************\n\n"
3844
go run ../cmd/cyclonus/main.go analyze \
3945
--mode lint \
40-
--policy-path ../networkpolicies/simple-example
46+
--policy-path ../networkpolicies/simple-example

0 commit comments

Comments
 (0)