We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d010f53 commit ec12f9aCopy full SHA for ec12f9a
pkg/asset/agent/installconfig.go
@@ -387,4 +387,9 @@ func warnUnusedConfig(installConfig *types.InstallConfig) {
387
fieldPath := field.NewPath("BootstrapInPlace", "InstallationDisk")
388
logrus.Warnf(fmt.Sprintf("%s: %s is ignored", fieldPath, installConfig.BootstrapInPlace.InstallationDisk))
389
}
390
+
391
+ if installConfig.CPUPartitioning != "None" {
392
+ fieldPath := field.NewPath("CPUPartitioning")
393
+ logrus.Warnf(fmt.Sprintf("%s: %s is ignored", fieldPath, installConfig.CPUPartitioning))
394
+ }
395
0 commit comments