1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! Data structures for DevOps configuration formats.
//!
//! All models derive `serde::Serialize` and `serde::Deserialize` and can be
//! round-tripped through YAML or JSON. Models that have business-logic
//! validation implement the [`validation::ConfigValidator`] trait.
//!
//! ## Modules
//!
//! | Module | Formats |
//! |--------|---------|
//! | [`k8s`] | Core K8s types (Deployment, Service, ConfigMap, Secret) |
//! | [`k8s_workloads`] | HPA, CronJob, Job, StatefulSet, DaemonSet |
//! | [`k8s_networking`] | Ingress, NetworkPolicy |
//! | [`k8s_storage`] | PersistentVolumeClaim |
//! | [`k8s_rbac`] | Role, ClusterRole, RoleBinding, ServiceAccount |
//! | [`gitlab`] | GitLab CI pipelines |
//! | [`github_actions`] | GitHub Actions workflows |
//! | [`docker_compose`] | Docker Compose files |
//! | [`prometheus`] | Prometheus + Alertmanager configs |
//! | [`helm`] | Helm values.yaml |
//! | [`ansible`] | Ansible playbooks |
//! | [`validation`] | Shared validation types and `ConfigValidator` trait |
// Data-container modules: fields are self-documenting by name and format.
// The `validation` module is excluded so its trait + key types stay documented.