-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from scalableminds/slurm-exporter
Add slurm-exporter
- Loading branch information
Showing
2 changed files
with
17 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
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,16 @@ | ||
ARG GO_VERSION=1.22 | ||
ARG SLURM_VERSION=24.05.3 | ||
|
||
FROM cimg/go:$GO_VERSION AS builder | ||
|
||
ARG SLURM_EXPORTER_VERSION=0.20 | ||
|
||
WORKDIR /build | ||
RUN wget "https://github.com/vpenso/prometheus-slurm-exporter/archive/refs/tags/${SLURM_EXPORTER_VERSION}.zip" && unzip "${SLURM_EXPORTER_VERSION}.zip" | ||
RUN go build -C "prometheus-slurm-exporter-${SLURM_EXPORTER_VERSION}" -o /build/bin/prometheus-slurm-exporter | ||
|
||
FROM scalableminds/slurmctl:$SLURM_VERSION | ||
|
||
COPY --from=builder /build/bin/prometheus-slurm-exporter /usr/bin | ||
|
||
ENTRYPOINT [ "/usr/bin/prometheus-slurm-exporter" ] |