Skip to content

Commit 6846fb5

Browse files
committed
walkthrough doc: reorganize flow
1 parent 589e72e commit 6846fb5

File tree

1 file changed

+31
-29
lines changed

1 file changed

+31
-29
lines changed

docs/walkthrough.md

+31-29
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,39 @@ Example of subtle/confusing policies:
1717

1818
# Cyclonus secret sauce
1919

20-
Visualization of a network policy's meaning: [truth tables](./test-runs.md)
20+
Visualization of a network policy's meaning: [connectivity truth tables](https://kubernetes.io/blog/2021/04/20/defining-networkpolicy-conformance-cni-providers/#the-first-step-a-validation-framework-for-networkpolicies-that-was-intuitive-to-use-and-understand)
2121

2222
Network policy engine: executable network policy specification
2323

24+
25+
# Using Cyclonus
26+
27+
[CLI usage](../README.md#cli-usage)
28+
29+
Examples:
30+
- [`cyclonus analyze`](../examples/run.sh)
31+
- `cyclonus probe`:
32+
33+
```bash
34+
go run cmd/cyclonus/main.go probe \
35+
--server-protocol=tcp \
36+
--server-port=80
37+
```
38+
39+
- `cyclonus generate` -- see [Understanding Cyclonus test runs](./test-runs.md):
40+
41+
```bash
42+
go run cmd/cyclonus/main.go generate \
43+
--include conflict \
44+
--job-timeout-seconds 2 \
45+
--ignore-loopback=true \
46+
--server-protocol=tcp \
47+
--server-port=80 \
48+
--mock \
49+
--perturbation-wait-seconds=0
50+
```
51+
52+
2453
# Code walkthrough
2554

2655
## Network policy engine
@@ -114,34 +143,7 @@ Key types:
114143
- TruthTable
115144

116145

117-
# Using Cyclonus
118-
119-
[CLI usage](../README.md#cli-usage)
120-
121-
Examples:
122-
- [`cyclonus analyze`](../examples/run.sh)
123-
- `cyclonus probe`:
124-
125-
```bash
126-
go run cmd/cyclonus/main.go probe \
127-
--server-protocol=tcp \
128-
--server-port=80
129-
```
130-
131-
- `cyclonus generate`:
132-
133-
```bash
134-
go run cmd/cyclonus/main.go generate \
135-
--include conflict \
136-
--job-timeout-seconds 2 \
137-
--ignore-loopback=true \
138-
--server-protocol=tcp \
139-
--server-port=80 \
140-
--mock \
141-
--perturbation-wait-seconds=0
142-
```
143-
144-
# Next steps
146+
# Future of Cyclonus
145147

146148
Work with community to build out Cyclonus functionality and evolve in tandem with kubernetes network policy:
147149
https://github.com/kubernetes-sigs/network-policy-api/tree/master/cmd/cyclonus .

0 commit comments

Comments
 (0)