OBJECT

KubernetesKindNamespace

Namespace provides a scope for Names. Use of multiple namespaces is optional.

link GraphQL Schema definition

  • type KubernetesKindNamespace 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: KubernetesKindNamespaceRelationships!
  • # Kubernetes resource kind metadata
  • resourceKind: KubernetesResourceKind!
  • # Spec defines the behavior of the Namespace. More info:
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
  • spec: KubernetesKindNamespaceSpec
  • # Status describes the current status of a Namespace. More info:
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
  • status: KubernetesKindNamespaceStatus
  • # Raw YAML response as produced by KRM API
  • yaml: String!
  • }

link Require by