1
- # Build apptainer containers for OpenFOAM-based projects
1
+ # Build apptainer containers for your projects
2
2
3
3
<p align =" center " >
4
4
<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
<img alt =" Foam Extend " src =" https://img.shields.io/badge/Foam_Extend-teal?style=for-the-badge " >
8
8
</p >
9
9
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)
11
11
using ` apptainer ` .
12
12
13
13
> [ !NOTE]
@@ -24,11 +24,18 @@ using `apptainer`.
24
24
25
25
Automated workflows to:
26
26
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
28
28
- Build project-specific containers that inherit from a target base container
29
29
- OpenMPI is a first-class citizen: ` mpirun -n 16 apptainer run container.sif "solver -parallel" `
30
30
should 'just work'.
31
31
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
+
32
39
## Quick Instructions
33
40
34
41
``` bash
@@ -40,23 +47,24 @@ ansible-playbook build.yaml --extra-vars "original_dir=$PWD" --extra-vars "@conf
40
47
41
48
> [ !TIP]
42
49
> ` 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.
44
52
45
53
The ansible command (by default) will:
46
54
- Create the following tree in the current working folder:
47
55
```
48
56
containers/
49
57
├── basic
50
58
│ ├── opencfd-openfoam.sif
51
- │ └── ubuntu-24.04-ompi -4.1.5.sif
59
+ │ └── ubuntu-24.04-openmpi -4.1.5.sif
52
60
└── projects
53
61
└── test-master.sif
54
62
```
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
57
65
- Build a base (OpenCFD) OpenFOAM container ` containers/basic/opencfd-openfoam.sif ` , or
58
66
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
60
68
61
69
Check the [ docs.md] ( docs.md ) for details on how the configuration file
62
70
is expected to be structured.
@@ -69,22 +77,22 @@ sequenceDiagram
69
77
participant GHCR
70
78
participant Docker Hub
71
79
participant Local Build
72
- participant OpenMPI Container
73
- participant OpenFOAM Container
80
+ participant MPI Container
81
+ participant Framework Container
74
82
participant Project Container
75
83
76
84
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
79
87
Ansible Playbook->>Docker Hub: Pull Ubuntu image
80
88
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
88
96
Local Build-->>Project Container: Project Container created
89
97
Project Container-->>User: Container ready for use
90
98
```
0 commit comments