ResourceClaimSpecArgs

data class ResourceClaimSpecArgs(val controller: Output<String>? = null, val devices: Output<DeviceClaimArgs>? = null) : ConvertibleToJava<ResourceClaimSpecArgs>

ResourceClaimSpec defines what is being requested in a ResourceClaim and how to configure it.

Constructors

Link copied to clipboard
constructor(controller: Output<String>? = null, devices: Output<DeviceClaimArgs>? = null)

Properties

Link copied to clipboard
val controller: Output<String>? = null

Controller is the name of the DRA driver that is meant to handle allocation of this claim. If empty, allocation is handled by the scheduler while scheduling a pod. Must be a DNS subdomain and should end with a DNS domain owned by the vendor of the driver. This is an alpha field and requires enabling the DRAControlPlaneController feature gate.

Link copied to clipboard
val devices: Output<DeviceClaimArgs>? = null

Devices defines how to request devices.

Functions

Link copied to clipboard
open override fun toJava(): ResourceClaimSpecArgs