OBJECT

KubernetesKindPod

Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.

link GraphQL Schema definition

  • type KubernetesKindPod 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: KubernetesKindPodRelationships!
  • # Kubernetes resource kind metadata
  • resourceKind: KubernetesResourceKind!
  • # Specification of the desired behavior of the pod. More info:
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
  • spec: KubernetesKindPodSpec
  • # Most recently observed status of the pod. This data may not be up to date.
  • # Populated by the system. Read-only. More info:
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
  • status: KubernetesKindPodStatus
  • # Raw YAML response as produced by KRM API
  • yaml: String!
  • }