Files
troubleshoot/schemas/redactor-troubleshoot-v1beta2.json
Gerard Nguyen 4e999d6bfb fix: [sc-106256] Add missing uri field to troubleshoot.sh types (#1574)
add uri field for top level type
2024-07-15 13:07:04 +10:00

86 lines
2.7 KiB
JSON

{
"description": "Redactor is the Schema for the redaction API",
"type": "object",
"properties": {
"apiVersion": {
"description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
"type": "string"
},
"kind": {
"description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
"type": "string"
},
"metadata": {
"type": "object"
},
"spec": {
"description": "RedactorSpec defines the desired state of Redactor",
"type": "object",
"properties": {
"redactors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"fileSelector": {
"type": "object",
"properties": {
"file": {
"type": "string"
},
"files": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"name": {
"type": "string"
},
"removals": {
"type": "object",
"properties": {
"regex": {
"type": "array",
"items": {
"type": "object",
"properties": {
"redactor": {
"type": "string"
},
"selector": {
"type": "string"
}
}
}
},
"values": {
"type": "array",
"items": {
"type": "string"
}
},
"yamlPath": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
},
"uri": {
"type": "string"
}
}
},
"status": {
"description": "RedactorStatus defines the observed state of Redactor",
"type": "object"
}
}
}