Struct k8s_openapi::api::core::v1::PodResourceClaim
source · pub struct PodResourceClaim {
pub name: String,
pub resource_claim_name: Option<String>,
pub resource_claim_template_name: Option<String>,
}
Expand description
PodResourceClaim references exactly one ResourceClaim, either directly or by naming a ResourceClaimTemplate which is then turned into a ResourceClaim for the pod.
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.
Fields§
§name: String
Name uniquely identifies this resource claim inside the pod. This must be a DNS_LABEL.
resource_claim_name: Option<String>
ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.
Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.
resource_claim_template_name: Option<String>
ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod.
The template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.
This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.
Exactly one of ResourceClaimName and ResourceClaimTemplateName must be set.
Trait Implementations§
source§impl Clone for PodResourceClaim
impl Clone for PodResourceClaim
source§fn clone(&self) -> PodResourceClaim
fn clone(&self) -> PodResourceClaim
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PodResourceClaim
impl Debug for PodResourceClaim
source§impl DeepMerge for PodResourceClaim
impl DeepMerge for PodResourceClaim
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for PodResourceClaim
impl Default for PodResourceClaim
source§fn default() -> PodResourceClaim
fn default() -> PodResourceClaim
source§impl<'de> Deserialize<'de> for PodResourceClaim
impl<'de> Deserialize<'de> for PodResourceClaim
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
source§impl PartialEq for PodResourceClaim
impl PartialEq for PodResourceClaim
source§impl Serialize for PodResourceClaim
impl Serialize for PodResourceClaim
impl StructuralPartialEq for PodResourceClaim
Auto Trait Implementations§
impl Freeze for PodResourceClaim
impl RefUnwindSafe for PodResourceClaim
impl Send for PodResourceClaim
impl Sync for PodResourceClaim
impl Unpin for PodResourceClaim
impl UnwindSafe for PodResourceClaim
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)