- Added `bootstrap_sparrowdo` role for bootstrapping Sparrowdo on a VM. - Introduced `cleanup_vm` role for cleaning up VMs and disk images. - Created `download_image` role to download and cache QCOW2 images. - Developed `golden_image` role for creating and customizing golden images. - Implemented `provision_vm` role for provisioning VMs as linked clones. - Added `run_test` role for executing tests with Sparrowdo. - Created playbooks for building golden images, running single tests, and running test suites. - Enhanced documentation with usage examples, configuration details, and troubleshooting tips. - Added support for multiple cloud providers (AWS, Azure) in the test execution workflow. Signed-off-by: Stephen Simpson <ssimpson89@users.noreply.github.com>
20 lines
588 B
Markdown
20 lines
588 B
Markdown
# AWS Playbooks
|
|
|
|
This directory will contain AWS-specific playbooks for the Rocky Linux Testing Framework.
|
|
|
|
## Future Playbooks
|
|
|
|
- `setup.yml` - Configure AWS resources (VPC, security groups, etc.)
|
|
- `create-ami.yml` - Build custom Rocky Linux AMIs
|
|
- `cleanup.yml` - Clean up AWS resources
|
|
|
|
## Workflow
|
|
|
|
AWS testing doesn't require golden image creation. Instead:
|
|
1. Select Rocky Linux AMI
|
|
2. Launch EC2 instance
|
|
3. Run Sparrowdo tests
|
|
4. Terminate instance
|
|
|
|
All tests use the main `playbooks/run-tests.yml` playbook, which automatically handles AWS-specific infrastructure provisioning.
|