devops-validate 0.1.0

YAML validation and auto-repair engine for DevOps configuration files: Kubernetes, Docker Compose, GitLab CI, GitHub Actions, Prometheus, Alertmanager, Helm, and Ansible.
Documentation
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
//! Bundled fallback schemas for offline mode
//!
//! These minimal schemas are embedded in the binary and used when:
//! - No network connectivity
//! - Remote schema fetch fails
//! - User prefers offline operation
//!
//! They provide basic structural validation but may not include all fields
//! from the official schemas.

use serde_json::Value;

/// Minimal K8s Deployment schema
const K8S_DEPLOYMENT: &str = r#"
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": ["apiVersion", "kind", "metadata", "spec"],
  "properties": {
    "apiVersion": { "type": "string", "const": "apps/v1" },
    "kind": { "type": "string", "const": "Deployment" },
    "metadata": {
      "type": "object",
      "required": ["name"],
      "properties": {
        "name": { "type": "string" },
        "namespace": { "type": "string" },
        "labels": { "type": "object", "additionalProperties": { "type": "string" } },
        "annotations": { "type": "object", "additionalProperties": { "type": "string" } }
      }
    },
    "spec": {
      "type": "object",
      "required": ["selector", "template"],
      "properties": {
        "replicas": { "type": "integer", "minimum": 0 },
        "selector": {
          "type": "object",
          "required": ["matchLabels"],
          "properties": {
            "matchLabels": { "type": "object", "additionalProperties": { "type": "string" } }
          }
        },
        "template": {
          "type": "object",
          "required": ["metadata", "spec"],
          "properties": {
            "metadata": {
              "type": "object",
              "properties": {
                "labels": { "type": "object", "additionalProperties": { "type": "string" } }
              }
            },
            "spec": {
              "type": "object",
              "required": ["containers"],
              "properties": {
                "containers": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "required": ["name", "image"],
                    "properties": {
                      "name": { "type": "string" },
                      "image": { "type": "string" },
                      "ports": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "containerPort": { "type": "integer" },
                            "protocol": { "type": "string", "enum": ["TCP", "UDP"] }
                          }
                        }
                      },
                      "resources": {
                        "type": "object",
                        "properties": {
                          "limits": { "type": "object" },
                          "requests": { "type": "object" }
                        }
                      },
                      "env": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "required": ["name"],
                          "properties": {
                            "name": { "type": "string" },
                            "value": { "type": "string" }
                          }
                        }
                      },
                      "livenessProbe": { "type": "object" },
                      "readinessProbe": { "type": "object" }
                    }
                  }
                },
                "initContainers": { "type": "array" },
                "volumes": { "type": "array" },
                "restartPolicy": { "type": "string", "enum": ["Always", "OnFailure", "Never"] }
              }
            }
          }
        },
        "strategy": {
          "type": "object",
          "properties": {
            "type": { "type": "string", "enum": ["RollingUpdate", "Recreate"] }
          }
        }
      }
    }
  }
}
"#;

/// Minimal K8s Service schema
const K8S_SERVICE: &str = r#"
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": ["apiVersion", "kind", "metadata", "spec"],
  "properties": {
    "apiVersion": { "type": "string", "const": "v1" },
    "kind": { "type": "string", "const": "Service" },
    "metadata": {
      "type": "object",
      "required": ["name"],
      "properties": {
        "name": { "type": "string" },
        "namespace": { "type": "string" }
      }
    },
    "spec": {
      "type": "object",
      "required": ["ports"],
      "properties": {
        "type": { "type": "string", "enum": ["ClusterIP", "NodePort", "LoadBalancer", "ExternalName"] },
        "selector": { "type": "object", "additionalProperties": { "type": "string" } },
        "ports": {
          "type": "array",
          "items": {
            "type": "object",
            "required": ["port"],
            "properties": {
              "name": { "type": "string" },
              "port": { "type": "integer", "minimum": 1, "maximum": 65535 },
              "targetPort": { "oneOf": [{ "type": "integer" }, { "type": "string" }] },
              "protocol": { "type": "string", "enum": ["TCP", "UDP", "SCTP"] },
              "nodePort": { "type": "integer", "minimum": 30000, "maximum": 32767 }
            }
          }
        },
        "clusterIP": { "type": "string" },
        "externalName": { "type": "string" }
      }
    }
  }
}
"#;

/// Minimal K8s ConfigMap schema
const K8S_CONFIGMAP: &str = r#"
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": ["apiVersion", "kind", "metadata"],
  "properties": {
    "apiVersion": { "type": "string", "const": "v1" },
    "kind": { "type": "string", "const": "ConfigMap" },
    "metadata": {
      "type": "object",
      "required": ["name"],
      "properties": {
        "name": { "type": "string" },
        "namespace": { "type": "string" }
      }
    },
    "data": { "type": "object", "additionalProperties": { "type": "string" } },
    "binaryData": { "type": "object", "additionalProperties": { "type": "string" } },
    "immutable": { "type": "boolean" }
  }
}
"#;

/// Minimal K8s Secret schema
const K8S_SECRET: &str = r#"
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": ["apiVersion", "kind", "metadata"],
  "properties": {
    "apiVersion": { "type": "string", "const": "v1" },
    "kind": { "type": "string", "const": "Secret" },
    "metadata": {
      "type": "object",
      "required": ["name"],
      "properties": {
        "name": { "type": "string" },
        "namespace": { "type": "string" }
      }
    },
    "type": { "type": "string" },
    "data": { "type": "object", "additionalProperties": { "type": "string" } },
    "stringData": { "type": "object", "additionalProperties": { "type": "string" } },
    "immutable": { "type": "boolean" }
  }
}
"#;

