-
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 35f6b3e
Showing
12 changed files
with
34 additions
and
37 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,8 +48,7 @@ RUN apt update | |
--gecos "" \ | ||
hpcuser | ||
|
||
COPY config/cgroups.conf \ | ||
config/slurm.conf \ | ||
COPY config/slurm.conf \ | ||
/etc/slurm/ | ||
|
||
COPY config/supervisord.conf \ | ||
|
@@ -65,4 +64,4 @@ EXPOSE 22 6817 | |
|
||
WORKDIR /home/hpcuser | ||
|
||
ENTRYPOINT supervisord | ||
ENTRYPOINT [supervisord, -c /etc/supervisor/conf.d/supervisord.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 \ | ||
|
@@ -50,7 +50,7 @@ RUN apt update | |
--gecos "" \ | ||
hpcuser | ||
|
||
COPY config/cgroups.conf \ | ||
COPY config/cgroup.conf \ | ||
/etc/slurm/ | ||
|
||
COPY config/supervisord.conf \ | ||
|
@@ -66,4 +66,4 @@ EXPOSE 22 | |
|
||
WORKDIR /home/hpcuser | ||
|
||
ENTRYPOINT supervisord | ||
ENTRYPOINT [supervisord, -c /etc/supervisor/conf.d/supervisord.conf] |
2 changes: 0 additions & 2 deletions
2
slurm/slurmctld/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
This file was deleted.
Oops, something went wrong.
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