Node
data class Node(val apiVersion: String? = null, val kind: String? = null, val metadata: ObjectMeta? = null, val spec: NodeSpec? = null, val status: NodeStatus? = null)
Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).
Constructors
Link copied to clipboard
fun Node(apiVersion: String? = null, kind: String? = null, metadata: ObjectMeta? = null, spec: NodeSpec? = null, status: NodeStatus? = null)