We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9eb412d + 8ed634a commit 493607cCopy full SHA for 493607c
pkg/kepctl/query.go
@@ -23,7 +23,7 @@ import (
23
"github.com/pkg/errors"
24
25
"k8s.io/enhancements/pkg/kepval/keps"
26
- "k8s.io/enhancements/pkg/kepval/keps/validations"
+ "k8s.io/enhancements/pkg/kepval/util"
27
)
28
29
var (
@@ -56,7 +56,7 @@ type QueryOpts struct {
56
// Validate checks the args and cleans them up if needed
57
func (c *QueryOpts) Validate(args []string) error {
58
if len(c.SIG) > 0 {
59
- sigs, err := selectByRegexp(validations.Sigs(), c.SIG)
+ sigs, err := selectByRegexp(util.Groups(), c.SIG)
60
if err != nil {
61
return err
62
}
0 commit comments