Files
unkinben 784c3b5de1 Add JSON schema generation for kubeconform CRD validation (#212)
## Summary
- New `ci/generate-schemas.sh` script that generates JSON schemas from three sources:
  1. Live cluster CRDs via `kubectl get crds`
  2. Offline CRD manifests (ArgoCD v3.3.2, Gateway API v1.5.1)
  3. Kubernetes v1.33.7 swagger spec for native types
- Schemas follow Datree catalog convention (`<group>/<Kind>_<version>.json`)
- `validate-apps.sh` and `validate-clusters.sh` check local schemas first, falling back to remote
- Fixes TLSRoute (and other CRD) schema validation failures in kubeconform

## Sources
- ArgoCD: `artifactapi.../argoproj/argo-cd/refs/tags/v3.3.2/manifests/ha/install.yaml`
- Gateway API: `artifactapi.../kubernetes-sigs/gateway-api/releases/download/v1.5.1/standard-install.yaml`
- Kubernetes: `artifactapi.../kubernetes/kubernetes/refs/tags/v1.33.7/api/openapi-spec/swagger.json`

Reviewed-on: #212
Co-authored-by: Ben Vincent <ben@unkin.net>
Co-committed-by: Ben Vincent <ben@unkin.net>
2026-06-28 17:26:08 +10:00

283 lines
6.6 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"apiVersion": {
"type": "string"
},
"kind": {
"type": "string"
},
"metadata": {
"type": "object"
},
"spec": {
"properties": {
"allowedNamespaces": {
"items": {
"type": "string"
},
"type": "array"
},
"appRole": {
"properties": {
"roleId": {
"type": "string"
},
"secretIDPath": {
"type": "string"
},
"secretRef": {
"type": "string"
}
},
"type": "object"
},
"aws": {
"properties": {
"headerValue": {
"type": "string"
},
"iamEndpoint": {
"type": "string"
},
"irsaServiceAccount": {
"type": "string"
},
"region": {
"type": "string"
},
"role": {
"type": "string"
},
"secretRef": {
"type": "string"
},
"sessionName": {
"type": "string"
},
"stsEndpoint": {
"type": "string"
}
},
"type": "object"
},
"gcp": {
"properties": {
"clusterName": {
"type": "string"
},
"projectID": {
"type": "string"
},
"region": {
"type": "string"
},
"role": {
"type": "string"
},
"workloadIdentityServiceAccount": {
"type": "string"
}
},
"type": "object"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"jwt": {
"properties": {
"audiences": {
"items": {
"type": "string"
},
"type": "array"
},
"role": {
"type": "string"
},
"secretRef": {
"type": "string"
},
"serviceAccount": {
"type": "string"
},
"tokenExpirationSeconds": {
"default": 600,
"format": "int64",
"minimum": 600,
"type": "integer"
}
},
"type": "object"
},
"kubernetes": {
"properties": {
"audiences": {
"items": {
"type": "string"
},
"type": "array"
},
"role": {
"type": "string"
},
"serviceAccount": {
"type": "string"
},
"tokenExpirationSeconds": {
"default": 600,
"format": "int64",
"minimum": 600,
"type": "integer"
}
},
"type": "object"
},
"method": {
"enum": [
"kubernetes",
"jwt",
"appRole",
"aws",
"gcp"
],
"type": "string"
},
"mount": {
"type": "string"
},
"namespace": {
"type": "string"
},
"params": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"storageEncryption": {
"properties": {
"keyName": {
"type": "string"
},
"mount": {
"type": "string"
}
},
"required": [
"keyName",
"mount"
],
"type": "object"
},
"vaultAuthGlobalRef": {
"properties": {
"allowDefault": {
"type": "boolean"
},
"mergeStrategy": {
"properties": {
"headers": {
"enum": [
"union",
"replace",
"none"
],
"type": "string"
},
"params": {
"enum": [
"union",
"replace",
"none"
],
"type": "string"
}
},
"type": "object"
},
"name": {
"pattern": "^([a-z0-9.-]{1,253})$",
"type": "string"
},
"namespace": {
"pattern": "^([a-z0-9-]{1,63})$",
"type": "string"
}
},
"type": "object"
},
"vaultConnectionRef": {
"type": "string"
}
},
"type": "object"
},
"status": {
"properties": {
"conditions": {
"items": {
"properties": {
"lastTransitionTime": {
"format": "date-time",
"type": "string"
},
"message": {
"maxLength": 32768,
"type": "string"
},
"observedGeneration": {
"format": "int64",
"minimum": 0,
"type": "integer"
},
"reason": {
"maxLength": 1024,
"minLength": 1,
"pattern": "^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$",
"type": "string"
},
"status": {
"enum": [
"True",
"False",
"Unknown"
],
"type": "string"
},
"type": {
"maxLength": 316,
"pattern": "^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$",
"type": "string"
}
},
"required": [
"lastTransitionTime",
"message",
"reason",
"status",
"type"
],
"type": "object"
},
"type": "array"
},
"error": {
"type": "string"
},
"specHash": {
"type": "string"
},
"valid": {
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
}