No description
Find a file
semantic-release-bot 8cb3aa595e chore(release): 1.2.1 [skip ci]
## [1.2.1](https://github.com/de-it-krachten/ansible-role-cicd/compare/v1.2.0...v1.2.1) (2026-07-27)

### Bug Fixes

* Workaround for RPM installation ([fb4645f](fb4645f651))
2026-07-27 14:22:54 +00:00
.github/workflows Update CI 2026-07-23 13:48:23 +02:00
defaults fix: Add missing dependencies 2026-06-01 15:09:51 +02:00
meta Update CI 2026-06-04 12:38:37 +02:00
molecule/default Update CI 2026-07-25 17:10:12 +02:00
tasks fix: Workaround for RPM installation 2026-07-27 12:59:02 +02:00
.ansible-lint feat: Initial release 2025-09-02 12:28:05 +02:00
.cicd Update CI 2026-06-09 10:47:06 +02:00
.cicd.overwrite Update CI 2026-03-14 19:23:42 +01:00
.collections feat: Move scripts to separate DEB/RPM package 2025-10-13 22:36:39 +02:00
.gitignore feat: Initial release 2025-09-02 12:28:05 +02:00
.releaserc.yml feat: Initial release 2025-09-02 12:28:05 +02:00
.roles feat: Initial release 2025-09-02 12:28:05 +02:00
.yamllint feat: Initial release 2025-09-02 12:28:05 +02:00
CHANGELOG.md chore(release): 1.2.1 [skip ci] 2026-07-27 14:22:54 +00:00
README.md Update CI 2026-06-04 12:38:37 +02:00

CI

ansible-role-cicd

Set of scripts to help setup CI/CD

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
  • Debian 12 (Bookworm)
  • Debian 13 (Trixie)
  • 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


# url - repo
cicd_repo: https://github.com/de-it-krachten/cicd-tools

# url - api
cicd_api: https://api.github.com/repos/de-it-krachten/cicd-tools

# Version to install
cicd_version: latest

# Package dependencies
cicd_dependency_packages:
  - jq
  - git

# Packages
cicd_package_deb: "cicd-tools_{{ cicd_version | regex_replace('^v') }}.deb"
cicd_package_rpm: "cicd-tools-{{ cicd_version | regex_replace('^v') }}-1.noarch.rpm"

Example Playbook

molecule/default/converge.yml


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