Skip to content

Commit 6b2f383

Browse files
authored
Potato platform support (#10)
* Include a 'Name' tag when creating security groups, as this can be used in IAM policy filtering. * Build 'latest-devel' tag off of the 'devel' branch * Add potato_platform role that will create InfluxDB Enterprise clusters for use in Molecule test scenarios, using the "Potato" orchestration application. * Init default and templating fixes, reorganize tests * Support mapping ec2 tags to hostvars for potato_platform role * Retry ec2_instance SSH connectivity check on connection reset
1 parent f3a0da8 commit 6b2f383

Some content is hidden

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

60 files changed

+1413
-372
lines changed

.github/workflows/latest-devel.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
3+
name: Update `latest-devel` tag
4+
on:
5+
push:
6+
branches:
7+
- devel
8+
9+
jobs:
10+
run:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
packages: write
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Run latest-tag
20+
uses: EndBug/latest-tag@latest
21+
with:
22+
ref: latest-devel
23+
description: This tag is automatically generated on new releases.
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26+
27+

galaxy.yml

Lines changed: 1 addition & 1 deletion
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-dev
11+
version: 1.4.2
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/collections.yml

Lines changed: 0 additions & 9 deletions
This file was deleted.

molecule/default/collections.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/collections.yml

molecule/default/create.yml

Lines changed: 0 additions & 57 deletions
This file was deleted.

molecule/default/molecule.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,13 @@ provisioner:
3636
name: ansible
3737
log: True
3838
playbooks:
39-
prepare: prepare.yml
39+
create: ../resources/create.yml
40+
prepare: ../resources/prepare.yml
4041
converge: converge.yml
41-
side_effect: side_effect.yml
42-
verify: verify.yml
43-
cleanup: cleanup.yml
42+
side_effect: ../resources/side_effect.yml
43+
verify: ../resources/verify.yml
44+
cleanup: ../resources/cleanup.yml
45+
destroy: ../resources/destroy.yml
4446
config_options:
4547
defaults:
4648
gathering: explicit

molecule/default/requirements.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

molecule/default/requirements.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/requirements.yml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/collections.yml

roles/ec2_platform/molecule/role-ec2_platform/converge.yml renamed to molecule/ec2_platform/converge.yml

File renamed without changes.

0 commit comments

Comments
 (0)