-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update e2e tests with netpol tests, and fix minor issues * fix lint * turn tuning parameters into constants * add changelog * fix first version name
- Loading branch information
Showing
10 changed files
with
162 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,34 @@ | ||
## Version (0.0.0) | ||
### Releshed/Unreleased | ||
### Date | ||
# Changelog | ||
|
||
Changes: | ||
- List of changes | ||
All notable changes to this project will be documented in this file. | ||
|
||
Improvements: | ||
- List of improvements | ||
## Table of Contents | ||
|
||
Bug Fixes: | ||
- NA | ||
- [2.0.2](#202) | ||
- [2.0.1](#201) | ||
- [2.0.0](#200) | ||
- [0.1.0](#010) | ||
|
||
--- | ||
--- | ||
|
||
## `2.0.2` | ||
|
||
- integrate e2e tests with network policies | ||
- fix a bug in udp testing | ||
|
||
## `2.0.1` | ||
|
||
- fix release naming | ||
|
||
## `2.0.0` | ||
|
||
- complete rewrite of the tool in Go, with unit and integration tests | ||
- leverages the ephemeral container support in Kubernetes > v1.25 | ||
- test case(s) are written in YAML | ||
- support for Pods, StatefulSets, DaemonSets and Deployments which are directly referred through their names in the test suites | ||
- artifacts are available for download | ||
|
||
## `0.1.0` | ||
|
||
- initial release | ||
- no artifacts available |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
--- | ||
kind: NetworkPolicy | ||
apiVersion: networking.k8s.io/v1 | ||
metadata: | ||
namespace: fluentd | ||
name: fluentd-elasticsearch | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
name: fluentd-elasticsearch | ||
ingress: | ||
--- | ||
kind: NetworkPolicy | ||
apiVersion: networking.k8s.io/v1 | ||
metadata: | ||
namespace: echoserver | ||
name: echoserver | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
app: echoserver | ||
ingress: | ||
--- | ||
kind: NetworkPolicy | ||
apiVersion: networking.k8s.io/v1 | ||
metadata: | ||
namespace: busybox | ||
name: busybox | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
app: busybox | ||
policyTypes: | ||
- Ingress | ||
- Egress | ||
ingress: | ||
egress: | ||
--- | ||
kind: NetworkPolicy | ||
apiVersion: networking.k8s.io/v1 | ||
metadata: | ||
namespace: pod1 | ||
name: pod1 | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
name: pod1 | ||
ingress: | ||
--- | ||
kind: NetworkPolicy | ||
apiVersion: networking.k8s.io/v1 | ||
metadata: | ||
namespace: pod2 | ||
name: pod2 | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
name: pod2 | ||
ingress: | ||
--- | ||
kind: NetworkPolicy | ||
apiVersion: networking.k8s.io/v1 | ||
metadata: | ||
namespace: web | ||
name: nginx | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
app: nginx | ||
ingress: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters