Skip to content

Commit cda824c

Browse files
authored
chore: change container UID and GID (#4911)
1 parent d8bbfd9 commit cda824c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH="${TARGETARCH}" GO111MODULE=on make _build.f
7777
FROM gcr.io/distroless/static:nonroot AS distroless-fips
7878
WORKDIR /
7979
COPY --from=builder-fips /workspace/manager .
80-
USER 65532:65532
80+
USER 1000:1000
8181

8282
ENTRYPOINT ["/manager"]
8383

@@ -100,6 +100,6 @@ LABEL name="Kong Ingress Controller" \
100100

101101
WORKDIR /
102102
COPY --from=builder /workspace/bin/manager .
103-
USER 65532:65532
103+
USER 1000:1000
104104

105105
ENTRYPOINT ["/manager"]

0 commit comments

Comments
 (0)