You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- set up a KinD cluster with a CNI that supports network policies
131
-
132
-
pushd kind/calico
133
-
./setup.sh
134
-
popd
135
-
136
-
- run cyclonus
137
-
138
-
go run cmd/cyclonus/main.go generate --mode=example
139
-
140
-
- run format, vet, tests
141
-
142
-
make fmt
143
-
make vet
144
-
make test
145
-
146
-
## How to Release Binaries
147
-
148
-
See `goreleaser`'s requirements [here](https://goreleaser.com/environment/).
149
-
150
-
Get a [GitHub Personal Access Token](https://github.com/settings/tokens/new) and add the `repo` scope.
151
-
Set `GITHUB_TOKEN` to this value:
152
-
153
-
```bash
154
-
export GITHUB_TOKEN=...
155
-
```
156
-
157
-
[See here for more information on github tokens](https://help.github.com/articles/creating-an-access-token-for-command-line-use/).
158
-
159
-
Choose a tag/release name, create and push a tag:
160
-
161
-
```bash
162
-
TAG=v0.0.1
163
-
164
-
git tag $TAG
165
-
git push origin $TAG
166
-
```
29
+
- use cyclonus as a kubectl plugin: `kubectl cyclonus -h`
167
30
168
-
Cut a release:
31
+
Antrea testing: [Cyclonus runs network policy tests for Antrea on a daily basis](https://github.com/vmware-tanzu/antrea/actions/workflows/netpol_cyclonus.yml).
169
32
170
-
```bash
171
-
goreleaser release --rm-dist
172
-
```
33
+
Cilium testing: [Cyclonus runs network policy tests for Cilium on a daily basis](https://github.com/cilium/cilium/pull/14889).
173
34
174
-
Make a test release:
35
+
Sonobuoy plugin: [run Cyclonus tests through Sonobuoy](./hack/sonobuoy)!
175
36
176
-
```bash
177
-
goreleaser release --snapshot --rm-dist
178
-
```
179
37
180
38
## Motivation and History
181
39
182
-
Testing network policies for CNI providers on Kubernetes has historically been very difficult, requiring a lot of boiler plate. This was recently improved upstream via truth table based tests ([see KEP](https://github.com/kubernetes/enhancements/tree/master/keps/sig-network/1611-network-policy-validation)). Cyclonus is the next evolution of the truth table tests which are part of upstream Kubernetes. Cyclonus generates hundreds of network policies, their connectivity tables, and outputs results in the same, easy to read format.
40
+
Testing network policies for CNI providers on Kubernetes has historically been very difficult, requiring a lot of boiler plate.
41
+
This was recently improved upstream via truth table based tests
0 commit comments