OBJECT

KubernetesKindNode

Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).

link GraphQL Schema definition

  • type KubernetesKindNode implements KubernetesResourceInterface, Node {
  • # Kubernetes resource API version
  • apiVersion: String!
  • # Resource context
  • context: KubernetesResourceContext!
  • # Node-compatible globally unique opaque ID field
  • id: ID!
  • # Raw JSON response as produced by KRM API
  • json: JSON!
  • # Kubernetes resource kind coming from resourceKind.kind
  • kind: String!
  • # Standard object's metadata. More info:
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
  • metadata: KubernetesResourceMetadata!
  • # name field, taken from metadata.name
  • name: String!
  • # Relationships to other nodes
  • relationships: KubernetesKindNodeRelationships!
  • # Kubernetes resource kind metadata
  • resourceKind: KubernetesResourceKind!
  • # Spec defines the behavior of a node.
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
  • spec: KubernetesKindNodeSpec
  • # Most recently observed status of the node. Populated by the system. Read-only.
  • # More info:
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
  • status: KubernetesKindNodeStatus
  • # Raw YAML response as produced by KRM API
  • yaml: String!
  • }