/// Minimal GitLab CI schema
const GITLAB_CI: &str = r#"
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "stages": {
      "type": "array",
      "items": { "type": "string" }
    },
    "variables": { "type": "object" },
    "default": { "type": "object" },
    "workflow": { "type": "object" }
  },
  "additionalProperties": {
    "oneOf": [
      { "type": "object" },
      { "type": "array" }
    ]
  },
  "patternProperties": {
    "^[a-zA-Z_][a-zA-Z0-9_-]*$": {
      "type": "object",
      "properties": {
        "stage": { "type": "string" },
        "script": {
          "oneOf": [
            { "type": "string" },
            { "type": "array", "items": { "type": "string" } }
          ]
        },
        "image": { "type": "string" },
        "only": { "type": "array" },
        "except": { "type": "array" },
        "rules": { "type": "array" },
        "extends": { "type": "string" }
      }
    }
  }
}
"#;

/// Minimal Docker Compose schema
const DOCKER_COMPOSE: &str = r#"
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": ["services"],
  "properties": {
    "version": { "type": "string" },
    "services": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "image": { "type": "string" },
          "build": {
            "oneOf": [
              { "type": "string" },
              { "type": "object" }
            ]
          },
          "ports": {
            "type": "array",
            "items": {
              "oneOf": [
                { "type": "integer" },
                { "type": "string" }
              ]
            }
          },
          "environment": {
            "oneOf": [
              { "type": "array" },
              { "type": "object" }
            ]
          },
          "volumes": { "type": "array" },
          "depends_on": {
            "oneOf": [
              { "type": "array" },
              { "type": "object" }
            ]
          },
          "networks": { "type": "array" },
          "restart": { "type": "string" }
        }
      }
    },
    "volumes": { "type": "object" },
    "networks": { "type": "object" }
  }
}
"#;

/// Minimal GitHub Actions schema
const GITHUB_ACTIONS: &str = r#"
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "required": ["on", "jobs"],
  "properties": {
    "name": { "type": "string" },
    "on": {
      "oneOf": [
        { "type": "string" },
        { "type": "array" },
        { "type": "object" }
      ]
    },
    "env": { "type": "object" },
    "defaults": { "type": "object" },
    "concurrency": { "type": "object" },
    "jobs": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "required": ["runs-on"],
        "properties": {
          "runs-on": {
            "oneOf": [
              { "type": "string" },
              { "type": "array" }
            ]
          },
          "needs": {
            "oneOf": [
              { "type": "string" },
              { "type": "array" }
            ]
          },
          "if": { "type": "string" },
          "steps": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": { "type": "string" },
                "run": { "type": "string" },
                "uses": { "type": "string" },
                "with": { "type": "object" },
                "env": { "type": "object" },
                "if": { "type": "string" }
              }
            }
          },
          "env": { "type": "object" },
          "outputs": { "type": "object" },
          "timeout-minutes": { "type": "integer" }
        }
      }
    }
  }
}
"#;

/// Schema lookup table
const BUNDLED_SCHEMAS: &[(&str, &str)] = &[
    ("k8s/deployment", K8S_DEPLOYMENT),
    ("k8s/service", K8S_SERVICE),
    ("k8s/configmap", K8S_CONFIGMAP),
    ("k8s/secret", K8S_SECRET),
    ("gitlab-ci", GITLAB_CI),
    ("docker-compose", DOCKER_COMPOSE),
    ("github-actions", GITHUB_ACTIONS),
];

/// Get a bundled schema by type
pub fn get_bundled_schema(schema_type: &str) -> Option<Value> {
    for (key, schema_str) in BUNDLED_SCHEMAS {
        if *key == schema_type {
            return serde_json::from_str(schema_str).ok();
        }
    }
    None
}

/// List all bundled schema types
pub fn list_bundled_schemas() -> Vec<&'static str> {
    BUNDLED_SCHEMAS.iter().map(|(key, _)| *key).collect()
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_get_bundled_schema_k8s_deployment() {
        let schema = get_bundled_schema("k8s/deployment");
        assert!(schema.is_some());
        let schema = schema.unwrap();
        assert_eq!(schema["properties"]["kind"]["const"], "Deployment");
    }

    #[test]
    fn test_get_bundled_schema_gitlab_ci() {
        let schema = get_bundled_schema("gitlab-ci");
        assert!(schema.is_some());
        let schema = schema.unwrap();
        assert!(schema["properties"]["stages"].is_object());
    }

    #[test]
    fn test_get_bundled_schema_unknown() {
        let schema = get_bundled_schema("unknown/type");
        assert!(schema.is_none());
    }

    #[test]
    fn test_list_bundled_schemas() {
        let schemas = list_bundled_schemas();
        assert!(schemas.contains(&"k8s/deployment"));
        assert!(schemas.contains(&"gitlab-ci"));
        assert_eq!(schemas.len(), 7);
    }

    #[test]
    fn test_all_schemas_valid_json() {
        for (key, schema_str) in BUNDLED_SCHEMAS {
            let result: Result<Value, _> = serde_json::from_str(schema_str);
            assert!(result.is_ok(), "Schema {} is not valid JSON", key);
        }
    }
}