move globPatterns to edit pkg and make it public

This commit is contained in:
Takuro Wada
2019-06-25 11:21:29 +09:00
parent f11d083b0a
commit d34c82c905
7 changed files with 34 additions and 81 deletions

View File

@@ -21,6 +21,7 @@ import (
"log"
"github.com/spf13/cobra"
"sigs.k8s.io/kustomize/v3/pkg/commands/edit"
"sigs.k8s.io/kustomize/v3/pkg/commands/kustfile"
"sigs.k8s.io/kustomize/v3/pkg/fs"
"sigs.k8s.io/kustomize/v3/pkg/patch"
@@ -70,7 +71,7 @@ func (o *addPatchOptions) Complete(cmd *cobra.Command, args []string) error {
// RunAddPatch runs addPatch command (do real work).
func (o *addPatchOptions) RunAddPatch(fSys fs.FileSystem) error {
patches, err := globPatterns(fSys, o.patchFilePaths)
patches, err := edit.GlobPatterns(fSys, o.patchFilePaths)
if err != nil {
return err
}