first commit

This commit is contained in:
2026-05-05 10:50:30 +01:00
commit e94efb745e
206 changed files with 231128 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"description": "ShareManager is where Longhorn stores share manager 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": "ShareManagerSpec defines the desired state of the Longhorn share manager",
"properties": {
"image": {
"description": "Share manager image used for creating a share manager pod",
"type": "string"
}
},
"type": "object",
"additionalProperties": false
},
"status": {
"description": "ShareManagerStatus defines the observed state of the Longhorn share manager",
"properties": {
"endpoint": {
"description": "NFS endpoint that can access the mounted filesystem of the volume",
"type": "string"
},
"ownerID": {
"description": "The node ID on which the controller is responsible to reconcile this share manager resource",
"type": "string"
},
"state": {
"description": "The state of the share manager resource",
"type": "string"
}
},
"type": "object",
"additionalProperties": false
}
},
"type": "object"
}