mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-30 01:46:23 +00:00
39 lines
1.5 KiB
Modula-2
39 lines
1.5 KiB
Modula-2
module sigs.k8s.io/kustomize/functions/examples/application-cr
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
k8s.io/apimachinery v0.18.3
|
|
sigs.k8s.io/application v0.8.2
|
|
sigs.k8s.io/kustomize/kyaml v0.7.1
|
|
sigs.k8s.io/yaml v1.2.0
|
|
)
|
|
|
|
require (
|
|
github.com/PuerkitoBio/purell v1.1.1 // indirect
|
|
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/evanphx/json-patch v4.11.0+incompatible // indirect
|
|
github.com/go-errors/errors v1.0.1 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.3 // indirect
|
|
github.com/go-openapi/jsonreference v0.19.3 // indirect
|
|
github.com/go-openapi/spec v0.19.5 // indirect
|
|
github.com/go-openapi/swag v0.19.5 // indirect
|
|
github.com/gogo/protobuf v1.3.1 // indirect
|
|
github.com/google/gofuzz v1.1.0 // indirect
|
|
github.com/json-iterator/go v1.1.8 // indirect
|
|
github.com/mailru/easyjson v0.7.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect
|
|
golang.org/x/net v0.0.0-20191004110552-13f9640d40b9 // indirect
|
|
golang.org/x/text v0.3.2 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v2 v2.3.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20200121175148-a6ecf24a6d71 // indirect
|
|
k8s.io/api v0.17.0 // indirect
|
|
k8s.io/klog v1.0.0 // indirect
|
|
sigs.k8s.io/controller-runtime v0.4.0 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v3 v3.0.0 // indirect
|
|
)
|