Bring operator to the brand new world of build and deployments.

This commit is contained in:
2025-12-17 23:45:25 +00:00
parent 067a51c9c7
commit 0de9397a2d
29 changed files with 1422 additions and 231 deletions
+8
View File
@@ -0,0 +1,8 @@
# Dockerfile for GoReleaser dockers_v2
# GoReleaser organizes binaries by platform: linux/amd64/manager, linux/arm64/manager
FROM gcr.io/distroless/static:nonroot
ARG TARGETPLATFORM
WORKDIR /
COPY ${TARGETPLATFORM}/manager /manager
USER 65532:65532
ENTRYPOINT ["/manager"]