Skip to content

Commit 9271c88

Browse files
committed
TEST/MEDIUM: haproxy: add haproxy 2.7 to tests and set as default
1 parent 411d77a commit 9271c88

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: HAProxy
99
strategy:
1010
matrix:
11-
haproxy_version: ["2.1", "2.2", "2.3"]
11+
haproxy_version: ["2.1", "2.2", "2.3", "2.4", "2.5", "2.6", "2.7"]
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out code into the Go module directory

.gitlab-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,9 @@ HAProxy_2_6:
135135
matrix:
136136
- TESTPART: [ "1/2", "2/2" ]
137137
HAPROXY_VERSION: "2.6"
138+
HAProxy_2_7:
139+
extends: .e2e
140+
parallel:
141+
matrix:
142+
- TESTPART: [ "1/2", "2/2" ]
143+
HAPROXY_VERSION: "2.7"

e2e/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ $ E2E_PORT=8081 make e2e
6262

6363
#### HAProxy version
6464

65-
By default, test suite is running against HAProxy 2.6 release: this can be
65+
By default, test suite is running against HAProxy 2.7 release: this can be
6666
configured using the environment variable `HAPROXY_VERSION`.
6767

6868
```bash

e2e/run.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set -eo pipefail
1818

1919
export BASE_PATH="/v2"
2020

21-
HAPROXY_VERSION=${HAPROXY_VERSION:-2.6}
21+
HAPROXY_VERSION=${HAPROXY_VERSION:-2.7}
2222
DOCKER_BASE_IMAGE="${DOCKER_BASE_IMAGE:-haproxytech/haproxy-alpine}:${HAPROXY_VERSION}"
2323
DOCKER_CONTAINER_NAME="dataplaneapi-e2e"
2424
export DOCKER_CONTAINER_NAME

0 commit comments

Comments
 (0)