File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -148,11 +148,15 @@ Adding a new version? You'll need three changes:
148148### Changed
149149
150150- Update paths of Konnect APIs from ` runtime_groups/* ` to ` control-planes/* ` .
151- [ #4566 ] ( https://github.com/Kong/kubernetes-ingress-controller/pull/4566 )
151+ [ #4566 ] ( https://github.com/Kong/kubernetes-ingress-controller/pull/4566 )
152+ - Docker images now use UID and GID 1000 to match Kong images. This should have
153+ no user-facing effect.
154+ [ #4911 ] ( https://github.com/Kong/kubernetes-ingress-controller/pull/4911 )
152155- Bump version of gateway API to ` 1.0.0-rc1 ` and support ` Gateway ` , ` GatewayClass `
153156 and ` HTTPRoute ` in API version ` gateway.networking.k8s.io/v1 ` .
154157[ #4893 ] ( https://github.com/Kong/kubernetes-ingress-controller/pull/4893 )
155158
159+
156160### Added
157161
158162- Added support for expression-based Kong routes for ` TLSRoute ` . This requires
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH="${TARGETARCH}" GO111MODULE=on make _build.f
7777FROM gcr.io/distroless/static:nonroot AS distroless-fips
7878WORKDIR /
7979COPY --from=builder-fips /workspace/manager .
80- USER 65532:65532
80+ USER 1000:1000
8181
8282ENTRYPOINT ["/manager" ]
8383
@@ -100,6 +100,6 @@ LABEL name="Kong Ingress Controller" \
100100
101101WORKDIR /
102102COPY --from=builder /workspace/bin/manager .
103- USER 65532:65532
103+ USER 1000:1000
104104
105105ENTRYPOINT ["/manager" ]
You can’t perform that action at this time.
0 commit comments