Architecture Decision Records (ADRs)¶
This directory contains Architecture Decision Records (ADRs) for the ansible-execution-environment project.
What is an ADR?¶
An Architecture Decision Record (ADR) captures an important architectural decision made along with its context and consequences.
When to Write an ADR¶
Create an ADR when you make a significant architectural decision that: - Affects the structure, dependencies, or behavior of the project - Involves trade-offs between different approaches - Will impact future development or users - Needs to be documented for future reference
Examples: - Choosing a versioning scheme - Adopting a new tool or framework - Changing build or deployment processes - Major dependency updates or changes
ADR Format¶
Each ADR follows this structure:
# ADR-NNNN: Title
**Status:** [Proposed | Accepted | Deprecated | Superseded]
**Date:** YYYY-MM-DD
**Deciders:** [List of people involved]
**Tags:** [relevant, tags]
## Context
What is the issue or situation we're addressing?
## Decision
What is the change we're making?
## Consequences
What becomes easier or harder as a result?
## Alternatives Considered
What other options did we evaluate?
## References
Links to related documents, ADRs, or external resources
ADR Lifecycle¶
- Proposed: ADR is drafted and under discussion
- Accepted: ADR is approved and decision is implemented
- Deprecated: ADR is no longer relevant but kept for historical context
- Superseded: ADR is replaced by a newer ADR (link to replacement)
Existing ADRs¶
| ADR | Title | Status | Date |
|---|---|---|---|
| 0001 | Adopt Semantic Versioning | Accepted | 2026-04-20 |
| 0002 | Release Process and Tooling | Accepted | 2026-04-20 |
| 0003 | OpenShift Version Policy | Accepted | 2026-04-20 |
| 0004 | Dependency Management Strategy | Accepted | 2026-04-20 |
| 0005 | oc/kubectl Installation Strategy | Accepted | 2026-04-20 |
| 0006 | Development Environment Setup | Accepted | 2026-04-20 |
| 0007 | AAP Collection Dependencies | Accepted | 2026-04-20 |
| 0008 | Collection Dependency Validation | Accepted | 2026-04-20 |
Creating a New ADR¶
- Copy
template.mdto a new file with the next number (e.g.,0006-my-decision.md) - Fill in the template sections
- Submit as a pull request for review
- Update this README with the new ADR entry
- Move status to "Accepted" once approved and implemented
References¶
- ADR GitHub Organization
- Documenting Architecture Decisions by Michael Nygard