Skip to content

Commit 13c0d40

Browse files
authored
Merge branch 'main' into docs/updates-installation-bullets
2 parents 2e9699c + accba9d commit 13c0d40

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

.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)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.20
44

55
require (
66
github.com/aws/aws-sdk-go-v2/config v1.18.26
7-
github.com/aws/aws-sdk-go-v2/service/marketplacemetering v1.14.12
7+
github.com/aws/aws-sdk-go-v2/service/marketplacemetering v1.14.13
88
github.com/cert-manager/cert-manager v1.12.1
99
github.com/go-chi/chi/v5 v5.0.8
1010
github.com/golang-jwt/jwt/v4 v4.5.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ github.com/aws/aws-sdk-go-v2/internal/ini v1.3.35 h1:LWA+3kDM8ly001vJ1X1waCuLJdt
5858
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.35/go.mod h1:0Eg1YjxE0Bhn56lx+SHJwCzhW+2JGtizsrx+lCqrfm0=
5959
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.28 h1:bkRyG4a929RCnpVSTvLM2j/T4ls015ZhhYApbmYs15s=
6060
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.28/go.mod h1:jj7znCIg05jXlaGBlFMGP8+7UN3VtCkRBG2spnmRQkU=
61-
github.com/aws/aws-sdk-go-v2/service/marketplacemetering v1.14.12 h1:vxOcOeqRTsO9ru0E5hkbhAeIdpYtizuoNEkLZuqm5ek=
62-
github.com/aws/aws-sdk-go-v2/service/marketplacemetering v1.14.12/go.mod h1:xmV0oIDDFg4i3vNjRfwRAl1ZGpNsEj06gLYpFT+hwpI=
61+
github.com/aws/aws-sdk-go-v2/service/marketplacemetering v1.14.13 h1:INNEByjR77yjugBQPVXkDTleLf5AIvxUslT1N3MG2So=
62+
github.com/aws/aws-sdk-go-v2/service/marketplacemetering v1.14.13/go.mod h1:xmV0oIDDFg4i3vNjRfwRAl1ZGpNsEj06gLYpFT+hwpI=
6363
github.com/aws/aws-sdk-go-v2/service/sso v1.12.11 h1:cNrMc266RsZJ8V1u1OQQONKcf9HmfxQFqgcpY7ZJBhY=
6464
github.com/aws/aws-sdk-go-v2/service/sso v1.12.11/go.mod h1:HuCOxYsF21eKrerARYO6HapNeh9GBNq7fius2AcwodY=
6565
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.11 h1:h2VhtCE5PBiJefmlVCjJRSzBfFcQeAE10SXIGkXw1jQ=

0 commit comments

Comments
 (0)