Skip to content

Commit 454439a

Browse files
authored
Merge branch 'main' into handle_path_types
2 parents 77643ce + 29513e8 commit 454439a

File tree

64 files changed

+220
-1272
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+220
-1272
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
| gzip > docker.tar.gz
203203
204204
- name: cache
205-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
205+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
206206
with:
207207
name: docker.tar.gz
208208
path: docker.tar.gz
@@ -270,7 +270,7 @@ jobs:
270270

271271
strategy:
272272
matrix:
273-
k8s: [v1.28.15, v1.29.10, v1.30.6, v1.31.2]
273+
k8s: [v1.28.15, v1.29.12, v1.30.8, v1.31.4, v1.32.0]
274274

275275
steps:
276276
- name: Checkout code
@@ -301,7 +301,7 @@ jobs:
301301
(needs.changes.outputs.go == 'true') || (needs.changes.outputs.baseimage == 'true') || ${{ github.event.workflow_dispatch.run_e2e == 'true' }}
302302
strategy:
303303
matrix:
304-
k8s: [v1.28.15, v1.29.10, v1.30.6, v1.31.2]
304+
k8s: [v1.28.15, v1.29.12, v1.30.8, v1.31.4, v1.32.0]
305305
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
306306
with:
307307
k8s-version: ${{ matrix.k8s }}
@@ -315,7 +315,7 @@ jobs:
315315
(needs.changes.outputs.go == 'true') || (needs.changes.outputs.baseimage == 'true') || ${{ github.event.workflow_dispatch.run_e2e == 'true' }}
316316
strategy:
317317
matrix:
318-
k8s: [v1.28.15, v1.29.10, v1.30.6, v1.31.2]
318+
k8s: [v1.28.15, v1.29.12, v1.30.8, v1.31.4, v1.32.0]
319319
uses: ./.github/workflows/zz-tmpl-k8s-e2e.yaml
320320
with:
321321
k8s-version: ${{ matrix.k8s }}

.github/workflows/images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
(needs.changes.outputs.kube-webhook-certgen == 'true')
136136
strategy:
137137
matrix:
138-
k8s: [v1.28.15, v1.29.10, v1.30.6, v1.31.2]
138+
k8s: [v1.28.15, v1.29.12, v1.30.8, v1.31.4, v1.32.0]
139139
steps:
140140
- name: Checkout
141141
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ jobs:
5151
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5252
# format to the repository Actions tab.
5353
- name: "Upload artifact"
54-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
54+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
5555
with:
5656
name: SARIF file
5757
path: results.sarif
5858
retention-days: 5
5959

6060
# Upload the results to GitHub's code scanning dashboard.
6161
- name: "Upload to code-scanning"
62-
uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
62+
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
6363
with:
6464
sarif_file: results.sarif

.github/workflows/vulnerability-scans.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
# This step checks out a copy of your repository.
7777
- name: Upload SARIF file
78-
uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9
78+
uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0
7979
with:
8080
token: ${{ github.token }}
8181
# Path to SARIF file relative to the root of the repository

.github/workflows/zz-tmpl-k8s-e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
make kind-e2e-test
5050
5151
- name: Upload e2e junit-reports ${{ inputs.variation }}
52-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
52+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
5353
if: success() || failure()
5454
with:
5555
name: e2e-test-reports-${{ inputs.k8s-version }}${{ inputs.variation }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ clean-chroot-image: ## Removes local image
110110

111111
.PHONY: build
112112
build: ## Build ingress controller, debug tool and pre-stop hook.
113-
E2E_IMAGE=golang:$(GO_VERSION)-alpine3.20 USE_SHELL=/bin/sh build/run-in-docker.sh \
113+
E2E_IMAGE=golang:$(GO_VERSION)-alpine3.21 USE_SHELL=/bin/sh build/run-in-docker.sh \
114114
MAC_OS=$(MAC_OS) \
115115
PKG=$(PKG) \
116116
ARCH=$(ARCH) \

NGINX_BASE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
registry.k8s.io/ingress-nginx/nginx:v1.0.0@sha256:11ee0d0e3d063f1468f9a82958d57fa0718614fe10b676941f4dea0aef091faf
1+
registry.k8s.io/ingress-nginx/nginx:v1.1.0@sha256:43e04f78d7544010e2e86918faae1d15091995b7ef6e522f53cf3035ad814567

OWNERS_ALIASES

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,17 @@
11
# See the OWNERS docs: https://www.kubernetes.dev/docs/guide/owners
22

33
aliases:
4-
sig-network-leads:
5-
- caseydavenport
6-
- dcbw
7-
- thockin
8-
9-
ingress-nginx-admins:
10-
- Gacko
11-
- strongjz
12-
134
ingress-nginx-maintainers:
145
- cpanato
156
- Gacko
16-
- puerco
177
- strongjz
188
- tao12345666333
199

2010
ingress-nginx-reviewers:
2111
- cpanato
2212
- Gacko
23-
- puerco
2413
- strongjz
2514
- tao12345666333
2615

27-
ingress-nginx-helm-maintainers:
28-
- ubergesundheit
29-
30-
ingress-nginx-helm-reviewers:
31-
- ubergesundheit
32-
3316
ingress-nginx-docs-maintainers:
3417
- longwuyuan
35-
36-
ingress-nginx-kube-webhook-certgen-reviewers:
37-
- invidian

build/run-in-docker.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function cleanup {
4444
}
4545
trap cleanup EXIT
4646

47-
E2E_IMAGE=${E2E_IMAGE:-registry.k8s.io/ingress-nginx/e2e-test-runner:v20241104-02a3933e@sha256:baf30e414c5657cc71f5bd1db502f0e0ee4ab721b6560340eff214935e96bef0}
47+
E2E_IMAGE=${E2E_IMAGE:-registry.k8s.io/ingress-nginx/e2e-test-runner:v20241224-68ed4e7b@sha256:871642296ebc0dd386f9a43b0cf2606028d757d6c4a2737d41180f02f8172823}
4848

4949
if [[ "$RUNTIME" == podman ]]; then
5050
# Podman does not support both tag and digest
@@ -82,7 +82,7 @@ if [[ "$DOCKER_IN_DOCKER_ENABLED" == "true" ]]; then
8282
echo "..reached DIND check TRUE block, inside run-in-docker.sh"
8383
echo "FLAGS=$FLAGS"
8484
#go env
85-
go install -mod=mod github.com/onsi/ginkgo/v2/[email protected].0
85+
go install -mod=mod github.com/onsi/ginkgo/v2/[email protected].1
8686
find / -type f -name ginkgo 2>/dev/null
8787
which ginkgo
8888
/bin/bash -c "${FLAGS}"

charts/ingress-nginx/Chart.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ kubeVersion: '>=1.21.0-0'
1515
maintainers:
1616
- name: cpanato
1717
- name: Gacko
18-
- name: puerco
1918
- name: strongjz
2019
- name: tao12345666333
2120
name: ingress-nginx

0 commit comments

Comments
 (0)