add auto-generated files: ./hack/update-openapi-spec.sh

Signed-off-by: Itamar Holder <iholder@redhat.com>
This commit is contained in:
Itamar Holder 2025-02-13 10:31:58 +02:00
parent 4bdaf6cbbd
commit ee4ac3d70a
2 changed files with 34 additions and 0 deletions

View File

@ -8739,6 +8739,17 @@
},
"type": "object"
},
"io.k8s.api.core.v1.NodeSwapStatus": {
"description": "NodeSwapStatus represents swap memory information.",
"properties": {
"capacity": {
"description": "Total amount of swap memory in bytes.",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"io.k8s.api.core.v1.NodeSystemInfo": {
"description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
"properties": {
@ -8778,6 +8789,10 @@
"description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
"type": "string"
},
"swap": {
"$ref": "#/definitions/io.k8s.api.core.v1.NodeSwapStatus",
"description": "Swap Info reported by the node."
},
"systemUUID": {
"description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid",
"type": "string"

View File

@ -4149,6 +4149,17 @@
},
"type": "object"
},
"io.k8s.api.core.v1.NodeSwapStatus": {
"description": "NodeSwapStatus represents swap memory information.",
"properties": {
"capacity": {
"description": "Total amount of swap memory in bytes.",
"format": "int64",
"type": "integer"
}
},
"type": "object"
},
"io.k8s.api.core.v1.NodeSystemInfo": {
"description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
"properties": {
@ -4197,6 +4208,14 @@
"description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
"type": "string"
},
"swap": {
"allOf": [
{
"$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSwapStatus"
}
],
"description": "Swap Info reported by the node."
},
"systemUUID": {
"default": "",
"description": "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid",