No description
Find a file
semantic-release-bot c9ec45ff32 chore(release): 1.0.0 [skip ci]
# 1.0.0 (2026-03-15)

### Features

* Initial release ([2b96e96](2b96e961d9))
2026-03-15 16:25:11 +00:00
.github/workflows feat: Initial release 2026-03-15 15:17:36 +01:00
defaults feat: Initial release 2026-03-15 15:17:36 +01:00
meta feat: Initial release 2026-03-15 15:17:36 +01:00
molecule/default feat: Initial release 2026-03-15 15:17:36 +01:00
tasks feat: Initial release 2026-03-15 15:17:36 +01:00
.ansible-lint feat: Initial release 2026-03-15 15:17:36 +01:00
.cicd feat: Initial release 2026-03-15 15:17:36 +01:00
.cicd.overwrite feat: Initial release 2026-03-15 15:17:36 +01:00
.collections feat: Initial release 2026-03-15 15:17:36 +01:00
.gitignore feat: Initial release 2026-03-15 15:17:36 +01:00
.releaserc.yml feat: Initial release 2026-03-15 15:17:36 +01:00
.roles feat: Initial release 2026-03-15 15:17:36 +01:00
.yamllint feat: Initial release 2026-03-15 15:17:36 +01:00
CHANGELOG.md chore(release): 1.0.0 [skip ci] 2026-03-15 16:25:11 +00:00
README.md feat: Initial release 2026-03-15 15:17:36 +01:00

CI

ansible-role-awx_cli

Installs the AWX CLI aka awxkit

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 11 (Bullseye)
  • Debian 12 (Bookworm)
  • Debian 13 (Trixie)
  • Ubuntu 20.04 LTS
  • 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


# Awxkit / AWX cli version
awx_cli_version: 24.6.1

# List of pypi packages to install
awx_cli_packages:
  - "awxkit=={{ awx_cli_version }}"
  - "pyyaml"

# Virtual environment base packages
awx_cli_venv_base_packages:
  - pip
  - wheel
  - "setuptools<82"

# venv root
awx_cli_venv_path: /usr/local/venv/awxkit

# Python version to use
awx_cli_venv_python: /usr/bin/python3.11

Example Playbook

molecule/default/converge.yml


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