We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70108d8 + ec12f9a commit 744dd80Copy full SHA for 744dd80
pkg/asset/agent/installconfig.go
@@ -390,6 +390,11 @@ func warnUnusedConfig(installConfig *types.InstallConfig) {
390
fieldPath := field.NewPath("BootstrapInPlace", "InstallationDisk")
391
logrus.Warnf(fmt.Sprintf("%s: %s is ignored", fieldPath, installConfig.BootstrapInPlace.InstallationDisk))
392
}
393
+
394
+ if installConfig.CPUPartitioning != "None" {
395
+ fieldPath := field.NewPath("CPUPartitioning")
396
+ logrus.Warnf(fmt.Sprintf("%s: %s is ignored", fieldPath, installConfig.CPUPartitioning))
397
+ }
398
399
400
// GetReplicaCount gets the configured master and worker replicas.
0 commit comments