mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-08-29 20:13:13 +00:00
Scenarios install their Galaxy dependencies with `force: true`, so two roles running at once re-extract the same collections and roles into ~/.ansible and pull them out from under each other mid-play. It surfaces as a collection that was working moments earlier going missing: the connection plugin 'community.docker.docker' was not found Found while running five scenarios in parallel, where it cost a run. ANSIBLE_HOME relocates both `collections/` and `roles/`, so one variable covers both halves; the scenarios' ANSIBLE_ROLES_PATH workaround now follows it rather than hardcoding ~/.ansible/roles. Left alone if already set, and unset in CI, where each role runs in its own job and has nothing to collide with. Verified by removing var/molecule-ansible-home entirely and running matrix-alertmanager-receiver from cold: green through idempotence, with the collections and roles landing under the per-role directory - which also shows nothing was quietly relying on the shared ~/.ansible being populated. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01SEH3vxYSQ5SV4N5z61eyGT
78 lines
3.1 KiB
YAML
78 lines
3.1 KiB
YAML
# SPDX-FileCopyrightText: 2026 Slavi Pantaleev
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
dependency:
|
|
name: galaxy
|
|
options:
|
|
requirements-file: requirements.yml
|
|
force: true
|
|
driver:
|
|
name: docker
|
|
platforms:
|
|
- name: matrix-alertmanager-receiver-${MOLECULE_DISTRO:-ubuntu2604}-default
|
|
image: "geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2604}-ansible:latest"
|
|
command: ${MOLECULE_DOCKER_COMMAND:-""}
|
|
volumes:
|
|
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
|
cgroupns_mode: host
|
|
privileged: true
|
|
pre_build_image: true
|
|
provisioner:
|
|
name: ansible
|
|
config_options:
|
|
defaults:
|
|
callback_result_format: yaml
|
|
inventory:
|
|
group_vars:
|
|
all:
|
|
matrix_alertmanager_receiver_hostname: alertmanager-receiver.molecule.local
|
|
matrix_alertmanager_receiver_path_prefix: /
|
|
matrix_alertmanager_receiver_container_network: matrix-alertmanager-receiver-molecule
|
|
|
|
# verify.yml runs as its own play, where the role's defaults are out
|
|
# of scope, so the paths it reads are pinned here as literals. They
|
|
# match what the role derives from matrix_base_data_path above.
|
|
matrix_alertmanager_receiver_base_path: /matrix/alertmanager-receiver
|
|
matrix_alertmanager_receiver_config_path: /matrix/alertmanager-receiver/config
|
|
|
|
# Traefik is not deployed in this scenario, so the labels the role would
|
|
# render for it are switched off and their absence is asserted instead.
|
|
matrix_alertmanager_receiver_container_labels_traefik_enabled: false
|
|
|
|
# Deliberately different from the role's own defaults (port 12345,
|
|
# metrics disabled, alerts under /alerts), so that `verify.yml` can tell
|
|
# what the role rendered apart from what the application would have done
|
|
# on its own.
|
|
matrix_alertmanager_receiver_config_http_port: 12399
|
|
matrix_alertmanager_receiver_config_http_metrics_enabled: true
|
|
matrix_alertmanager_receiver_config_http_metrics_path: /molecule-metrics
|
|
matrix_alertmanager_receiver_config_http_alerts_path_prefix: /molecule-alerts
|
|
|
|
# The homeserver IS reached at startup - the service fetches its joined
|
|
# rooms and exits 1 if that fails - so prepare.yml stands up a stub for it
|
|
matrix_alertmanager_receiver_config_matrix_homeserver_url: http://matrix.molecule.local:8008
|
|
matrix_alertmanager_receiver_config_matrix_user_id: "@alertmanager:molecule.local"
|
|
matrix_alertmanager_receiver_config_matrix_access_token: molecule_access_token_4f2a91
|
|
matrix_alertmanager_receiver_config_matrix_room_mapping:
|
|
molecule-room: "!molecule-room-id:molecule.local"
|
|
env:
|
|
# Workaround for https://github.com/ansible/molecule/issues/4391
|
|
ANSIBLE_ROLES_PATH: ${MOLECULE_PROJECT_DIRECTORY}/../..:/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:${ANSIBLE_HOME:-~/.ansible}/roles
|
|
scenario:
|
|
test_sequence:
|
|
- dependency
|
|
- cleanup
|
|
- destroy
|
|
- syntax
|
|
- create
|
|
- prepare
|
|
- converge
|
|
- idempotence
|
|
- verify
|
|
- cleanup
|
|
- destroy
|
|
verifier:
|
|
name: ansible
|