-
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
12 changed files
with
1,182 additions
and
1 deletion.
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
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,26 @@ | ||
ARG GO_VERSION=1.20 | ||
|
||
FROM golang:${GO_VERSION}-bullseye as builder | ||
|
||
WORKDIR /go/builder | ||
|
||
RUN GOBIN=/bin go install -tags osusergo,netgo -ldflags "-extldflags=-static" github.com/intel/memtierd/cmd/memtierd@c67204d6af3e5f64cd396f1c29aafa729e4363ba | ||
|
||
# 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 | ||
|
||
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.