Skip to content

Commit

Permalink
fix: k6s
Browse files Browse the repository at this point in the history
  • Loading branch information
ymktmk committed Jul 19, 2024
1 parent c3e6228 commit 900a762
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/k6/k6.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func NewK6(template, vus, duration, rps, parallelism, file string) (*K6, error)
jsFile = file
}

k6Res := schema.GroupVersionResource{Group: "k6.io", Version: "v1alpha1", Resource: "k6s"}
k6Res := schema.GroupVersionResource{Group: "k6.io", Version: "v1alpha1", Resource: "testruns"}

k6 := &unstructured.Unstructured{
Object: map[string]interface{}{
Expand Down Expand Up @@ -166,7 +166,7 @@ func (k *K6) CreateK6() error {
gvrMachineSet := schema.GroupVersionResource{
Group: "k6.io",
Version: "v1alpha1",
Resource: "k6s",
Resource: "testruns",
}

stopCh := make(chan struct{})
Expand Down

0 comments on commit 900a762

Please sign in to comment.