Skip to content

Commit

Permalink
Fix labelSelector typo
Browse files Browse the repository at this point in the history
Signed-off-by: Raul Sevilla <[email protected]>
  • Loading branch information
rsevilla87 committed Mar 10, 2022
1 parent 6d57a25 commit 1f64053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/burner/pre_load.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func PreLoadImages(job Executor) {
log.Infof("Pre-load: Sleeping for %v", job.Config.PreLoadPeriod)
time.Sleep(job.Config.PreLoadPeriod)
log.Infof("Pre-load: Deleting namespace %s", preLoadNs)
CleanupNamespaces(ClientSet, v1.ListOptions{LabelSelector: "kube-burner-preload=yes"})
CleanupNamespaces(ClientSet, v1.ListOptions{LabelSelector: "kube-burner-preload=true"})
}

func getJobImages(job Executor) ([]string, error) {
Expand Down

0 comments on commit 1f64053

Please sign in to comment.