Skip to content

Commit 4e5349d

Browse files
authored
Merge pull request #4 from FoamScience/general_frameworks
Arbitrary framework packaging
2 parents bd42f1b + 9ba07a7 commit 4e5349d

11 files changed

+293
-110
lines changed

README.md

+27-19
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Build apptainer containers for OpenFOAM-based projects
1+
# Build apptainer containers for your projects
22

33
<p align="center">
44
<img alt="GitHub Actions Workflow Status" src="https://img.shields.io/github/actions/workflow/status/FoamScience/openfoam-apptainer-packaging/ci.yaml?style=for-the-badge&logo=linuxcontainers&label=Test%20container">
@@ -7,7 +7,7 @@
77
<img alt="Foam Extend" src="https://img.shields.io/badge/Foam_Extend-teal?style=for-the-badge">
88
</p>
99

10-
This is a project to automate the building of HPC-ready containers for OpenFOAM-based projects
10+
This is a project to automate building HPC-ready containers (originally for OpenFOAM-based projects)
1111
using `apptainer`.
1212

1313
> [!NOTE]
@@ -24,11 +24,18 @@ using `apptainer`.
2424

2525
Automated workflows to:
2626

27-
- Build a base `OpenFOAM` container (supporting various forks and versions) to run on HPCs
27+
- Build a base framework (eg: `OpenFOAM`) container (supporting various forks and versions) to run on HPCs
2828
- Build project-specific containers that inherit from a target base container
2929
- OpenMPI is a first-class citizen: `mpirun -n 16 apptainer run container.sif "solver -parallel"`
3030
should 'just work'.
3131

32+
## Highlighted features
33+
34+
1. Automated, configuration-only workflows to produce containers that behave similarly across frameworks.
35+
1. A JSON Database of container metadata, with full control at the hands of the container maintainer.
36+
1. Maintaining definition files for your projects can be done in your own repos.
37+
1. Loading your own repositories of base framework container definitions works seamlessly.
38+
3239
## Quick Instructions
3340

3441
```bash
@@ -40,23 +47,24 @@ ansible-playbook build.yaml --extra-vars "original_dir=$PWD" --extra-vars "@conf
4047

4148
> [!TIP]
4249
> `ansible` is a nice tool to automate builds and make sure your host system has the required
43-
> dependencies to be able to build the containers.
50+
> dependencies to be able to build the containers. The configuration file and base definitions
51+
> provided serve as examples to build OpenFOAM containers.
4452
4553
The ansible command (by default) will:
4654
- Create the following tree in the current working folder:
4755
```
4856
containers/
4957
├── basic
5058
│   ├── opencfd-openfoam.sif
51-
│   └── ubuntu-24.04-ompi-4.1.5.sif
59+
│   └── ubuntu-24.04-openmpi-4.1.5.sif
5260
└── projects
5361
   └── test-master.sif
