Skip to content

Commit 767f150

Browse files
authored
Merge branch 'main' into docs/update-theme
2 parents 925f549 + 1aaf6df commit 767f150

28 files changed

+676
-141
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
allow_licenses:
2+
- Apache-1.1
3+
- Apache-2.0
4+
- BSD-2-Clause
5+
- BSD-3-Clause
6+
- BSL-1.0
7+
- ISC
8+
- MIT
9+
- NCSA
10+
- OpenSSL
11+
- Python-2.0
12+
- X11
13+
comment-summary-in-pr: true

.github/workflows/build-oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
if: ${{ github.event_name != 'pull_request' && ! startsWith(github.ref, 'refs/heads/release-') }}
6767

6868
- name: Configure AWS Credentials
69-
uses: aws-actions/configure-aws-credentials@5727f247b64f324ec403ac56ae05e220fd02b65f # v2.1.0
69+
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2.2.0
7070
with:
7171
aws-region: us-east-1
7272
role-to-assume: ${{ secrets.AWS_ROLE_PUBLIC_ECR }}

.github/workflows/build-plus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
if: github.event_name != 'pull_request'
7070

7171
- name: Configure AWS Credentials
72-
uses: aws-actions/configure-aws-credentials@5727f247b64f324ec403ac56ae05e220fd02b65f # v2.1.0
72+
uses: aws-actions/configure-aws-credentials@5fd3084fc36e372ff1fff382a39b10d03659f355 # v2.2.0
7373
with:
7474
aws-region: us-east-1
7575
role-to-assume: ${{ secrets.AWS_ROLE_MARKETPLACE }}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Dependency Review"
2+
on: [pull_request]
3+
4+
permissions:
5+
contents: read
6+
7+
jobs:
8+
dependency-review:
9+
runs-on: ubuntu-22.04
10+
permissions:
11+
contents: read
12+
pull-requests: write
13+
steps:
14+
- name: "Checkout Repository"
15+
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
16+
17+
- name: "Dependency Review"
18+
uses: actions/dependency-review-action@1360a344ccb0ab6e9475edef90ad2f46bf8003b1 # v3.0.6
19+
with:
20+
config-file: "./.github/dependency-review-config.yml"

.goreleaser.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -93,36 +93,38 @@ builds:
9393
tags:
9494
- aws
9595

96-
archives:
97-
- id: kubernetes-ingress
98-
builds: [kubernetes-ingress]
99-
10096
changelog:
10197
skip: true
10298

103-
checksum:
104-
name_template: 'checksums.txt'
99+
archives:
100+
- id: kubernetes-ingress
101+
builds: [kubernetes-ingress]
105102

106103
sboms:
107104
- artifacts: archive
108105
ids: [kubernetes-ingress]
106+
documents:
107+
- "${artifact}.spdx.json"
109108

110109
release:
111110
ids: [kubernetes-ingress]
112111
extra_files:
113-
- glob: ./dist/**.sbom
112+
- glob: ./dist/**.spdx.json
114113

115114
blobs:
116115
- provider: azblob
117116
bucket: '{{.Env.AZURE_BUCKET_NAME}}'
118117
extra_files:
119-
- glob: ./dist/**.sbom
120-
121-
milestones:
122-
- close: true
118+
- glob: ./dist/**.spdx.json
123119

124120
announce:
125121
slack:
126122
enabled: true
127123
channel: '#announcements'
128124
message_template: 'NGINX Ingress Controller {{ .Tag }} is out! Check it out: {{ .ReleaseURL }}'
125+
126+
milestones:
127+
- close: true
128+
129+
snapshot:
130+
name_template: 'edge'

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ endif
9595
.PHONY: build-goreleaser
9696
build-goreleaser: ## Build Ingress Controller binary using GoReleaser
9797
@goreleaser -v || (code=$$?; printf "\033[0;31mError\033[0m: there was a problem with GoReleaser. Follow the docs to install it https://goreleaser.com/install\n"; exit $$code)
98-
GOOS=linux GOPATH=$(shell go env GOPATH) GOARCH=$(ARCH) goreleaser build --rm-dist --debug --snapshot --id kubernetes-ingress --single-target
98+
GOOS=linux GOPATH=$(shell go env GOPATH) GOARCH=$(ARCH) goreleaser build --clean --debug --snapshot --id kubernetes-ingress --single-target
9999

100100
.PHONY: debian-image
101101
debian-image: build ## Create Docker image for Ingress Controller (Debian)

build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FROM opentracing/nginx-opentracing:nginx-1.25.0-alpine as alpine-opentracing-lib
1010

1111

1212
############################################# Base image for Debian #############################################
13-
FROM nginx:1.25.0 AS debian
13+
FROM nginx:1.25.1 AS debian
1414

1515
RUN --mount=type=bind,from=opentracing-lib,target=/tmp/ot/ \
1616
apt-get update \
@@ -24,7 +24,7 @@ RUN --mount=type=bind,from=opentracing-lib,target=/tmp/ot/ \
2424

2525

2626
############################################# Base image for Alpine #############################################
27-
FROM nginx:1.25.0-alpine AS alpine
27+
FROM nginx:1.25.1-alpine AS alpine
2828

2929
RUN --mount=type=bind,from=alpine-opentracing-lib,target=/tmp/ot/ \
3030
apk add --no-cache libcap libstdc++ \

deployments/common/crds/k8s.nginx.org_virtualserverroutes.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,8 @@ spec:
588588
type: string
589589
path:
590590
type: string
591+
samesite:
592+
type: string
591593
secure:
592594
type: boolean
593595
slow-start:

deployments/common/crds/k8s.nginx.org_virtualservers.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -675,6 +675,8 @@ spec:
675675
type: string
676676
path:
677677
type: string
678+
samesite:
679+
type: string
678680
secure:
679681
type: boolean
680682
slow-start:

deployments/helm-chart/crds/k8s.nginx.org_virtualserverroutes.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,8 @@ spec:
588588
type: string
589589
path:
590590
type: string
591+
samesite:
592+
type: string
591593
secure:
592594
type: boolean
593595
slow-start:

0 commit comments

Comments
 (0)