mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 17:39:39 +02:00
git-subtree-dir: ai-context/trustgraph-templates git-subtree-split: 42a5fd1b678f32be378062e30451e2052ccb95dd
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Kubernetes Resource",
|
|
"description": "Basic schema for Kubernetes resources",
|
|
"type": "object",
|
|
"required": ["apiVersion", "kind", "metadata"],
|
|
"properties": {
|
|
"apiVersion": {
|
|
"type": "string",
|
|
"description": "Kubernetes API version"
|
|
},
|
|
"kind": {
|
|
"type": "string",
|
|
"description": "Resource kind",
|
|
"enum": ["Deployment", "Service", "ConfigMap", "Secret", "PersistentVolumeClaim", "PersistentVolume", "Namespace", "StorageClass"]
|
|
},
|
|
"metadata": {
|
|
"type": "object",
|
|
"required": ["name"],
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "Resource name"
|
|
},
|
|
"namespace": {
|
|
"type": "string",
|
|
"description": "Resource namespace"
|
|
},
|
|
"labels": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"spec": {
|
|
"type": "object",
|
|
"description": "Resource specification"
|
|
}
|
|
}
|
|
}
|