5462
```
55-
- Build a basic OpenMPI container `containers/basic/ubuntu-24.04-ompi-4.1.5.sif`, or pull
56-
it from [ghcr.io](https://ghcr.io) if possible
63+
- Build a basic OpenMPI container `containers/basic/ubuntu-24.04-openmpi-4.1.5.sif`, or
64+
pull it from [ghcr.io](https://ghcr.io) if possible
5765
- Build a base (OpenCFD) OpenFOAM container `containers/basic/opencfd-openfoam.sif`, or
5866
pull it from [ghcr.io](https://ghcr.io) if possible
59-
- Build a test project container, to make sure MPI works alright
67+
- Build a test project container, to make sure MPI works alright in OpenFOAM containers
6068

6169
Check the [docs.md](docs.md) for details on how the configuration file
6270
is expected to be structured.
@@ -69,22 +77,22 @@ sequenceDiagram
6977
participant GHCR
7078
participant Docker Hub
7179
participant Local Build
72-
participant OpenMPI Container
73-
participant OpenFOAM Container
80+
participant MPI Container
81+
participant Framework Container
7482
participant Project Container
7583
7684
User->>Ansible Playbook: Start playbook with config.yaml
77-
Ansible Playbook->>GHCR: Check if OpenMPI Container exists
78-
GHCR-->>Ansible Playbook: OpenMPI Container not found
85+
Ansible Playbook->>GHCR: Check if MPI Container exists
86+
GHCR-->>Ansible Playbook: MPI Container not found
7987
Ansible Playbook->>Docker Hub: Pull Ubuntu image
8088
Docker Hub-->>Ansible Playbook: Ubuntu image pulled
81-
Ansible Playbook->>Local Build: Build OpenMPI Container on top of Ubuntu image
82-
Local Build-->>OpenMPI Container: OpenMPI Container created
83-
Ansible Playbook->>GHCR: Check if OpenFOAM Container exists
84-
GHCR-->>Ansible Playbook: OpenFOAM Container not found
85-
Ansible Playbook->>Local Build: Build OpenFOAM Container on top of OpenMPI Container
86-
Local Build-->>OpenFOAM Container: OpenFOAM Container created
87-
Ansible Playbook->>Local Build: Build Project Container on top of OpenFOAM Container with build args
89+
Ansible Playbook->>Local Build: Build MPI Container on top of Ubuntu image
90+
Local Build-->>MPI Container: MPI Container created
91+
Ansible Playbook->>GHCR: Check if Framework Container exists
92+
GHCR-->>Ansible Playbook: Framework Container not found
93+
Ansible Playbook->>Local Build: Build Framework Container on top of MPI Container
94+
Local Build-->>Framework Container: Framework Container created
95+
Ansible Playbook->>Local Build: Build Project Container on top of Framework Container with build args
8896
Local Build-->>Project Container: Project Container created
8997
Project Container-->>User: Container ready for use
9098
```

basic/com-openfoam.def

+14-13
Original file line numberDiff line numberDiff line change
@@ -10,43 +10,44 @@
1010
#
1111
# ---------------------------------------------------------------------------
1212
Bootstrap: localimage
13-
From: containers/basic/ubuntu-{{ OS_VERSION }}-ompi-{{ OPENMPI_VERSION }}.sif
13+
From: containers/basic/{{ OS_DISTRO }}-{{ OS_VERSION }}-{{MPI_IMPLEMENTATION}}-{{ MPI_VERSION }}.sif
1414

1515
%arguments
16+
OS_DISTRO=ubuntu
1617
OS_VERSION=24.04
17-
OPENMPI_VERSION=4.1.5
18-
OPENFOAM_VERSION=2312
19-
OPENFOAM_GIT_REF=default
18+
MPI_IMPLEMENTATION=openmpi
19+
MPI_VERSION=4.1.5
20+
FRAMEWORK_VERSION=2312
21+
FRAMEWORK_GIT_REF=default
2022

2123
%post
2224
curl https://dl.openfoam.com/add-debian-repo.sh | bash
2325
DEBIAN_FRONTEND=noninteractive
24-
apt-get -y install --no-install-recommends openfoam{{ OPENFOAM_VERSION }}-dev python3
25-
dpkg --remove --force-depends libopenmpi-dev openmpi-bin openmpi-common
26-
jq --arg app openfoam --arg commit {{ OPENFOAM_GIT_REF }} \
27-
--arg branch {{ OPENFOAM_GIT_REF }} \
26+
apt-get -y install --no-install-recommends openfoam{{ FRAMEWORK_VERSION }}-dev python3
27+
jq --arg app openfoam --arg commit {{ FRAMEWORK_GIT_REF }} \
28+
--arg branch {{ FRAMEWORK_GIT_REF }} \
2829
'.[$app] |= if . == null then
2930
{
3031
fork: "com-openfoam",
3132
branch: $branch,
3233
commit: $commit,
33-
version: "{{ OPENFOAM_VERSION }}"
34+
version: "{{ FRAMEWORK_VERSION }}"
3435
}
3536
else . +
3637
{
3738
fork: "com-openfoam",
3839
branch: $branch,
3940
commit: $commit,
40-
version: "{{ OPENFOAM_VERSION }}"
41+
version: "{{ FRAMEWORK_VERSION }}"
4142
} end' /apps.json > /tmp/apps.json
4243
mv /tmp/apps.json /apps.json
4344

