Skip to content

Commit 60d80f2

Browse files
authored
Merge pull request #12 from Appsilon/feat/red-hat-support-CU-862j847m2
feat: add support for RHEL 8
2 parents 90d2fa2 + 0bba87e commit 60d80f2

File tree

19 files changed

+605
-12
lines changed

19 files changed

+605
-12
lines changed

.ansible-lint

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ exclude_paths:
55
- .github/
66
- .cache/
77
- molecule/default
8+
- molecule/aws-ec2
89
offline: false
910
use_default_rules: true
1011
parseable: true

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ jobs:
4444
include:
4545
- distro: ubuntu2004
4646
ansible-version: '>=2.11.5'
47+
- distro: rockylinux8
48+
ansible-version: '>=2.11.5'
4749

4850
steps:
4951
- name: Check out the codebase

.yamllint

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
# Based on ansible-lint config
3-
43
extends: default
54

65
rules:
@@ -32,7 +31,3 @@ rules:
3231
type: unix
3332
trailing-spaces: disable
3433
truthy: disable
35-
36-
ignore: |
37-
.tox/
38-
venv

meta/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ galaxy_info:
1111
- name: Ubuntu
1212
versions:
1313
- focal
14+
- name: EL
15+
versions:
16+
- "8"
1417
galaxy_tags:
1518
- development
1619
- system

molecule/aws-ec2/INSTALL.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
*********************************************
2+
Amazon Web Services driver installation guide
3+
*********************************************
4+
5+
Requirements
6+
============
7+
8+
* An AWS credentials rc file
9+
10+
Install
11+
=======
12+
13+
Please refer to the `Virtual environment`_ documentation for installation best
14+
practices. If not using a virtual environment, please consider passing the
15+
widely recommended `'--user' flag`_ when invoking ``pip``.
16+
17+
.. _Virtual environment: https://virtualenv.pypa.io/en/latest/
18+
.. _'--user' flag: https://packaging.python.org/tutorials/installing-packages/#installing-to-the-user-site
19+
20+
.. code-block:: bash
21+
22+
$ pip install 'molecule-ec2'

molecule/aws-ec2/converge.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
- name: Converge
3+
hosts: all
4+
become: true
5+
pre_tasks:
6+
- name: Include vars
7+
include_vars: "{{ playbook_dir }}/../../tests/vars/main.yml"
8+
tasks:
9+
- name: "Include ansible-python-install"
10+
include_role:
11+
name: "ansible-python-install"

0 commit comments

Comments
 (0)