Skip to content

Commit

Permalink
Vmcleaner improvement (#1488)
Browse files Browse the repository at this point in the history
* change regexp
  • Loading branch information
kasiakepka committed Sep 17, 2019
1 parent 328499f commit 0a361e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions development/tools/cmd/vmscollector/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
compute "google.golang.org/api/compute/v1"
)

const defaultVMNameRegexp = "^kyma-integration-test-.*"
const defaultJobLabelRegexp = "^kyma-integration$"
const defaultVMNameRegexp = ".*-integration-test-.*"
const defaultJobLabelRegexp = ".*-integration$"

var (
project = flag.String("project", "", "Project ID [Required]")
Expand Down

0 comments on commit 0a361e3

Please sign in to comment.