diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json index 0e42f2e67d4..c2a1b3a7ea2 100644 --- a/api/swagger-spec/v1.json +++ b/api/swagger-spec/v1.json @@ -16768,6 +16768,13 @@ "$ref": "v1.UniqueVolumeName" }, "description": "List of attachable volumes in use (mounted) by the node." + }, + "volumesAttached": { + "type": "array", + "items": { + "$ref": "v1.AttachedVolume" + }, + "description": "List of volumes that are attached to the node." } } }, @@ -16930,6 +16937,24 @@ "id": "v1.UniqueVolumeName", "properties": {} }, + "v1.AttachedVolume": { + "id": "v1.AttachedVolume", + "description": "AttachedVolume describes a volume attached to a node", + "required": [ + "name", + "devicePath" + ], + "properties": { + "name": { + "type": "string", + "description": "Name of the attached volume" + }, + "devicePath": { + "type": "string", + "description": "DevicePath represents the device path where the volume should be avilable" + } + } + }, "v1.PersistentVolumeClaimList": { "id": "v1.PersistentVolumeClaimList", "description": "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.", diff --git a/docs/api-reference/v1/definitions.html b/docs/api-reference/v1/definitions.html index fa0fc419b3f..fe8c19f020e 100755 --- a/docs/api-reference/v1/definitions.html +++ b/docs/api-reference/v1/definitions.html @@ -2265,6 +2265,61 @@ Populated by the system when a graceful deletion is requested. Read-only. More i
Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.
NamespaceList is a list of Namespaces.
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
kind |
+Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds |
+false |
+string |
++ |
apiVersion |
+APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources |
+false |
+string |
++ |
metadata |
+Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds |
+false |
++ | + |
items |
+Items is the list of Namespace objects in the list. More info: http://releases.k8s.io/HEAD/docs/user-guide/namespaces.md |
+true |
+v1.Namespace array |
++ |
NamespaceList is a list of Namespaces.
-Name | -Description | -Required | -Schema | -Default | -
---|---|---|---|---|
kind |
-Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds |
-false |
-string |
-- |
apiVersion |
-APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#resources |
-false |
-string |
-- |
metadata |
-Standard list metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#types-kinds |
-false |
-- | - |
items |
-Items is the list of Namespace objects in the list. More info: http://releases.k8s.io/HEAD/docs/user-guide/namespaces.md |
-true |
-v1.Namespace array |
-- |
v1.UniqueVolumeName array
volumesAttached
List of volumes that are attached to the node.
false
v1.AttachedVolume array
AttachedVolume describes a volume attached to a node
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
name |
+Name of the attached volume |
+true |
+string |
++ |
devicePath |
+DevicePath represents the device path where the volume should be avilable |
+true |
+string |
++ |