Files
argocd-apps/schemas/secrets.hashicorp.com/vaultstaticsecret_v1beta1.json
T
unkinben 2bd8fcc0c2
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/kubeconform Pipeline was successful
Add JSON schema generation for kubeconform CRD validation
- ci/generate-schemas.sh extracts schemas from live cluster CRDs via kubectl
- Generated schemas committed to schemas/ for CI use
- Run `make schemas` to regenerate after CRD or K8s version changes
- validate-apps.sh and validate-clusters.sh check local schemas first
- CRD instances (Gateway, TLSRoute, Pooler, etc.) now validated instead of skipped
- CustomResourceDefinition meta-type still skipped (no schema exists upstream)
2026-06-28 17:24:47 +10:00

263 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": {
"destination": {
"properties": {
"annotations": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"create": {
"default": false,
"type": "boolean"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"name": {
"type": "string"
},
"overwrite": {
"default": false,
"type": "boolean"
},
"transformation": {
"properties": {
"excludeRaw": {
"type": "boolean"
},
"excludes": {
"items": {
"type": "string"
},
"type": "array"
},
"includes": {
"items": {
"type": "string"
},
"type": "array"
},
"templates": {
"additionalProperties": {
"properties": {
"name": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"type": "object"
},
"transformationRefs": {
"items": {
"properties": {
"ignoreExcludes": {
"type": "boolean"
},
"ignoreIncludes": {
"type": "boolean"
},
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"templateRefs": {
"items": {
"properties": {
"keyOverride": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
},
"hmacSecretData": {
"default": true,
"type": "boolean"
},
"mount": {
"type": "string"
},
"namespace": {
"type": "string"
},
"path": {
"type": "string"
},
"refreshAfter": {
"pattern": "^([0-9]+(\\.[0-9]+)?(s|m|h))$",
"type": "string"
},
"rolloutRestartTargets": {
"items": {
"properties": {
"kind": {
"enum": [
"Deployment",
"DaemonSet",
"StatefulSet",
"argo.Rollout"
],
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"kind",
"name"
],
"type": "object"
},
"type": "array"
},
"syncConfig": {
"properties": {
"instantUpdates": {
"type": "boolean"
}
},
"type": "object"
},
"type": {
"enum": [
"kv-v1",
"kv-v2"
],
"type": "string"
},
"vaultAuthRef": {
"type": "string"
},
"version": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"destination",
"mount",
"path",
"type"
],
"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"
},
"lastGeneration": {
"format": "int64",
"type": "integer"
},
"secretMAC": {
"type": "string"
}
},
"required": [
"lastGeneration"
],
"type": "object"
}
},
"type": "object"
}