-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Docker base image to Ubuntu Noble
This commit updates the Docker base image used to build Slurm containers to the new Ubuntu Noble (24.04 LTS) version. Consequently, the Slurm version shipped with apt is updated to `v23.11.4`.
- Loading branch information
1 parent
16b14ba
commit ca718db
Showing
10 changed files
with
29 additions
and
28 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,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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
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
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
FROM ubuntu:jammy | ||
FROM ubuntu:noble | ||
|
||
ARG COMMIT="none" | ||
ARG CREATION_DATE="none" | ||
|
||
LABEL org.opencontainers.image.authors="Iacopo Colonnelli <[email protected]>" | ||
LABEL org.opencontainers.image.base.name="docker.io/ubuntu:jammy" | ||
LABEL org.opencontainers.image.base.name="docker.io/ubuntu:noble" | ||
LABEL org.opencontainers.image.created="${CREATION_DATE}" | ||
LABEL org.opencontainers.image.licenses="OpenSSL" | ||
LABEL org.opencontainers.image.revision="${COMMIT}" | ||
LABEL org.opencontainers.image.ref.name="alphaunito/slurmctld" | ||
LABEL org.opencontainers.image.source="https://github.com/alpha-unito/docker-for-hpc" | ||
LABEL org.opencontainers.image.title="Slurm management daemon" | ||
LABEL org.opencontainers.image.version="21.08.5" | ||
LABEL org.opencontainers.image.version="23.11.4" | ||
|
||
RUN apt update \ | ||
&& apt install -y --no-install-recommends \ | ||
|
@@ -48,7 +48,7 @@ RUN apt update | |
--gecos "" \ | ||
hpcuser | ||
|
||
COPY config/cgroups.conf \ | ||
COPY config/cgroup.conf \ | ||
config/slurm.conf \ | ||
/etc/slurm/ | ||
|
||
|
2 changes: 0 additions & 2 deletions
2
slurm/slurmctld/config/cgroups.conf → slurm/slurmctld/config/cgroup.conf
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
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 |
---|---|---|
@@ -1,17 +1,17 @@ | ||
FROM ubuntu:jammy | ||
FROM ubuntu:noble | ||
|
||
ARG COMMIT="none" | ||
ARG CREATION_DATE="none" | ||
|
||
LABEL org.opencontainers.image.authors="Iacopo Colonnelli <[email protected]>" | ||
LABEL org.opencontainers.image.base.name="docker.io/ubuntu:jammy" | ||
LABEL org.opencontainers.image.base.name="docker.io/ubuntu:noble" | ||
LABEL org.opencontainers.image.created="${CREATION_DATE}" | ||
LABEL org.opencontainers.image.licenses="OpenSSL" | ||
LABEL org.opencontainers.image.revision="${COMMIT}" | ||
LABEL org.opencontainers.image.ref.name="alphaunito/slurmd" | ||
LABEL org.opencontainers.image.source="https://github.com/alpha-unito/docker-for-hpc" | ||
LABEL org.opencontainers.image.title="Slurm compute node" | ||
LABEL org.opencontainers.image.version="21.08.5" | ||
LABEL org.opencontainers.image.version="23.11.4" | ||
|
||
RUN apt update \ | ||
&& apt install -y --no-install-recommends \ | ||
|
2 changes: 0 additions & 2 deletions
2
slurm/slurmd/config/cgroups.conf → slurm/slurmd/config/cgroup.conf
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