Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.68 KB

V1InstancetypeMatcher.md

File metadata and controls

26 lines (20 loc) · 1.68 KB

Kubevirt::V1InstancetypeMatcher

Properties

Name Type Description Notes
infer_from_volume String InferFromVolume lists the name of a volume that should be used to infer or discover the instancetype to be used through known annotations on the underlying resource. Once applied to the InstancetypeMatcher this field is removed. [optional]
infer_from_volume_failure_policy String InferFromVolumeFailurePolicy controls what should happen on failure when inferring the instancetype. Allowed values are: "RejectInferFromVolumeFailure" and "IgnoreInferFromVolumeFailure". If not specified, "RejectInferFromVolumeFailure" is used by default. [optional]
kind String Kind specifies which instancetype resource is referenced. Allowed values are: "VirtualMachineInstancetype" and "VirtualMachineClusterInstancetype". If not specified, "VirtualMachineClusterInstancetype" is used by default. [optional]
name String Name is the name of the VirtualMachineInstancetype or VirtualMachineClusterInstancetype [optional]
revision_name String RevisionName specifies a ControllerRevision containing a specific copy of the VirtualMachineInstancetype or VirtualMachineClusterInstancetype to be used. This is initially captured the first time the instancetype is applied to the VirtualMachineInstance. [optional]

Example

require 'kubevirt'

instance = Kubevirt::V1InstancetypeMatcher.new(
  infer_from_volume: null,
  infer_from_volume_failure_policy: null,
  kind: null,
  name: null,
  revision_name: null
)