forked from yannh/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvolumeattachmentstatus-storage-v1alpha1.json
38 lines (38 loc) · 1.69 KB
/
volumeattachmentstatus-storage-v1alpha1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"description": "VolumeAttachmentStatus is the status of a VolumeAttachment request.",
"properties": {
"attachError": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.22.15/_definitions.json#/definitions/io.k8s.api.storage.v1alpha1.VolumeError",
"description": "The last error encountered during attach operation, if any. This field must only be set by the entity completing the attach operation, i.e. the external-attacher."
},
"attached": {
"description": "Indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
"type": [
"boolean",
"null"
]
},
"attachmentMetadata": {
"additionalProperties": {
"type": [
"string",
"null"
]
},
"description": "Upon successful attach, this field is populated with any information returned by the attach operation that must be passed into subsequent WaitForAttach or Mount calls. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
"type": [
"object",
"null"
]
},
"detachError": {
"$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.22.15/_definitions.json#/definitions/io.k8s.api.storage.v1alpha1.VolumeError",
"description": "The last error encountered during detach operation, if any. This field must only be set by the entity completing the detach operation, i.e. the external-attacher."
}
},
"required": [
"attached"
],
"type": "object",
"$schema": "http://json-schema.org/schema#"
}