Skip to content

Commit 786df76

Browse files
authored
Merge pull request #16 from influxdata/devel
Refactor logic for platform creation and management, with a focus on efficiency. * influxdata.platform - Process full platform list on creation - Parallel creation of multiple platforms 🐰 - No additional data or loops needed in create.yml or destroy.yml - Refactor Molecule inventory generation - simplify host addition/removal logic * influxdata.docker_platform - Support parallel creation/deletion - Support much more complete subset of docker container options (IE: pull_policy) - Fix support for non-systemd entrypoint containers - Assumes that systemd packages are included in the image (by default) - Systemd process is lauched as PID 1 - Commands can be run pre-entrypoint in dockerfile (IE: dnf install -y sudo) * influxdata.ec2_platform - Support parallel creation/deletion - Fix #6 * influxdata.init - Update filesystem layout to support modern molecule/resources config - More modular support for platform types
2 parents 6b2f383 + 9b8d2f0 commit 786df76

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+1999
-1228
lines changed

.github/workflows/build.yml

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
---
2+
3+
name: Test and release branch
4+
on:
5+
push:
6+
branches:
7+
- main
8+
- devel
9+
pull_request:
10+
branches:
11+
- main
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
strategy:
16+
max-parallel: 4
17+
matrix:
18+
python-version: ["3.12"]
19+
molecule-scenario:
20+
- default
21+
- ec2_platform
22+
23+
steps:
24+
- uses: actions/checkout@v4
25+
26+
- name: Set up Python ${{ matrix.python-version }}
27+
uses: actions/setup-python@v5
28+
with:
29+
python-version: ${{ matrix.python-version }}
30+
31+
- name: Install dependencies
32+
run: |
33+
python3 -m pip install --upgrade pip
34+
pip install molecule ansible-lint requests boto3[crt]
35+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
36+
37+
- name: Build and install collection
38+
run: |
39+
ansible-galaxy collection build --force
40+
ansible-galaxy collection install --force *-molecule-*.tar.gz
41+
42+
- name: Log into AWS
43+
if: ${{ matrix.molecule-scenario == 'ec2_platform' }}
44+
uses: aws-actions/configure-aws-credentials@v4
45+
with:
46+
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
47+
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
48+
aws-region: us-east-2
49+
50+
- name: Test with molecule
51+
env:
52+
# Make molecule output colored content (easier to read via GH UI)
53+
PY_COLORS: 1
54+
ANSIBLE_FORCE_COLOR: 1
55+
run: |
56+
molecule test -s ${{ matrix.molecule-scenario }}
57+
58+
deploy:
59+
runs-on: ubuntu-latest
60+
needs: build
61+
if: github.event_name == 'push'
62+
steps:
63+
- uses: actions/checkout@v4
64+
65+
- name: Create and Push Tag
66+
env:
67+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
68+
run: |
69+
set -e
70+
TAG_NAME=${{ github.ref_name }}
71+
echo "Creating tag $TAG_NAME"
72+
# Configure Git user
73+
git config user.name "github-actions[bot]"
74+
git config user.email "github-actions[bot]@users.noreply.github.com"
75+
# Create the tag
76+
git tag "$TAG_NAME"
77+
# Push the tag to the repository
78+
git push origin "refs/tags/$TAG_NAME" --force
79+

.github/workflows/latest-devel.yml

-27
This file was deleted.

.github/workflows/latest.yml

-27
This file was deleted.

.github/workflows/main.yml

-36
This file was deleted.

