github.com/openshift/installer@v1.4.17/pkg/types/baremetal/machinepool.go (about) 1 package baremetal 2 3 // MachinePool stores the configuration for a machine pool installed 4 // on bare metal. 5 type MachinePool struct { 6 } 7 8 // Set sets the values from `required` to `a`. 9 func (l *MachinePool) Set(required *MachinePool) { 10 if required == nil || l == nil { 11 return 12 } 13 }