resource.v1beta1.deviceClaimConfiguration
"DeviceClaimConfiguration is used for configuration parameters in DeviceClaim."
Index
Fields
fn withRequests
withRequests(requests)
"Requests lists the names of requests where the configuration applies. If empty, it applies to all requests."
fn withRequestsMixin
withRequestsMixin(requests)
"Requests lists the names of requests where the configuration applies. If empty, it applies to all requests."
Note: This function appends passed data to existing values
obj opaque
"OpaqueDeviceConfiguration contains configuration parameters for a driver in a format defined by the driver vendor."
fn opaque.withDriver
withDriver(driver)
"Driver is used to determine which kubelet plugin needs to be passed these configuration parameters.\n\nAn admission policy provided by the driver developer could use this to decide whether it needs to validate them.\n\nMust be a DNS subdomain and should end with a DNS domain owned by the vendor of the driver."
fn opaque.withParameters
withParameters(parameters)
"RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta json:\",inline\"
\n\t\tMyPlugin runtime.Object json:\"myPlugin\"
\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string json:\"aOption\"
\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta json:\",inline\"
\n\t\tMyPlugin runtime.RawExtension json:\"myPlugin\"
\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string json:\"aOption\"
\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)"
fn opaque.withParametersMixin
withParametersMixin(parameters)
"RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta json:\",inline\"
\n\t\tMyPlugin runtime.Object json:\"myPlugin\"
\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string json:\"aOption\"
\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta json:\",inline\"
\n\t\tMyPlugin runtime.RawExtension json:\"myPlugin\"
\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string json:\"aOption\"
\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)"
Note: This function appends passed data to existing values