28 lines
840 B
Markdown
28 lines
840 B
Markdown
# infra-run
|
|
|
|
`infra-run` is the operational core of this repository. It groups automation, scripts, runbooks, and supporting documentation for Linux infrastructure work, incident response, and controlled change execution.
|
|
|
|
## Diagram
|
|
|
|
```mermaid
|
|
flowchart TD
|
|
A["infra-run"] --> B["ansible"]
|
|
A --> C["docs"]
|
|
A --> D["runbooks"]
|
|
A --> E["scripts"]
|
|
E --> E1["bash"]
|
|
E --> E2["python"]
|
|
```
|
|
|
|
## Scope
|
|
|
|
- `ansible` - placeholder structure for infrastructure automation and testing.
|
|
- `docs` - supporting technical notes and written documentation.
|
|
- `runbooks` - procedural operational guides.
|
|
- `scripts` - executable tooling for operations and diagnostics.
|
|
|
|
## Notes
|
|
|
|
- This folder reflects the structure of a production-oriented operations repository.
|
|
- Current implementation is strongest in the Bash tooling under `scripts/bash`.
|