github.com/openshift/installer@v1.4.17/pkg/types/baremetal/validation/machinepool.go (about)

     1  package validation
     2  
     3  import (
     4  	"k8s.io/apimachinery/pkg/util/validation/field"
     5  
     6  	"github.com/openshift/installer/pkg/types/baremetal"
     7  )
     8  
     9  // ValidateMachinePool checks that the specified machine pool is valid.
    10  func ValidateMachinePool(p *baremetal.MachinePool, fldPath *field.Path) field.ErrorList {
    11  	return field.ErrorList{}
    12  }