OBJECT

KubernetesKindPersistentVolume

PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes

link GraphQL Schema definition

  • type KubernetesKindPersistentVolume 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: KubernetesKindPersistentVolumeRelationships!
  • # Kubernetes resource kind metadata
  • resourceKind: KubernetesResourceKind!
  • # Spec defines a specification of a persistent volume owned by the cluster.
  • # Provisioned by an administrator. More info:
  • # https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
  • spec: KubernetesKindPersistentVolumeSpec
  • # Status represents the current information/status for the persistent volume.
  • # Populated by the system. Read-only. More info:
  • # https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
  • status: KubernetesKindPersistentVolumeStatus
  • # Raw YAML response as produced by KRM API
  • yaml: String!
  • }