|
| 1 | +# Architecture |
| 2 | + |
| 3 | +## Executive Summary |
| 4 | + |
| 5 | +This project is an Ansible-based "Configuration as Code" (CaC) repository. It is designed to be used with the Ansible Automation Platform to set up and manage demo environments on the Red Hat Demo Platform. |
| 6 | + |
| 7 | +## Technology Stack |
| 8 | + |
| 9 | +| Category | Technology | Version | Justification | |
| 10 | +| ------------------------- | ---------- | --------------- | ---------------------------------------------------------------------------- | |
| 11 | +| Orchestration/Automation | Ansible | Not specified | ansible.cfg, ansible-navigator.yml, galaxy.yml, playbooks/, collections/ | |
| 12 | + |
| 13 | +## Architecture Pattern |
| 14 | + |
| 15 | +The project follows an **Configuration as Code (CaC)** pattern. All configuration is defined in code and managed through Ansible playbooks. |
| 16 | + |
| 17 | +## Source Tree |
| 18 | + |
| 19 | +The source tree is organized as follows: |
| 20 | + |
| 21 | +``` |
| 22 | +project-root/ |
| 23 | +├── playbooks/ # Ansible playbooks |
| 24 | +│ ├── main.yml # Main playbook entry point |
| 25 | +│ └── files/ # Files used by playbooks |
| 26 | +│ └── config_as_code/ # Configuration as code files |
| 27 | +│ ├── controller_credentials.yml |
| 28 | +│ ├── controller_hosts.yml |
| 29 | +│ ├── controller_inventories.yml |
| 30 | +│ ├── controller_projects.yml |
| 31 | +│ ├── controller_settings.yml |
| 32 | +│ ├── controller_templates.yml |
| 33 | +│ ├── credential_types.yml |
| 34 | +│ ├── eda_credentials.yml |
| 35 | +│ ├── eda_decision_environments.yml |
| 36 | +│ ├── eda_event_streams.yml |
| 37 | +│ ├── eda_projects.yml |
| 38 | +│ ├── eda_rulebook_activations.yml |
| 39 | +│ ├── execution_environments.yml |
| 40 | +│ ├── gateway_organizations.yml |
| 41 | +│ ├── gateway_settings.yml |
| 42 | +│ ├── gateway_teams.yml |
| 43 | +│ └── gateway_users.yml |
| 44 | +``` |
| 45 | + |
| 46 | +## Development Workflow |
| 47 | + |
| 48 | +See `development-guide.md` for details on the development workflow. |
| 49 | + |
| 50 | +## Deployment Architecture |
| 51 | + |
| 52 | +See `deployment-guide.md` for details on the deployment architecture. |
0 commit comments