Skip to content

Commit

Permalink
checkup: Change CPUs count to four
Browse files Browse the repository at this point in the history
Currently the vmi-under-test is using 3 CPUs, in order to be able to run
the checkup and avoid getting the CNV-31584 [0] Jira Bug.
However, this configuration is sub-optimal, as the CPUs currently
running the Oslat are sibling to the non-isolated CPU 0.
Now that the CNV-31584 Bug is resolved, optimizing the checkup's
performance by requesting for a full core to run the Oslat test.
Setting the CPUs requested to four.

[0] https://issues.redhat.com/browse/CNV-31584

Signed-off-by: Ram Lavi <ralavi@redhat.com>
  • Loading branch information
RamLavi authored and orelmisan committed Jan 2, 2024
1 parent a0c7dee commit c5c9130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/internal/checkup/checkup.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func (c *Checkup) waitForVMIDeletion(ctx context.Context) error {
func newRealtimeVMI(checkupConfig config.Config) *kvcorev1.VirtualMachineInstance {
const (
CPUSocketsCount = 1
CPUCoresCount = 3
CPUCoresCount = 4
CPUTreadsCount = 1
hugePageSize = "1Gi"
guestMemory = "4Gi"
Expand Down

0 comments on commit c5c9130

Please sign in to comment.