-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The nri-memtierd plugin toggles swapping, starts/stops memtierd processes that track and manage memory of containers. Signed-off-by: Antti Kervinen <[email protected]> Signed-off-by: Luukas Makila <[email protected]>
- Loading branch information
Showing
9 changed files
with
1,081 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
ARG GO_VERSION=1.21 | ||
|
||
FROM golang:${GO_VERSION}-bullseye as builder | ||
|
||
WORKDIR /go/builder | ||
|
||
RUN GOBIN=/bin go install github.com/intel/memtierd/cmd/memtierd@latest | ||
|
||
# Fetch go dependencies in a separate layer for caching | ||
COPY go.mod go.sum ./ | ||
COPY pkg/topology/ pkg/topology/ | ||
RUN go mod download | ||
|
||
# Build nri-memtierd | ||
COPY . . | ||
|
||
RUN make clean | ||
RUN make PLUGINS=nri-memtierd build-plugins-static | ||
|
||
# FROM gcr.io/distroless/static | ||
# ENV PATH=/bin | ||
# TODO: DEBUG why exec.Command("memtierd", "-c", ...).Start() fails on distroless: | ||
# execve("/bin/memtierd", ["/bin/memtierd", "-c", "", "-config", "/host/tmp/memtierd/default/test-"...], 0xc000146000 /* 38 vars */) = -1 ENOENT (No such file or directory) | ||
# However, execve works on busybox base image, so let's use it until | ||
# the real problem is solved. | ||
|
||
FROM busybox | ||
|
||
COPY --from=builder /go/builder/build/bin/nri-memtierd /bin/nri-memtierd | ||
COPY --from=builder /bin/memtierd /bin/memtierd | ||
|
||
ENTRYPOINT ["/bin/nri-memtierd", "--idx", "45"] |
Oops, something went wrong.