Skip to content

Commit

Permalink
fix: updates the perf script to use lvms
Browse files Browse the repository at this point in the history
Replaces instances of lvm-operator wuth lvms in the operf.go.

Signed-off-by: N Balachandran <[email protected]>
  • Loading branch information
nbalacha committed Dec 14, 2022
1 parent 35d2b92 commit b2a85db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/performance/operf.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ const (

const (
UsageHelp = `Usage of operf:
This script retrieves cpu and memory usage metrics for all the workloads created by the LVM operator.
This script retrieves cpu and memory usage metrics for all the workloads created by the logical volume manager storage (lvms).
It creates <instances> of "busybox" pods using PVCs provisioned via the Storage class provided
Example:
# go run test/performance/operf.go -token sha256~cj81ClyUYu7g05y8K-uLWm2AbrKTbNEQ96hEJcWStQo -sc odf-lvm-vg1 -instances 16
# go run test/performance/operf.go -token sha256~cj81ClyUYu7g05y8K-uLWm2AbrKTbNEQ96hEJcWStQo -sc lvms-vg1 -instances 16
Parameters:`
)
Expand Down Expand Up @@ -139,7 +139,7 @@ func main() {

// Retrieve and print metrics
units := []LvmUnitMetrics{
{Namespace: *TestNamespace, Name: "lvm-operator-controller-manager", WorkloadType: "deployment"},
{Namespace: *TestNamespace, Name: "lvms-operator", WorkloadType: "deployment"},
{Namespace: *TestNamespace, Name: "topolvm-controller", WorkloadType: "deployment"},
{Namespace: *TestNamespace, Name: "topolvm-node", WorkloadType: "daemonset"},
{Namespace: *TestNamespace, Name: "vg-manager", WorkloadType: "daemonset"},
Expand Down

0 comments on commit b2a85db

Please sign in to comment.