8000 Merge branch 'main' into additional-service-fields · nginx/kubernetes-ingress@cb178be · GitHub
[go: up one dir, main page]

Skip to content

Commit cb178be

Browse files
authored
Merge branch 'main' into additional-service-fields
2 parents f484f83 + 22d3d7f commit cb178be

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
- name: Check if Codegen changed
7979
run: |
8080
cd ../.. && mkdir -p github.com/nginxinc && mv kubernetes-ingress/kubernetes-ingress github.com/nginxinc/ && cd github.com/nginxinc/kubernetes-ingress
81-
make update-codegen && git diff --name-only --exit-code pkg/**/zz_generated.deepcopy.go
81+
make update-codegen && git diff --name-only --exit-code pkg/**
8282
cd ../../.. && mv github.com/nginxinc/kubernetes-ingress kubernetes-ingress/kubernetes-ingress
8383
8484
binary:

build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ FROM docker.io/library/nginx:1.21.6-alpine AS alpine
3131

3232
RUN --mount=type=bind,from=alpine-opentracing-lib,target=/tmp/ot/ \
3333
apk add --no-cache libcap libstdc++ \
34-
# temp fix for CVE-2022-1271 and CVE-2022-22576
35-
&& apk upgrade --no-cache xz-libs curl libcurl \
34+
# temp fix for CVE-2022-1271, CVE-2022-22576 and CVE-2022-27404
35+
&& apk upgrade --no-cache xz-libs curl libcurl freetype \
3636
&& cp -av /tmp/ot/usr/local/lib/libopentracing.so* /tmp/ot/usr/local/lib/libjaegertracing*so* /tmp/ot/usr/local/lib/libzipkin*so* /tmp/ot/usr/local/lib/libdd*so* /tmp/ot/usr/local/lib/libyaml*so* /usr/local/lib/ \
3737
&& cp -av /tmp/ot/usr/lib/nginx/modules/ngx_http_opentracing_module.so /usr/lib/nginx/modules/ \
3838
&& ldconfig /usr/local/lib/

cmd/nginx-ingress/main.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,11 @@ func main() {
212212
}
213213
glog.Infof("Starting NGINX Ingress Controller %v PlusFlag=%v", versionInfo, *nginxPlus)
214214

215+
unparsed := flag.Args()
216+
if unparsed != nil {
217+
glog.Warningf("Ignoring unhandled arguments: %v", unparsed)
218+
}
219+
215220
if startupCheckFn != nil {
216221
err := startupCheckFn()
217222
if err != nil {

pkg/client/clientset/versioned/clientset.go

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
0