mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-24 15:57:00 +00:00
42 lines
1.8 KiB
Modula-2
42 lines
1.8 KiB
Modula-2
module sigs.k8s.io/kustomize/functions/examples/validator-kubeval
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/instrumenta/kubeval v0.0.0-20190918223246-8d013ec9fc56
|
|
sigs.k8s.io/kustomize/kyaml v0.7.1
|
|
)
|
|
|
|
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/fatih/color v1.7.0 // indirect
|
|
github.com/go-errors/errors v1.0.1 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.5 // 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/hashicorp/errwrap v1.0.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/mailru/easyjson v0.7.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.4 // indirect
|
|
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
|
|
github.com/spf13/cobra v1.4.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
|
|
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
|
|
github.com/xeipuuv/gojsonschema v0.0.0-20180816142147-da425ebb7609 // indirect
|
|
github.com/xlab/treeprint v1.1.0 // indirect
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4 // indirect
|
|
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
sigs.k8s.io/yaml v1.2.0 // indirect
|
|
)
|