diff --git a/pkg/spi/types.go b/pkg/spi/types.go index 0f118a0..ae2d8c0 100644 --- a/pkg/spi/types.go +++ b/pkg/spi/types.go @@ -105,7 +105,8 @@ func NewPathExpressionExtractor(paths []string) HostExtractor { return foundHosts, nil } - return nil, fmt.Errorf("neither string nor slice of strings found at path %v", splitPath) + // TODO: Nothing found yet, move on no error? + return []string{}, nil } return func(target *unstructured.Unstructured) ([]string, error) {