Skip to content

Commit e0ee1c1

Browse files
committed
Merge branch 'kubernetes:main' into fix-non-tls-ingress
2 parents c5cadcc + e285680 commit e0ee1c1

File tree

204 files changed

+3054
-805
lines changed

Some content is hidden

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

204 files changed

+3054
-805
lines changed

.github/workflows/ci.yaml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373

7474
- name: Set up Go
7575
id: go
76-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
76+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
7777
with:
78-
go-version: '1.21.3'
78+
go-version: '1.21.5'
7979
check-latest: true
8080

8181
- name: Run test
@@ -94,9 +94,9 @@ jobs:
9494

9595
- name: Set up Go
9696
id: go
97-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
97+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
9898
with:
99-
go-version: '1.21.3'
99+
go-version: '1.21.5'
100100
check-latest: true
101101

102102
- name: Set up QEMU
@@ -158,11 +158,19 @@ jobs:
158158
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
159159

160160
- name: Setup Go
161-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
161+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
162162
with:
163-
go-version: '1.21.3'
163+
go-version: '1.21.5'
164164
check-latest: true
165165

166+
- name: Install Helm Unit Test Plugin
167+
run: |
168+
helm plugin install https://github.com/helm-unittest/helm-unittest
169+
170+
- name: Run Helm Unit Tests
171+
run: |
172+
helm unittest charts/ingress-nginx -d
173+
166174
- name: cache
167175
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
168176
with:
@@ -500,9 +508,9 @@ jobs:
500508
- name: Set up Go
501509
id: go
502510
if: ${{ steps.filter-images.outputs.kube-webhook-certgen == 'true' }}
503-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
511+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
504512
with:
505-
go-version: '1.21.3'
513+
go-version: '1.21.5'
506514
check-latest: true
507515

508516
- name: kube-webhook-certgen image build

.github/workflows/depreview.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
- name: 'Checkout Repository'
1212
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
1313
- name: 'Dependency Review'
14-
uses: actions/dependency-review-action@7bbfa034e752445ea40215fff1c3bf9597993d3f # v3.1.3
14+
uses: actions/dependency-review-action@01bc87099ba56df1e897b6874784491ea6309bc4 # v3.1.4

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323

2424
- name: Set up Go
2525
id: go
26-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
26+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
2727
with:
28-
go-version: '1.21.3'
28+
go-version: '1.21.5'
2929
check-latest: true
3030

3131
- name: golangci-lint
3232
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
3333
with:
34-
version: v1.53
34+
version: v1.55.2

.github/workflows/plugin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
fetch-depth: 0
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
23+
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
2424
with:
25-
go-version: '1.21.3'
25+
go-version: '1.21.5'
2626
check-latest: true
2727

2828
- name: Run GoReleaser

.github/workflows/vulnerability-scans.yaml

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

6161
- name: Scan image with AquaSec/Trivy
6262
id: scan
63-
uses: aquasecurity/trivy-action@2b6a709cf9c4025c5438138008beaddbb02086f0 # v0.14.0
63+
uses: aquasecurity/trivy-action@91713af97dc80187565512baba96e4364e983601 # v0.16.0
6464
with:
6565
image-ref: registry.k8s.io/ingress-nginx/controller:${{ matrix.versions }}
6666
format: 'sarif'

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ cmd/plugin/release/*.tar.gz
6161
cmd/plugin/release/LICENSE
6262
tmp/
6363
test/junitreports/
64+
tests/__snapshot__

Changelog.md.gotmpl

Lines changed: 0 additions & 15 deletions
This file was deleted.

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:v20231011-8b53cabe0@sha256:34881d62f71e8573fb765c40585dba28a1148206fbbe2c3871ad3f4e8c6e360f
1+
registry.k8s.io/ingress-nginx/nginx:v20231208-4c39e6acc@sha256:03508408458d00ba4e219d2693ba2a039ba66d4151ab9b43794f61877e0abb73

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:v20231011-8b53cabe0@sha256:ed0dad805c635e66469b4ac376010eebdd0b3fe62d753f58db1632d6f12f451d}
47+
E2E_IMAGE=${E2E_IMAGE:-registry.k8s.io/ingress-nginx/e2e-test-runner:v20231208-4c39e6acc@sha256:0607184ca9c53c9c24a47b6f52347dd96137b05c6f276efa67051929a39e8f7a}
4848

4949
if [[ "$RUNTIME" == podman ]]; then
5050
# Podman does not support both tag and digest
@@ -87,7 +87,7 @@ if [[ "$DOCKER_IN_DOCKER_ENABLED" == "true" ]]; then
8787
echo "..reached DIND check TRUE block, inside run-in-docker.sh"
8888
echo "FLAGS=$FLAGS"
8989
#go env
90-
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo@v2.13.0
90+
go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo@v2.13.1
9191
find / -type f -name ginkgo 2>/dev/null
9292
which ginkgo
9393
/bin/bash -c "${FLAGS}"

changelog/Changelog-1.9.4.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)