Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ func PPCTestCreateUtil() *PPCTestIntegration {

var _ = Describe("[rfe_id: 38968] PerformanceProfile setup helper and platform awareness", func() {
mustgatherDir := testutils.MustGatherDir
mcpName := testutils.RoleWorkerCNF
ntoImage := testutils.NTOImage
Context("PPC Sanity Tests", func() {
ppcIntgTest := PPCTestCreateUtil()
Expand All @@ -78,7 +79,7 @@ var _ = Describe("[rfe_id: 38968] PerformanceProfile setup helper and platform a
cmdArgs := []string{
fmt.Sprintf("%s:%s:z", mustgatherDir, mustgatherDir),
ntoImage,
"--mcp-name=worker",
fmt.Sprintf("--mcp-name=%s", mcpName),
fmt.Sprintf("--reserved-cpu-count=%d", reservedCpuCount),
fmt.Sprintf("--rt-kernel=%t", true),
fmt.Sprintf("--power-consumption-mode=%s", "low-latency"),
Expand Down Expand Up @@ -111,7 +112,7 @@ var _ = Describe("[rfe_id: 38968] PerformanceProfile setup helper and platform a
cmdArgs := []string{
fmt.Sprintf("%s:%s:z", mustgatherDir, mustgatherDir),
ntoImage,
"--mcp-name=worker",
fmt.Sprintf("--mcp-name=%s", mcpName),
fmt.Sprintf("--reserved-cpu-count=%d", 2),
fmt.Sprintf("--rt-kernel=%t", true),
fmt.Sprintf("--power-consumption-mode=%s", "low-latency"),
Expand Down Expand Up @@ -142,7 +143,7 @@ var _ = Describe("[rfe_id: 38968] PerformanceProfile setup helper and platform a
cmdArgs := []string{
fmt.Sprintf("%s:%s:z", mustgatherDir, mustgatherDir),
ntoImage,
"--mcp-name=worker",
fmt.Sprintf("--mcp-name=%s", mcpName),
fmt.Sprintf("--reserved-cpu-count=%d", 2),
fmt.Sprintf("--rt-kernel=%t", true),
fmt.Sprintf("--power-consumption-mode=%s", "low-latency"),
Expand Down Expand Up @@ -173,7 +174,7 @@ var _ = Describe("[rfe_id: 38968] PerformanceProfile setup helper and platform a
cmdArgs := []string{
fmt.Sprintf("%s:%s:z", mustgatherDir, mustgatherDir),
ntoImage,
"--mcp-name=worker",
fmt.Sprintf("--mcp-name=%s", mcpName),
fmt.Sprintf("--reserved-cpu-count=%d", 100),
fmt.Sprintf("--rt-kernel=%t", true),
fmt.Sprintf("--power-consumption-mode=%s", "low-latency"),
Expand Down