-
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.
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
- Loading branch information
Showing
11 changed files
with
239 additions
and
15 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 @@ | ||
manifests/manifest-tool |
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,15 @@ | ||
Intellectual Property Notice | ||
---------------------------- | ||
|
||
HPCIC DevTools is licensed under the MIT license (LICENSE). | ||
|
||
Copyrights and patents in this project are retained by | ||
contributors. No copyright assignment is required to contribute to | ||
HPCIC DevTools. | ||
|
||
SPDX usage | ||
------------ | ||
|
||
Individual files contain SPDX tags instead of the full license text. | ||
This enables machine processing of license information based on the SPDX | ||
License Identifiers that are available here: https://spdx.org/licenses/ |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022-2023 LLNS, LLC and other HPCIC DevTools Developers. | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,21 @@ | ||
This work was produced under the auspices of the U.S. Department of | ||
Energy by Lawrence Livermore National Laboratory under Contract | ||
DE-AC52-07NA27344. | ||
|
||
This work was prepared as an account of work sponsored by an agency of | ||
the United States Government. Neither the United States Government nor | ||
Lawrence Livermore National Security, LLC, nor any of their employees | ||
makes any warranty, expressed or implied, or assumes any legal liability | ||
or responsibility for the accuracy, completeness, or usefulness of any | ||
information, apparatus, product, or process disclosed, or represents that | ||
its use would not infringe privately owned rights. | ||
|
||
Reference herein to any specific commercial product, process, or service | ||
by trade name, trademark, manufacturer, or otherwise does not necessarily | ||
constitute or imply its endorsement, recommendation, or favoring by the | ||
United States Government or Lawrence Livermore National Security, LLC. | ||
|
||
The views and opinions of authors expressed herein do not necessarily | ||
state or reflect those of the United States Government or Lawrence | ||
Livermore National Security, LLC, and shall not be used for advertising | ||
or product endorsement purposes. |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Manifest Lists | ||
|
||
In order to emulate an actual pull -> choosing of a platform by a container runtime tool, we need to put the (currently separate tags for an image) in an image manifest list. We can do that with [manifest-tool](https://github.com/estesp/manifest-tool). After following the instructions to install it there, here is how to generate our manifests. | ||
|
||
```bash | ||
manifest-tool push from-spec ./openmpi-ubuntu-20.04.yaml | ||
manifest-tool push from-spec ./openmpi-ubuntu-22.04.yaml | ||
manifest-tool push from-spec ./mpich-ubuntu-20.04.yaml | ||
manifest-tool push from-spec ./mpich-ubuntu-22.04.yaml | ||
``` | ||
|
||
The first of those might make [this tag](https://github.com/rse-ops/lammps-matrix/pkgs/container/lammps-matrix/169857305?tag=openmpi-ubuntu) |
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,18 @@ | ||
image: ghcr.io/rse-ops/lammps-matrix:mpich-ubuntu | ||
tags: ["20.04"] | ||
manifests: | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:mpich-ubuntu-20.04-ppc64le | ||
platform: | ||
architecture: ppc64le | ||
os: linux | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:mpich-ubuntu-20.04-arm64 | ||
platform: | ||
architecture: arm64 | ||
os: linux | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:mpich-ubuntu-20.04-amd64 | ||
platform: | ||
architecture: amd64 | ||
os: linux |
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,18 @@ | ||
image: ghcr.io/rse-ops/lammps-matrix:mpich-ubuntu | ||
tags: ["22.04"] | ||
manifests: | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:mpich-ubuntu-22.04-ppc64le | ||
platform: | ||
architecture: ppc64le | ||
os: linux | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:mpich-ubuntu-22.04-arm64 | ||
platform: | ||
architecture: arm64 | ||
os: linux | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:mpich-ubuntu-22.04-amd64 | ||
platform: | ||
architecture: amd64 | ||
os: linux |
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,18 @@ | ||
image: ghcr.io/rse-ops/lammps-matrix:openmpi-ubuntu | ||
tags: ["20.04"] | ||
manifests: | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:openmpi-ubuntu-20.04-ppc64le | ||
platform: | ||
architecture: ppc64le | ||
os: linux | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:openmpi-ubuntu-20.04-arm64 | ||
platform: | ||
architecture: arm64 | ||
os: linux | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:openmpi-ubuntu-20.04-amd64 | ||
platform: | ||
architecture: amd64 | ||
os: linux |
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,18 @@ | ||
image: ghcr.io/rse-ops/lammps-matrix:openmpi-ubuntu | ||
tags: ["22.04"] | ||
manifests: | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:openmpi-ubuntu-22.04-ppc64le | ||
platform: | ||
architecture: ppc64le | ||
os: linux | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:openmpi-ubuntu-22.04-arm64 | ||
platform: | ||
architecture: arm64 | ||
os: linux | ||
- | ||
image: ghcr.io/rse-ops/lammps-matrix:openmpi-ubuntu-22.04-amd64 | ||
platform: | ||
architecture: amd64 | ||
os: linux |