Skip to content

Commit 1f7c827

Browse files
authored
Fix custom hostvars, error handling, version template (#5)
* Fix issue with user-defined hostvars not being saved to host inventory file * Fix issue with incorrect version tag being applied to new project collections template * Fix checks showing error on expected states where existing configuration does not exist
1 parent ee360bc commit 1f7c827

File tree

5 files changed

+35
-32
lines changed

5 files changed

+35
-32
lines changed

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.0
11+
version: 1.4.1
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

+6-3
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,24 @@ platforms:
1414
systemd: True
1515
modify_image: False
1616
privileged: False
17-
hostvars: {}
17+
hostvars:
18+
test_hostvar: test
1819
- name: docker-fedora39
1920
type: docker
2021
image: geerlingguy/docker-fedora39-ansible:latest
2122
systemd: True
2223
modify_image: False
2324
privileged: False
24-
hostvars: {}
25+
hostvars:
26+
test_hostvar: test
2527
- name: docker-ubuntu2204
2628
type: docker
2729
image: geerlingguy/docker-ubuntu2204-ansible:latest
2830
systemd: True
2931
modify_image: False
3032
privileged: False
31-
hostvars: {}
33+
hostvars:
34+
test_hostvar: test
3235
provisioner:
3336
name: ansible
3437
log: True

molecule/default/verify.yml

+6-14
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,10 @@
44
- name: Verify
55
hosts: molecule
66
tasks:
7-
- name: Load local host facts
8-
ansible.builtin.setup:
9-
gather_subset:
10-
- '!all'
11-
- '!min'
12-
- local
13-
14-
- name: Load test data (example)
15-
ansible.builtin.set_fact:
16-
test_prepare_fact: "{{ ansible_local.molecule.test_prepare_fact }}"
17-
18-
- name: Add your verification tasks here
19-
ansible.builtin.debug:
20-
msg: "IE: For a 'users' role, check that the test user exists"
7+
- name: Test hostvar exists
8+
ansible.builtin.assert:
9+
that:
10+
- test_hostvar == "test"
11+
fail_msg: "Custom hostvar not found! Possible issue with storing user-defined hostvars!"
12+
success_msg: "Custom hostvar found!"
2113

roles/init/templates/collections.yml.j2

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ collections:
55
{% if init_collection_source == 'git' %}
66
- name: git+{{ __init_collection_repository }}.git
77
type: git
8+
version: v{{ init_collection_version }}
89
{% elif init_collection_source == 'galaxy' %}
910
- name: {{ __init_collection_namespace }}.{{ __init_collection_name }}
10-
{% endif %}
1111
version: {{ init_collection_version }}
12+
{% endif %}
1213

roles/platform/tasks/inventory.yml

+20-13
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
ansible.builtin.slurp:
88
src: "{{ platform_molecule_ephemeral_directory }}/instance_config.yml"
99
register: __platform_current_instance_config_b64
10-
ignore_errors: true
10+
failed_when: false
1111

1212
- name: Decode instance configuration data
1313
ansible.builtin.set_fact:
@@ -54,15 +54,32 @@
5454
fail_msg: "Instance configuration for {{ platform_name }} failed! Check the platform configuration."
5555
success_msg: "Instance configuration for {{ platform_name }} is defined"
5656

57+
- name: Add user-specified hostvars to instance configuration
58+
when:
59+
- platform_molecule_cfg.hostvars is defined
60+
- platform_molecule_cfg.hostvars is truthy
61+
ansible.builtin.set_fact:
62+
__platform_ansible_hostvars: "{{ __platform_ansible_hostvars | combine(platform_molecule_cfg.hostvars, recursive=true) }}"
63+
5764
- name: 🪲 Current instance config
5865
ansible.builtin.debug:
5966
var: __platform_current_instance_config
6067
verbosity: 1
6168

69+
- name: 🪲 New instance config
70+
ansible.builtin.debug:
71+
var: __platform_new_instance_config
72+
verbosity: 1
73+
74+
- name: 🪲 Ansible hostvars
75+
ansible.builtin.debug:
76+
var: __platform_ansible_hostvars
77+
verbosity: 1
78+
6279
- name: Instance name matching this already exists in configuration
6380
when:
6481
- __platform_current_instance_config is truthy
65-
- platform_name in __platform_current_instance_config | map(attribute='instance') | list
82+
- platform_name in __platform_current_instance_config | map(attribute='instance') | list
6683
block:
6784
- name: Mark config update as unneeded
6885
ansible.builtin.set_fact:
@@ -89,16 +106,6 @@
89106
__platform_current_instance_config | rejectattr('instance', 'equalto', platform_name) | list }}"
90107
__platform_instance_config_update_needed: true
91108

92-
- name: dump new instance config
93-
ansible.builtin.debug:
94-
var: __platform_new_instance_config
95-
ignore_errors: true
96-
97-
- name: dump current instance config
98-
ansible.builtin.debug:
99-
var: __platform_current_instance_config
100-
ignore_errors: true
101-
102109
- name: Write {{ platform_name }} instance config file
103110
when:
104111
- __platform_instance_config_update_needed
@@ -130,7 +137,7 @@
130137
ansible.builtin.slurp:
131138
src: "{{ platform_molecule_ephemeral_directory }}/inventory/molecule_inventory.yml"
132139
register: __platform_current_molecule_inventory_b64
133-
ignore_errors: true
140+
failed_when: false
134141

135142
- name: Decode instance configuration data
136143
ansible.builtin.set_fact:

0 commit comments

Comments
 (0)