.github/workflows/publish.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
3+
name: Deploy Collection
4+
on:
5+
release:
6+
types:
7+
- published
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
if: |
13+
github.event.release.prerelase == false
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Tag latest release
18+
uses: EndBug/latest-tag@latest
19+
with:
20+
ref: latest
21+
description: This tag is automatically generated on new releases.
22+
env:
23+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24+
25+
- name: Build and Deploy Collection
26+
uses: artis3n/ansible_galaxy_collection@v2
27+
if: ${{ secrets.GALAXY_API_KEY != '' }}
28+
with:
29+
api_key: '${{ secrets.GALAXY_API_KEY }}'
30+

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
influxdata-molecule-*.tar.gz
1+
*-molecule-*.tar.gz

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 InfluxData
3+
Copyright (c) 2025 InfluxData
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ When utilizing an image with systemd support (systemd packages are installed, et
1010

1111
# Table of Contents
1212

13-
- [Ansible Collection - syndr.molecule](#ansible-collection---syndrmolecule)
13+
- [Ansible Collection - influxdata.molecule](#ansible-collection---influxdatamolecule)
1414
- [What is Molecule?](#what-is-molecule)
1515
- [Using this collection](#using-this-collection)
1616
- [Host Requirements](#host-requirements)

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace: influxdata
88
name: molecule
99

1010
# The version of the collection. Must be compatible with semantic versioning
11-
version: 1.4.2
11+
version: 2.0.0
1212

1313
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1414
readme: README.md

molecule/default/molecule.yml

+23-10
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,36 @@ driver:
66
name: default
77
options:
88
managed: true
9-
login_cmd_template: 'docker exec -ti {instance} bash'
9+
login_cmd_template: 'docker exec -ti {instance} bash --login'
1010
platforms:
11-
- name: docker-rockylinux9
11+
- name: ansible-collection-molecule-docker-rockylinux9
1212
type: docker
1313
image: geerlingguy/docker-rockylinux9-ansible:latest
1414
systemd: True
15-
modify_image: False
1615
privileged: False
1716
hostvars:
1817
test_hostvar: test
19-
- name: docker-fedora39
18+
- name: ansible-collection-molecule-docker-rockylinux9-customized
2019
type: docker
21-
image: geerlingguy/docker-fedora39-ansible:latest
20+
image: rockylinux/rockylinux:9-ubi
2221
systemd: True
23-
modify_image: False
22+
exec_systemd: True
23+
exec_systemd_build_commands:
24+
- dnf install -y sudo
2425
privileged: False
2526
hostvars:
2627
test_hostvar: test
27-
- name: docker-ubuntu2204
28+
- name: ansible-collection-molecule-docker-fedora41
29+
type: docker
30+
image: geerlingguy/docker-fedora41-ansible:latest
31+
systemd: True
32+
privileged: False
33+
hostvars:
34+
test_hostvar: test
35+
- name: ansible-collection-molecule-docker-ubuntu2204
2836
type: docker
2937
image: geerlingguy/docker-ubuntu2204-ansible:latest
3038
systemd: True
31-
modify_image: False
3239
privileged: False
3340
hostvars:
3441
test_hostvar: test
@@ -38,7 +45,7 @@ provisioner:
3845
playbooks:
3946
create: ../resources/create.yml
4047
prepare: ../resources/prepare.yml
41-
converge: converge.yml
48+
converge: ../resources/converge.yml
4249
side_effect: ../resources/side_effect.yml
4350
verify: ../resources/verify.yml
4451
cleanup: ../resources/cleanup.yml
@@ -47,11 +54,17 @@ provisioner:
4754
defaults:
4855
gathering: explicit
4956
verbosity: ${ANSIBLE_VERBOSITY:-0}
57+
env:
58+
ARA_API_CLIENT: ${ARA_API_CLIENT:-'http'}
59+
ARA_API_SERVER: ${ARA_API_SERVER:-'http://localhost:8000'}
60+
ARA_DEFAULT_LABELS: ${ARA_DEFAULT_LABELS:-'testing,molecule'}
61+
# To use Ara with molecule:
62+
# export the ANSIBLE_CALLBACK_PLUGINS env var with the output of 'python3 -m ara.setup.callback_plugins'
63+
ANSIBLE_CALLBACK_PLUGINS: ${ANSIBLE_CALLBACK_PLUGINS}
5064
scenario:
5165
create_sequence:
5266
- dependency
5367
- create
54-
- prepare
5568
check_sequence:
5669
- dependency
5770
- cleanup

molecule/ec2_platform/converge.yml

-52
This file was deleted.

0 commit comments

Comments
 (0)