Skip to content

Commit

Permalink
OCPBUGS-13662: Ignore CPUPartitioning for ABI
Browse files Browse the repository at this point in the history
Signed-off-by: Pawan Pinjarkar <ppinjark@redhat.com>
  • Loading branch information
pawanpinjarkar committed Jun 1, 2023
1 parent d010f53 commit ec12f9a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/asset/agent/installconfig.go
Expand Up @@ -387,4 +387,9 @@ func warnUnusedConfig(installConfig *types.InstallConfig) {
fieldPath := field.NewPath("BootstrapInPlace", "InstallationDisk")
logrus.Warnf(fmt.Sprintf("%s: %s is ignored", fieldPath, installConfig.BootstrapInPlace.InstallationDisk))
}

if installConfig.CPUPartitioning != "None" {
fieldPath := field.NewPath("CPUPartitioning")
logrus.Warnf(fmt.Sprintf("%s: %s is ignored", fieldPath, installConfig.CPUPartitioning))
}
}

0 comments on commit ec12f9a

Please sign in to comment.