Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

94 rivejä
4.2 KiB

  1. # SPDX-FileCopyrightText: 2026 Slavi Pantaleev
  2. #
  3. # SPDX-License-Identifier: AGPL-3.0-or-later
  4. ---
  5. dependency:
  6. name: galaxy
  7. options:
  8. requirements-file: requirements.yml
  9. force: true
  10. driver:
  11. name: docker
  12. platforms:
  13. - name: matrix-bot-baibot-${MOLECULE_DISTRO:-ubuntu2604}-default
  14. image: "geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2604}-ansible:latest"
  15. command: ${MOLECULE_DOCKER_COMMAND:-""}
  16. volumes:
  17. - /sys/fs/cgroup:/sys/fs/cgroup:rw
  18. cgroupns_mode: host
  19. privileged: true
  20. pre_build_image: true
  21. provisioner:
  22. name: ansible
  23. config_options:
  24. defaults:
  25. callback_result_format: yaml
  26. inventory:
  27. group_vars:
  28. all:
  29. matrix_bot_baibot_container_network: matrix-bot-baibot-molecule
  30. # verify.yml runs as its own play, where the role's defaults are out
  31. # of scope, so the paths it reads are pinned here as literals. They
  32. # match what the role derives from matrix_base_data_path.
  33. matrix_bot_baibot_base_path: /matrix/baibot
  34. matrix_bot_baibot_config_path: /matrix/baibot/config
  35. matrix_bot_baibot_data_path: /matrix/baibot/data
  36. # baibot is a plain Matrix client, not an appservice: it logs in with a
  37. # password and then syncs, so a homeserver has to answer for it to get
  38. # anywhere. prepare.yml stands up the shared stub for that.
  39. matrix_bot_baibot_config_homeserver_url: http://matrix.molecule.local:8008
  40. # Deliberately different from the role's defaults (localpart `baibot`,
  41. # name `baibot`, prefix `!bai`, self-introduction on) AND from baibot's
  42. # own built-in defaults, so that a passing assertion cannot be explained
  43. # by "it would have happened anyway".
  44. matrix_bot_baibot_config_user_mxid_localpart: molecule-baibot
  45. matrix_bot_baibot_config_user_name: Molecule baibot
  46. matrix_bot_baibot_config_user_password: molecule_baibot_password_5b7c14
  47. matrix_bot_baibot_config_command_prefix: "!molecule-bai"
  48. matrix_bot_baibot_config_room_post_join_self_introduction_enabled: false
  49. matrix_bot_baibot_config_access_admin_patterns:
  50. - "@molecule-admin:molecule.local"
  51. # `debug` rather than the role's `info`, so the journal carries what the
  52. # bot loaded. verify.yml reads it.
  53. matrix_bot_baibot_config_logging_level_baibot: debug
  54. # baibot talks to AI providers, and a scenario must not need a provider
  55. # account. It does not have to: providers are contacted only when a
  56. # message asks an agent to do something, never at startup. So a static
  57. # agent is defined with a placeholder key and a base URL that resolves
  58. # nowhere. Nothing is ever called, and the agent still has to survive
  59. # baibot's startup parsing of `agents.static_definitions` - which is
  60. # what proves the role's provider templating produced something the bot
  61. # accepts.
  62. matrix_bot_baibot_config_agents_static_definitions_anthropic_enabled: true
  63. matrix_bot_baibot_config_agents_static_definitions_anthropic_id: molecule-anthropic
  64. matrix_bot_baibot_config_agents_static_definitions_anthropic_config_base_url: http://molecule-no-such-provider.invalid/v1
  65. matrix_bot_baibot_config_agents_static_definitions_anthropic_config_api_key: molecule-placeholder-not-a-real-key
  66. matrix_bot_baibot_config_agents_static_definitions_anthropic_config_text_generation_model_id: molecule-model-4-2
  67. matrix_bot_baibot_config_agents_static_definitions_anthropic_config_text_generation_temperature: 0.25
  68. matrix_bot_baibot_config_agents_static_definitions_anthropic_config_text_generation_max_response_tokens: 1234
  69. matrix_bot_baibot_config_agents_static_definitions_anthropic_config_text_generation_max_context_tokens: 56789
  70. env:
  71. # Workaround for https://github.com/ansible/molecule/issues/4391
  72. ANSIBLE_ROLES_PATH: ${MOLECULE_PROJECT_DIRECTORY}/../..:/.ansible/roles:/usr/share/ansible/roles:/etc/ansible/roles:${ANSIBLE_HOME:-~/.ansible}/roles
  73. scenario:
  74. test_sequence:
  75. - dependency
  76. - cleanup
  77. - destroy
  78. - syntax
  79. - create
  80. - prepare
  81. - converge
  82. - idempotence
  83. - verify
  84. - cleanup
  85. - destroy
  86. verifier:
  87. name: ansible