4445
%runscript
45-
/bin/bash -c 'cd /usr/lib/openfoam/openfoam{{ OPENFOAM_VERSION }} && source etc/bashrc && mkdir -p $FOAM_USER_LIBBIN && mkdir -p $FOAM_USER_APPBIN'
46+
/bin/bash -c 'cd /usr/lib/openfoam/openfoam{{ FRAMEWORK_VERSION }} && source etc/bashrc && mkdir -p $FOAM_USER_LIBBIN && mkdir -p $FOAM_USER_APPBIN'
4647
if [ $# -eq 0 ]; then
47-
/usr/bin/openfoam{{ OPENFOAM_VERSION }}
48+
/usr/bin/openfoam{{ FRAMEWORK_VERSION }}
4849
else
49-
/usr/bin/openfoam{{ OPENFOAM_VERSION }} $@
50+
/usr/bin/openfoam{{ FRAMEWORK_VERSION }} $@
5051
fi
5152

5253
%labels

basic/foam-extend.def

+20-18
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@
1010
#
1111
# ---------------------------------------------------------------------------
1212
Bootstrap: localimage
13-
From: containers/basic/ubuntu-{{ OS_VERSION }}-ompi-{{ OPENMPI_VERSION }}.sif
13+
From: containers/basic/{{ OS_DISTRO }}-{{ OS_VERSION }}-{{ MPI_IMPLEMENTATION }}-{{ MPI_VERSION }}.sif
1414

1515
%arguments
16+
OS_DISTRO=ubuntu
1617
OS_VERSION=24.04
17-
OPENMPI_VERSION=4.1.5
18-
OPENFOAM_VERSION=5.0
19-
OPENFOAM_GIT_REF=master
18+
MPI_IMPLEMENTATION=openmpi
19+
MPI_VERSION=4.1.5
20+
FRAMEWORK_VERSION=5.0
21+
FRAMEWORK_GIT_REF=master
2022

2123
%post
2224
DEBIAN_FRONTEND=noninteractive
@@ -26,38 +28,38 @@ From: containers/basic/ubuntu-{{ OS_VERSION }}-ompi-{{ OPENMPI_VERSION }}.sif
2628
python3 libpython3-dev libxt-dev rpm mercurial apt-utils\
2729
patch libmetis-dev libscotch-dev libparmetis-dev
2830
mkdir -p /opt/foam
29-
git clone --single-branch --branch {{ OPENFOAM_GIT_REF }} --depth 1 \
30-
git://git.code.sf.net/p/foam-extend/foam-extend-{{ OPENFOAM_VERSION }} \
31-
/opt/foam/foam-extend-{{ OPENFOAM_VERSION }}
32-
sed -i 's|^foamInstall.*|foamInstall=/opt/foam|' /opt/foam/foam-extend-{{ OPENFOAM_VERSION }}/etc/bashrc
31+
git clone --single-branch --branch {{ FRAMEWORK_GIT_REF }} --depth 1 \
32+
git://git.code.sf.net/p/foam-extend/foam-extend-{{ FRAMEWORK_VERSION }} \
33+
/opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}
34+
sed -i 's|^foamInstall.*|foamInstall=/opt/foam|' /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/etc/bashrc
3335
nProcs=$(nproc)
34-
/bin/bash -c "cd /opt/foam/foam-extend-{{ OPENFOAM_VERSION }} && source etc/bashrc && ./Allwmake.firstInstall -j $nProcs"
35-
rm -rf /opt/foam/foam-extend-{{ OPENFOAM_VERSION }}/tutorials/*
36-
OPENFOAM_COMMIT_HASH=$(git -C /opt/foam/foam-extend-{{ OF_VERSION }} rev-parse HEAD)
37-
jq --arg app openfoam --arg commit $OPENFOAM_COMMIT_HASH \
38-
--arg branch {{ OPENFOAM_GIT_REF }} \
36+
/bin/bash -c "cd /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }} && source etc/bashrc && ./Allwmake.firstInstall -j $nProcs"
37+
rm -rf /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/tutorials/*
38+
FRAMEWORK_COMMIT_HASH=$(git -C /opt/foam/foam-extend-{{ OF_VERSION }} rev-parse HEAD)
39+
jq --arg app openfoam --arg commit $FRAMEWORK_COMMIT_HASH \
40+
--arg branch {{ FRAMEWORK_GIT_REF }} \
3941
'.[$app] |= if . == null then
4042
{
4143
fork: "foam-extend",
4244
branch: $branch,
4345
commit: $commit,
44-
version: "{{ OPENFOAM_VERSION }}"
46+
version: "{{ FRAMEWORK_VERSION }}"
4547
}
4648
else . +
4749
{
4850
fork: "foam-extend",
4951
branch: $branch,
5052
commit: $commit,
51-
version: "{{ OPENFOAM_VERSION }}"
53+
version: "{{ FRAMEWORK_VERSION }}"
5254
} end' /apps.json > /tmp/apps.json
5355
mv /tmp/apps.json /apps.json
5456

5557
%runscript
56-
/bin/bash -c 'cd /opt/foam/foam-extend-{{ OPENFOAM_VERSION }} && source etc/bashrc && mkdir -p $FOAM_USER_LIBBIN && mkdir -p $FOAM_USER_APPBIN'
58+
/bin/bash -c 'cd /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }} && source etc/bashrc && mkdir -p $FOAM_USER_LIBBIN && mkdir -p $FOAM_USER_APPBIN'
5759
if [ $# -eq 0 ]; then
58-
/bin/bash -c "source /opt/foam/foam-extend-{{ OPENFOAM_VERSION }}/etc/bashrc && /bin/bash --login"
60+
/bin/bash -c "source /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/etc/bashrc && /bin/bash --login"
5961
else
60-
/bin/bash -c "source /opt/foam/foam-extend-{{ OPENFOAM_VERSION }}/etc/bashrc && $@"
62+
/bin/bash -c "source /opt/foam/foam-extend-{{ FRAMEWORK_VERSION }}/etc/bashrc && $@"
6163
fi
6264

6365
%labels

basic/lammps.def

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# ---------------------------------------------------------------------------
2+
#
3+
# Create Ubuntu-based LAMMPS image
4+
#
5+
# Build
6+
# apptainer build lpm.sif lammps.def
7+
#
8+
# Note
9+
# apptainer version 1.3.1
10+
#
11+
# ---------------------------------------------------------------------------
12+
Bootstrap: localimage
13+
From: containers/basic/{{ OS_DISTRO }}-{{ OS_VERSION }}-{{MPI_IMPLEMENTATION}}-{{ MPI_VERSION }}.sif
14+
15+
%arguments
16+
OS_DISTRO=ubuntu
17+
OS_VERSION=24.04
18+
MPI_IMPLEMENTATION=openmpi
19+
MPI_VERSION=4.1.5
20+
FRAMEWORK_VERSION=patch_27Jun2024
21+
FRAMEWORK_GIT_REF=patch_27Jun2024
22+
23+
%post
24+
DEBIAN_FRONTEND=noninteractive
25+
apt-get update
26+
apt-get -y install --no-install-recommends cmake
27+
git clone -b {{ FRAMEWORK_VERSION }} https://github.com/lammps/lammps.git /opt/lammps
28+
cd /opt/lammps
29+
commit=$(git rev-parse HEAD)
30+
mkdir build
31+
cd build
32+
cmake ../cmake
33+
cmake --build .
34+
make install PREFIX=/usr/local
35+
curl -o /etc/apt/trusted.gpg.d/openfoam.asc https://dl.openfoam.org/gpg.key
36+
jq --arg app lammps --arg commit $commit \
37+
--arg release {{ FRAMEWORK_GIT_REF }} \
38+
'.[$app] |= if . == null then
39+
{
40+
fork: "lammps",
41+
release: $release,
42+
commit: $commit,
43+
version: "{{ FRAMEWORK_VERSION }}"
44+
}
45+
else . +
46+
{
47+
fork: "lammps",
48+
release: $release,
49+
commit: $commit,
50+
version: "{{ FRAMEWORK_VERSION }}"
51+
} end' /apps.json > /tmp/apps.json
52+
mv /tmp/apps.json /apps.json
53+
54+
%environment
55+
export PATH="/usr/local/bin:${PATH}"
56+
export LD_LIBRARY_PATH="/usr/local/lib:${LD_LIBRARY_PATH}"
57+
58+
%runscript
59+
if [ $# -eq 0 ]; then
60+
/bin/bash -c "/bin/bash --login"
61+
else
62+
/bin/bash -c "$@"
63+
fi
64+
65+
%labels
66+
Maintainer Mohammed Elwardi Fadeli
67+
Description Ubuntu-based OpenFOAM (Foundation version) image with OpenMPI

basic/openmpi.def

+11-9
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,37 @@
1010
#
1111
# ---------------------------------------------------------------------------
1212
Bootstrap: docker
13-
From: ubuntu:{{ OS_VERSION }}
13+
From: {{ OS_DISTRO }}:{{ OS_VERSION }}
1414

1515
%arguments
16+
OS_DISTRO=ubuntu
1617
OS_VERSION=24.04
17-
OPENMPI_VERSION=4.1.5
18+
MPI_IMPLEMENTATION=openmpi
19+
MPI_VERSION=4.1.5
1820

1921
%post
2022
DEBIAN_FRONTEND=noninteractive
2123
apt-get update
2224
apt-get -y install --no-install-recommends \
2325
curl gcc g++ gfortran make file jq ca-certificates bzip2 git
24-
export OPENMPI_VERSION={{ OPENMPI_VERSION }}
25-
ompi_short=$(echo {{ OPENMPI_VERSION }} | cut -d '.' -f1-2)
26-
export OMPI_URL="https://download.open-mpi.org/release/open-mpi/v$ompi_short/openmpi-{{ OPENMPI_VERSION }}.tar.bz2"
26+
export MPI_VERSION={{ MPI_VERSION }}
27+
ompi_short=$(echo {{ MPI_VERSION }} | cut -d '.' -f1-2)
28+
export OMPI_URL="https://download.open-mpi.org/release/open-mpi/v$ompi_short/openmpi-{{ MPI_VERSION }}.tar.bz2"
2729
export OMPI_DIR=/opt/ompi
2830
mkdir -p $OMPI_DIR /tmp/ompi
29-
cd /tmp/ompi && curl -O $OMPI_URL && tar -xjf openmpi-$OPENMPI_VERSION.tar.bz2
30-
cd /tmp/ompi/openmpi-$OPENMPI_VERSION && ./configure --prefix=$OMPI_DIR && make -j$(nproc) install
31+
cd /tmp/ompi && curl -O $OMPI_URL && tar -xjf openmpi-$MPI_VERSION.tar.bz2
32+
cd /tmp/ompi/openmpi-$MPI_VERSION && ./configure --prefix=$OMPI_DIR && make -j$(nproc) install
3133
export PATH=$OMPI_DIR/bin:$PATH
3234
export LD_LIBRARY_PATH=$OMPI_DIR/lib:$LD_LIBRARY_PATH
3335
echo '{}' > /apps.json
3436
jq --arg app openmpi \
3537
'.[$app] |= if . == null then
3638
{
37-
version: "{{ OPENMPI_VERSION }}"
39+
version: "{{ MPI_VERSION }}"
3840
}
3941
else . +
4042
{
41-
version: "{{ OPENMPI_VERSION }}"
43+
version: "{{ MPI_VERSION }}"
4244
} end' /apps.json > /tmp/apps.json
4345
mv /tmp/apps.json /apps.json
4446

0 commit comments

Comments
 (0)