diff --git a/api/swagger-spec/v1.json b/api/swagger-spec/v1.json
index 9dc0d280c78..e92ba89fba9 100644
--- a/api/swagger-spec/v1.json
+++ b/api/swagger-spec/v1.json
@@ -13503,6 +13503,9 @@
"v1.NodeStatus": {
"id": "v1.NodeStatus",
"description": "NodeStatus is information about the current status of a node.",
+ "required": [
+ "images"
+ ],
"properties": {
"capacity": {
"type": "any",
@@ -13537,6 +13540,13 @@
"nodeInfo": {
"$ref": "v1.NodeSystemInfo",
"description": "Set of ids/uuids to uniquely identify the node. More info: http://releases.k8s.io/HEAD/docs/admin/node.md#node-info"
+ },
+ "images": {
+ "type": "array",
+ "items": {
+ "$ref": "v1.ContainerImage"
+ },
+ "description": "List of container images on this node"
}
}
},
@@ -13664,6 +13674,27 @@
}
}
},
+ "v1.ContainerImage": {
+ "id": "v1.ContainerImage",
+ "description": "Describe a container image",
+ "required": [
+ "repoTags"
+ ],
+ "properties": {
+ "repoTags": {
+ "type": "array",
+ "items": {
+ "type": "string"
+ },
+ "description": "Names by which this image is known. e.g. [\"gcr.io/google_containers/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]"
+ },
+ "size": {
+ "type": "integer",
+ "format": "int64",
+ "description": "The size of the image in bytes."
+ }
+ }
+ },
"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 4cb332f96eb..019892f7428 100755
--- a/docs/api-reference/v1/definitions.html
+++ b/docs/api-reference/v1/definitions.html
@@ -3906,6 +3906,13 @@ The resulting set of endpoints can be viewed as:
images
List of container images on this node
true
v1.ContainerImage array
Describe a container image
+Name | +Description | +Required | +Schema | +Default | +
---|---|---|---|---|
repoTags |
+Names by which this image is known. e.g. ["gcr.io/google_containers/hyperkube:v1.0.7", "dockerhub.io/google_containers/hyperkube:v1.0.7"] |
+true |
+string array |
++ |
size |
+The size of the image in bytes. |
+false |
+integer (int64) |
++ |