28 lines
968 B
Markdown
28 lines
968 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"] --> C["docs"] --> D["runbooks"] --> E["scripts"]
|
|
click A href "./" "infra-run"
|
|
click B href "./ansible/" "ansible"
|
|
click C href "./docs/" "docs"
|
|
click D href "./runbooks/" "runbooks"
|
|
click E href "./scripts/" "scripts"
|
|
```
|
|
|
|
## 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`.
|