PodResourceClaimPatch

data class PodResourceClaimPatch(val name: String? = null, val source: ClaimSourcePatch? = null)

PodResourceClaim references exactly one ResourceClaim through a ClaimSource. It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. Containers that need access to the ResourceClaim reference it with this name.

Constructors

Link copied to clipboard
constructor(name: String? = null, source: ClaimSourcePatch? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.

Link copied to clipboard

Source describes where to find the ResourceClaim.