No description
Find a file
Mark van Huijstee 26847a99fe
Merge pull request #14 from de-it-krachten/dev
Update supported platforms & CI (2026-03-14)
2026-03-15 12:35:26 +01:00
.github/workflows Update supported platforms & CI 2026-03-14 19:14:29 +01:00
defaults fix: Use /etc/apt/trusted.gpg.d 2026-02-12 23:24:56 +01:00
meta Update CI & documentation 2026-02-13 15:23:04 +01:00
molecule/default Update supported platforms & CI 2026-03-14 14:30:00 +01:00
tasks Update CI & documentation 2026-02-13 15:23:04 +01:00
.ansible-lint Initial code w/ Ubuntu support only 2024-02-29 22:07:52 +01:00
.cicd Update CI 2026-03-06 20:48:47 +01:00
.cicd.overwrite Update CI 2026-03-06 20:48:47 +01:00
.collections Initial code w/ Ubuntu support only 2024-02-29 22:07:52 +01:00
.gitignore feat: Update supported platforms & CI 2024-12-29 01:06:45 +01:00
.releaserc.yml Update CI & documentation 2026-02-13 15:23:04 +01:00
.roles Initial code w/ Ubuntu support only 2024-02-29 22:07:52 +01:00
.yamllint feat: Update supported platforms & CI 2024-12-29 01:06:45 +01:00
CHANGELOG.md chore(release): 1.3.1 [skip ci] 2026-02-13 14:34:08 +00:00
README.md Update CI & documentation 2026-02-13 15:23:04 +01:00

CI

ansible-role-apptainer

Installs apptainer (fka singularity)

Dependencies

Roles

None

Collections

None

Platforms

Supported platforms

  • Red Hat Enterprise Linux 81
  • Red Hat Enterprise Linux 91
  • Red Hat Enterprise Linux 101
  • RockyLinux 8
  • RockyLinux 9
  • RockyLinux 10
  • OracleLinux 8
  • OracleLinux 9
  • OracleLinux 10
  • AlmaLinux 8
  • AlmaLinux 9
  • AlmaLinux 10
  • Ubuntu 22.04 LTS
  • Ubuntu 24.04 LTS
  • Fedora 42
  • Fedora 43

Note: 1 : no automated testing is performed on these platforms

Role Variables

defaults/main.yml



defaults/family-RedHat.yml


# List of RPM packages
apptainer_packages:
  - apptainer

defaults/Ubuntu.yml


# APT repository location
apptainer_apt_url: https://ppa.launchpadcontent.net/apptainer/ppa/ubuntu

# APT signing key
apptainer_apt_key: "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xf6b0f5193d4f3301ef491ff0afe36534fc6218ae"

# APT signing key
apptainer_apt_keyfile: /etc/apt/trusted.gpg.d/apptainer-ubuntu-ppa.gpg

# List of APT packages
apptainer_packages:
  - apptainer

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'apptainer'
  hosts: all
  become: 'yes'
  tasks:
    - name: Include role 'apptainer'
      ansible.builtin.include_role:
        name: apptainer