Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating tests and readme #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions compatibility/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,26 @@ This folder runs compatibility tests with a simple L7 config against different c
## Running tests

To run the tests use the `test.sh` script inside this folder. The script will create a single node Consul
cluster with a 2 teir app and execute a simple test for L7 routing.
cluster with a 2 tier app and execute a simple test for L7 routing.

Every Consul / Envoy combination is run against a fresh cluster and application, each iteration takes approximately 30s to run.

```
➜ ./test.sh
➜ ./test.sh
Testing Consul Envoy Compatibility

Consul Version | Envoy Version | Result
-------------- | ------------- | ------
1.8.0 | 1.14.2 | FAIL
1.8.0 | 1.13.2 | FAIL
1.8.0 | 1.13.1 | FAIL
1.8.0 | 1.14.2 | PASS
1.8.0 | 1.13.2 | PASS
1.8.0 | 1.13.1 | PASS
1.8.0 | 1.12.4 | PASS
1.8.0 | 1.12.3 | PASS
1.8.0 | 1.11.2 | PASS
1.8.0 | 1.10.0 | FAIL
1.7.2 | 1.14.2 | FAIL
1.7.2 | 1.13.2 | FAIL
1.7.2 | 1.13.1 | FAIL
1.7.2 | 1.14.2 | PASS
1.7.2 | 1.13.2 | PASS
1.7.2 | 1.13.1 | PASS
1.7.2 | 1.12.4 | PASS
1.7.2 | 1.12.3 | PASS
1.7.2 | 1.11.2 | PASS
Expand All @@ -41,4 +41,4 @@ To add more Consul / Envoy versions to the test matrix you can edit the followin
```
consul_version=("1.8.0" "1.7.2")
envoy_version=("1.14.2" "1.13.2" "1.13.1" "1.12.4" "1.12.3" "1.11.2" "1.10.0")
```
```
4 changes: 2 additions & 2 deletions compatibility/consul-docker/files/router.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ routes = [
{
match {
http {
query_param = [
header = [
{
name = "x-version"
exact = "1"
Expand Down Expand Up @@ -33,4 +33,4 @@ routes = [
service_subset = "v2"
}
}
]
]