No description
Find a file
Mark van Huijstee d56481d12d
Merge pull request #20 from de-it-krachten/dev
Update supported platforms & CI (2026-07-23)
2026-07-26 21:50:10 +02:00
.github/workflows Update CI 2026-07-22 22:55:23 +02:00
defaults fix: Use /etc/apt/trusted.gpg.d 2026-02-12 23:24:56 +01:00
meta Update CI 2026-06-07 16:38:25 +02:00
molecule/default Update CI 2026-07-25 16:12:37 +02:00
tasks feat: Add support for ansible-core 2.20+ 2026-06-07 16:24:19 +02:00
.ansible-lint Update CI 2026-06-07 16:38:25 +02:00
.cicd Update CI 2026-06-09 10:39:28 +02: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.4.0 [skip ci] 2026-07-23 17:53:03 +00:00
README.md Update CI 2026-06-07 16:38:25 +02: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
  • Ubuntu 26.04 LTS
  • Fedora 43
  • Fedora 441

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