Skip to content

Commit 37a7d39

Browse files
authored
Platform support for Potato orchestrator (#9)
* 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 * Reorganize tests
1 parent 2159529 commit 37a7d39

Some content is hidden

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

56 files changed

+1317
-371
lines changed

molecule/default/collections.yml

-9
This file was deleted.

molecule/default/collections.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/collections.yml

molecule/default/create.yml

-57
This file was deleted.

molecule/default/molecule.yml

+6-4
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

-4
This file was deleted.

molecule/default/requirements.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/requirements.yml

molecule/ec2_platform/collections.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/collections.yml

roles/ec2_platform/molecule/role-ec2_platform/molecule.yml molecule/ec2_platform/molecule.yml

+11-8
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,24 @@ driver:
99
platforms:
1010
- name: ec2-rockylinux9
1111
type: ec2
12-
image: ami-067daee80a6d36ac0
13-
region: us-east-2
14-
vpc_id: vpc-0eb9fd1391f4207ec
15-
vpc_subnet_id: subnet-0aa189c0d6fc53923
12+
image: ami-093bd987f8e53e1f2
13+
region: us-west-2
14+
vpc_id: vpc-07bd460b98a3fb162
15+
vpc_subnet_id: subnet-0725b4ef4d069f1bf
1616
instance_type: t3.micro
17-
hostvars: {}
17+
hostvars:
18+
test_hostvar: test
1819
provisioner:
1920
name: ansible
2021
log: True
2122
playbooks:
23+
create: ../resources/create.yml
2224
prepare: prepare.yml
2325
converge: converge.yml
24-
side_effect: side_effect.yml
25-
verify: verify.yml
26-
cleanup: cleanup.yml
26+
side_effect: ../resourcs/side_effect.yml
27+
verify: ../resources/verify.yml
28+
cleanup: ../resources/cleanup.yml
29+
destroy: ../resources/destroy.yml
2730
config_options:
2831
defaults:
2932
gathering: explicit

roles/ec2_platform/molecule/role-ec2_platform/prepare.yml molecule/ec2_platform/prepare.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
tasks:
77
- name: Configure for standalone role testing
88
ansible.builtin.include_role:
9-
name: syndr.molecule.prepare_controller
9+
name: influxdata.molecule.prepare_controller
1010
vars:
11-
prepare_controller_project_type: role
11+
prepare_controller_project_type: collection
1212

1313
- name: Prepare target host for execution
1414
hosts: molecule
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/requirements.yml
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/collections.yml

molecule/potato_platform/converge.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
# Verify that the target code runs successfullly.
3+
# Note that this playbook (converge.yml) must be idempotent!
4+
5+
# Check that the molecule inventory is correctly configured
6+
- name: Fail if molecule group is missing
7+
hosts: localhost
8+
tasks:
9+
- name: Print host inventory groups
10+
ansible.builtin.debug:
11+
msg: "{{ groups }}"
12+
13+
- name: Assert group existence
14+
ansible.builtin.assert:
15+
that: "'molecule' in groups"
16+
fail_msg: |
17+
molecule group was not found inside inventory groups: {{ groups }}
18+
19+
- name: Converge
20+
hosts: molecule
21+
tasks:
22+
# All we're doing for now is making sure that the provsioner works, and that we can access the hosts.
23+
24+
- name: Check uname
25+
ansible.builtin.raw: uname -a
26+
register: result
27+
changed_when: false
28+
29+
- name: Verify kernel type
30+
ansible.builtin.assert:
31+
that: result.stdout | regex_search("^Linux")
32+

molecule/potato_platform/init.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
# Initialize a Molecule scenario for use within a role
3+
4+
- name: Provision file structure
5+
hosts: localhost
6+
tasks:
7+
- name: Launch provisioner
8+
ansible.builtin.include_role:
9+
name: influxdata.molecule.init
10+
vars:
11+
# Supported platform types are: docker, ec2, potato
12+
init_platform_type: potato
13+
# Supported collection sources are: git, galaxy
14+
init_collection_source: galaxy
15+
# Version of this collection that should be used by the Molecule test
16+
# - Set to "" to attempt to use the running version
17+
init_collection_version: ""
18+
init_platforms:
19+
- name: potato-platform-test
20+
type: potato
21+
config:
22+
potato_address: https://potato.a.influxcloud.us/v1/potato
23+
vpc_id: vpc-07bd460b98a3fb162
24+
influxdb_cluster_config:
25+
username: test-ci-admin
26+
password: ku4kQePLTI6RBYtq0KuY
27+
init: latest
28+
config_tag: 1.11.6.1-staging-pro
29+

molecule/potato_platform/molecule.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
role_name_check: 0
3+
dependency:
4+
name: galaxy
5+
driver:
6+
name: default
7+
options:
8+
managed: true
9+
platforms:
10+
- name: potato-platform-test
11+
type: potato
12+
vpc_id: vpc-07bd460b98a3fb162
13+
region: us-west-2
14+
potato_address: https://potato.a.influxcloud.us
15+
private_key_source_path: /home/[email protected]/.ssh/cloud1-dev-potato
16+
ssh_user: core
17+
ssh_port: 22
18+
influxdb_cluster_cfg:
19+
config_tag: 1.11.6.1-staging-pro
20+
init: latest
21+
password: ku4kQePLTI6RBYtq0KuY
22+
username: test-ci-admin
23+
ignore_potato_machines_status: true
24+
creation_timeout: 240
25+
hostvars: {}
26+
provisioner:
27+
name: ansible
28+
log: True
29+
playbooks:
30+
create: ../resources/create.yml
31+
prepare: prepare.yml
32+
converge: converge.yml
33+
side_effect: ../resourcs/side_effect.yml
34+
verify: verify.yml
35+
cleanup: ../resources/cleanup.yml
36+
destroy: ../resources/destroy.yml
37+
config_options:
38+
defaults:
39+
gathering: explicit
40+
playbook_vars_root: top
41+
verbosity: ${ANSIBLE_VERBOSITY:-0}
42+
scenario:
43+
create_sequence:
44+
- dependency
45+
- create
46+
- prepare
47+
check_sequence:
48+
- dependency
49+
- cleanup
50+
- destroy
51+
- create
52+
- prepare
53+
- converge
54+
- check
55+
- destroy
56+
converge_sequence:
57+
- dependency
58+
- create
59+
- prepare
60+
- converge
61+
destroy_sequence:
62+
- dependency
63+
- cleanup
64+
- destroy
65+
test_sequence:
66+
- dependency
67+
- cleanup
68+
- destroy
69+
- syntax
70+
- create
71+
- prepare
72+
- converge
73+
- idempotence
74+
- side_effect
75+
- verify
76+
- cleanup
77+
- destroy
78+
verifier:
79+
name: ansible
80+
enabled: true
81+

molecule/potato_platform/prepare.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
3+
- name: Prepare controller for execution
4+
hosts: localhost
5+
tags: always
6+
tasks:
7+
- name: Configure for standalone role testing
8+
ansible.builtin.include_role:
9+
name: influxdata.molecule.prepare_controller
10+
vars:
11+
prepare_controller_project_type: collection
12+
13+
- name: Prepare target host for execution
14+
hosts: molecule
15+
tags: always
16+
tasks:
17+
# This test is just making sure that the target host is up and running (and accessible)
18+
# This should mean that the provisioner worked
19+
20+
- name: Check uname
21+
ansible.builtin.raw: uname -a
22+
register: result
23+
changed_when: false
24+
25+
- name: Display uname info
26+
ansible.builtin.debug:
27+
msg: "{{ result.stdout }}"
28+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../resources/requirements.yml

molecule/potato_platform/verify.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
# Verify that the role being tested has done what it's supposed to
3+
4+
- name: Verify
5+
hosts: molecule
6+
tasks:
7+
- name: "TODO: Add verify tasks"
8+
ansible.builtin.debug:
9+
msg: "IE: Check potato cluster status, etc."
10+
File renamed without changes.

molecule/resources/collections.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
3+
collections:
4+
- name: community.general
5+
- name: community.docker
6+
#- name: git+https://github.com/influxdata/ansible-collection-molecule.git
7+
# type: git
8+
# version: latest
9+
- name: influxdata.molecule
10+
version: 1.4.2-dev
11+

0 commit comments

Comments
 (0)