Allow CPU count check to be disabled using --force
parent
fc8e032bdc
commit
9cfd2073ba
|
@ -741,7 +741,7 @@ func validateFlags(drvName string) {
|
||||||
} else {
|
} else {
|
||||||
cpuCount = viper.GetInt(cpus)
|
cpuCount = viper.GetInt(cpus)
|
||||||
}
|
}
|
||||||
if cpuCount < minimumCPUS {
|
if cpuCount < minimumCPUS && !viper.GetBool(force) {
|
||||||
exit.UsageT("Requested cpu count {{.requested_cpus}} is less than the minimum allowed of {{.minimum_cpus}}", out.V{"requested_cpus": cpuCount, "minimum_cpus": minimumCPUS})
|
exit.UsageT("Requested cpu count {{.requested_cpus}} is less than the minimum allowed of {{.minimum_cpus}}", out.V{"requested_cpus": cpuCount, "minimum_cpus": minimumCPUS})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue