Files
kubeconform/crdSchemas/master-standalone/setting-stable-v1beta2.json
T
2026-05-05 10:50:30 +01:00

39 lines
1.6 KiB
JSON

{
"description": "Setting is where Longhorn stores setting 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"
},
"status": {
"description": "The status of the setting.",
"properties": {
"applied": {
"description": "The setting is applied.",
"type": "boolean"
}
},
"required": [
"applied"
],
"type": "object",
"additionalProperties": false
},
"value": {
"description": "The value of the setting.\n- It can be a non-JSON formatted string that is applied to all the applicable data engines listed in the setting definition.\n- It can be a JSON formatted string that contains values for applicable data engines listed in the setting definition's Default.",
"type": "string"
}
},
"required": [
"value"
],
"type": "object"
}