Skip to content

Commit 834a1ae

Browse files
committed
chore(ci): add ingress-nginx 1.13.3 and 1.12.7
1 parent bfee5ed commit 834a1ae

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

.circleci/config.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -411,8 +411,8 @@ workflows:
411411
- amd64
412412
- arm64
413413
version:
414-
- 1.12.6
415-
- 1.13.2
414+
- 1.12.7
415+
- 1.13.3
416416
name: build ingress-nginx-<< matrix.version >> on << matrix.arch >>
417417
- coverage:
418418
name: Coverage on 1.27.0 with WAF ON
@@ -491,8 +491,8 @@ workflows:
491491
base-image:
492492
- registry.k8s.io/ingress-nginx/controller
493493
nginx-version:
494-
- 1.13.2
495-
- 1.12.6
494+
- 1.13.3
495+
- 1.12.7
496496
name: test ingress-nginx-<< matrix.nginx-version >> on << matrix.arch >>
497497
requires:
498498
- build ingress-nginx-<< matrix.nginx-version >> on << matrix.arch >>
@@ -518,9 +518,11 @@ workflows:
518518
- amd64
519519
- arm64
520520
version:
521+
- 1.13.3
521522
- 1.13.2
522523
- 1.13.1
523524
- 1.13.0
525+
- 1.12.7
524526
- 1.12.6
525527
- 1.12.5
526528
- 1.12.4

.circleci/src/workflows/build-and-test-all.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414
- 'amd64'
1515
- 'arm64'
1616
version:
17+
- 1.13.3
1718
- 1.13.2
1819
- 1.13.1
1920
- 1.13.0
21+
- 1.12.7
2022
- 1.12.6
2123
- 1.12.5
2224
- 1.12.4

.circleci/src/workflows/build-and-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
- 'amd64'
4848
- 'arm64'
4949
version:
50-
- 1.12.6
51-
- 1.13.2
50+
- 1.12.7
51+
- 1.13.3
5252
- coverage:
5353
name: Coverage on 1.27.0 with WAF ON
5454
- test:
@@ -133,8 +133,8 @@ jobs:
133133
base-image:
134134
- registry.k8s.io/ingress-nginx/controller
135135
nginx-version:
136-
- 1.13.2
137-
- 1.12.6
136+
- 1.13.3
137+
- 1.12.7
138138
- system_tests:
139139
name: Run system tests
140140
requires:

bin/ingress_nginx.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@
3434
def get_underlying_nginx_version(controller_version: str) -> str:
3535
# Map an ingress-nginx version to an NGINX version
3636
mapping = {
37+
"v1.13.3": "1.27.1",
3738
"v1.13.2": "1.27.1",
3839
"v1.13.1": "1.27.1",
3940
"v1.13.0": "1.27.1",
41+
"v1.12.7": "1.25.5",
4042
"v1.12.6": "1.25.5",
4143
"v1.12.5": "1.25.5",
4244
"v1.12.4": "1.25.5",
@@ -89,9 +91,11 @@ def clone_nginx(version: str, out_dir: str) -> str:
8991

9092
def get_patch_directory(version: str, ingress_rootdir: str) -> str:
9193
mapping = {
94+
"v1.13.3": f"{ingress_rootdir}/images/nginx/rootfs/patches",
9295
"v1.13.2": f"{ingress_rootdir}/images/nginx/rootfs/patches",
9396
"v1.13.1": f"{ingress_rootdir}/images/nginx/rootfs/patches",
9497
"v1.13.0": f"{ingress_rootdir}/images/nginx/rootfs/patches",
98+
"v1.12.7": f"{ingress_rootdir}/images/nginx/rootfs/patches",
9599
"v1.12.6": f"{ingress_rootdir}/images/nginx/rootfs/patches",
96100
"v1.12.5": f"{ingress_rootdir}/images/nginx/rootfs/patches",
97101
"v1.12.4": f"{ingress_rootdir}/images/nginx/rootfs/patches",

0 commit comments

Comments
 (0)