mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +00:00
support for more helm template args (#4926)
* support for more helm template args * move templateArgs and unit tests to api/types * undo package name change * use our own simple helm chart instead of forking one * add argument to AsHelmArgs * code review * lint errors
This commit is contained in:
@@ -11,6 +11,7 @@ import (
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
. "sigs.k8s.io/kustomize/kyaml/copyutil"
|
||||
"sigs.k8s.io/kustomize/kyaml/filesys"
|
||||
)
|
||||
|
||||
// TestDiff_identical verifies identical directories return an empty set
|
||||
@@ -306,7 +307,7 @@ func TestCopyDir(t *testing.T) {
|
||||
|
||||
d := t.TempDir()
|
||||
|
||||
err = CopyDir(s, d)
|
||||
err = CopyDir(filesys.MakeFsOnDisk(), s, d)
|
||||
assert.NoError(t, err)
|
||||
|
||||
diff, err := Diff(d, v)
|
||||
|
||||
Reference in New Issue
Block a user