Add README files and diagrams across repository

This commit is contained in:
Mateusz Suski
2026-05-06 06:36:53 +00:00
parent c88428d092
commit 1e2db3e125
31 changed files with 616 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# labs
This directory collects hands-on lab areas used for experimentation and skill development. It complements the production-style tooling elsewhere in the repository by separating exploratory work from operational examples.
## Diagram
```mermaid
flowchart TD
A["labs"] --> B["docker"]
A --> C["kubernetes"]
A --> D["terraform"]
A --> E["networking"]
A --> F["ci-cd"]
```
## Scope
- `docker` - container runtime and image workflow practice.
- `kubernetes` - orchestration and workload experiments.
- `terraform` - infrastructure-as-code exercises.
- `networking` - connectivity and protocol-focused labs.
- `ci-cd` - pipeline and delivery automation practice.
## Notes
- These folders are intentionally separate from `infra-run` to keep experiments isolated from the operational core.