feat: add kustomize support (#466)
Co-authored-by:
Noaa Barki <noaabarki@Noaas-MacBook-Pro.local>
Showing
+812 -58
cmd/kustomize/main.go
0 → 100644
cmd/kustomize/main_test.go
0 → 100644
... | @@ -22,6 +22,8 @@ require ( | ... | @@ -22,6 +22,8 @@ require ( |
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b | ||
) | ) | ||
require sigs.k8s.io/yaml v1.2.0 // indirect | |||
require ( | require ( | ||
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect | github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | github.com/davecgh/go-spew v1.1.1 // indirect | ||
... | @@ -38,7 +40,7 @@ require ( | ... | @@ -38,7 +40,7 @@ require ( |
github.com/pelletier/go-toml v1.2.0 // indirect | github.com/pelletier/go-toml v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 | github.com/pkg/errors v0.9.1 | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/afero v1.1.2 // indirect | github.com/spf13/afero v1.8.1 // indirect | ||
github.com/spf13/cast v1.3.0 // indirect | github.com/spf13/cast v1.3.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.0.0 // indirect | github.com/spf13/jwalterweatherman v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | github.com/spf13/pflag v1.0.5 // indirect | ||
... | @@ -48,8 +50,8 @@ require ( | ... | @@ -48,8 +50,8 @@ require ( |
github.com/tklauser/numcpus v0.2.2 // indirect | github.com/tklauser/numcpus v0.2.2 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
golang.org/x/sys v0.0.0-20210917161153-d61c044b1678 // indirect | golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect | ||
golang.org/x/text v0.3.3 // indirect | golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/ini.v1 v1.51.0 // indirect | gopkg.in/ini.v1 v1.51.0 // indirect | ||
) | ) | ||
... | ... |
This diff is collapsed.
pkg/executor/executor.go
0 → 100644
pkg/executor/executor_test.go
0 → 100644
Please register or sign in to comment