Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 652 Bytes

File metadata and controls

20 lines (14 loc) · 652 Bytes

Kubevirt::V1ComponentConfig

Properties

Name Type Description Notes
node_placement V1NodePlacement [optional]
replicas Integer replicas indicates how many replicas should be created for each KubeVirt infrastructure component (like virt-api or virt-controller). Defaults to 2. WARNING: this is an advanced feature that prevents auto-scaling for core kubevirt components. Please use with caution! [optional]

Example

require 'kubevirt'

instance = Kubevirt::V1ComponentConfig.new(
  node_placement: null,
  replicas: null
)