2020-10-07 18:12:31 +00:00
|
|
|
module github.com/kyverno/kyverno
|
2020-01-14 04:37:21 +00:00
|
|
|
|
2021-01-09 02:47:28 +00:00
|
|
|
go 1.14
|
2020-01-14 04:37:21 +00:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/cenkalti/backoff v2.2.1+incompatible
|
2020-10-28 01:28:30 +00:00
|
|
|
github.com/cornelk/hashmap v1.0.1
|
2021-03-23 17:34:03 +00:00
|
|
|
github.com/distribution/distribution v2.7.1+incompatible
|
|
|
|
github.com/docker/distribution v2.7.1+incompatible // indirect
|
2021-02-25 23:21:55 +00:00
|
|
|
github.com/evanphx/json-patch/v5 v5.2.0
|
2021-02-08 04:26:56 +00:00
|
|
|
github.com/fatih/color v1.9.0
|
2020-09-03 15:54:37 +00:00
|
|
|
github.com/gardener/controller-manager-library v0.2.0
|
2020-08-05 16:11:23 +00:00
|
|
|
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
|
2021-02-08 04:26:56 +00:00
|
|
|
github.com/go-git/go-billy/v5 v5.0.0
|
|
|
|
github.com/go-git/go-git/v5 v5.2.0
|
|
|
|
github.com/go-logr/logr v0.3.0
|
|
|
|
github.com/googleapis/gnostic v0.5.4
|
2020-01-14 04:37:21 +00:00
|
|
|
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af
|
2020-06-25 19:00:35 +00:00
|
|
|
github.com/julienschmidt/httprouter v1.3.0
|
2021-02-08 04:26:56 +00:00
|
|
|
github.com/kataras/tablewriter v0.0.0-20180708051242-e063d29b7c23
|
|
|
|
github.com/lensesio/tableprinter v0.0.0-20201125135848-89e81fc956e7
|
2020-08-05 16:11:23 +00:00
|
|
|
github.com/mattbaird/jsonpatch v0.0.0-20171005235357-81af80346b1a
|
2020-09-10 17:19:36 +00:00
|
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
2020-01-14 04:37:21 +00:00
|
|
|
github.com/minio/minio v0.0.0-20200114012931-30922148fbb5
|
2021-02-08 04:26:56 +00:00
|
|
|
github.com/onsi/ginkgo v1.14.1
|
|
|
|
github.com/onsi/gomega v1.10.2
|
2021-03-23 17:34:03 +00:00
|
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
2021-01-05 07:17:17 +00:00
|
|
|
github.com/orcaman/concurrent-map v0.0.0-20190826125027-8c72a8bb44f6
|
2021-02-08 03:46:50 +00:00
|
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
2020-07-15 03:23:30 +00:00
|
|
|
github.com/pkg/errors v0.9.1
|
2020-11-25 01:48:54 +00:00
|
|
|
github.com/sirupsen/logrus v1.6.0 // indirect
|
2021-02-08 04:26:56 +00:00
|
|
|
github.com/spf13/cobra v1.1.1
|
|
|
|
github.com/stretchr/testify v1.6.1
|
2020-08-05 16:11:23 +00:00
|
|
|
gopkg.in/yaml.v2 v2.3.0
|
2021-02-08 04:26:56 +00:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
|
2020-01-14 04:37:21 +00:00
|
|
|
gotest.tools v2.2.0+incompatible
|
2021-02-08 04:26:56 +00:00
|
|
|
k8s.io/api v0.20.2
|
|
|
|
k8s.io/apiextensions-apiserver v0.20.2
|
|
|
|
k8s.io/apimachinery v0.20.2
|
|
|
|
k8s.io/cli-runtime v0.20.2
|
|
|
|
k8s.io/client-go v0.20.2
|
|
|
|
k8s.io/klog/v2 v2.4.0
|
|
|
|
k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd
|
|
|
|
sigs.k8s.io/controller-runtime v0.8.1
|
2020-12-24 01:48:00 +00:00
|
|
|
sigs.k8s.io/kustomize/api v0.7.0
|
|
|
|
sigs.k8s.io/kustomize/kyaml v0.10.3
|
2020-08-05 16:11:23 +00:00
|
|
|
sigs.k8s.io/yaml v1.2.0
|
2020-01-14 04:37:21 +00:00
|
|
|
)
|
|
|
|
|
2020-01-14 04:41:26 +00:00
|
|
|
// Added for go1.13 migration https://github.com/golang/go/issues/32805
|
2020-06-25 19:00:35 +00:00
|
|
|
replace (
|
|
|
|
github.com/gorilla/rpc v1.2.0+incompatible => github.com/gorilla/rpc v1.2.0
|
2021-04-16 23:17:00 +00:00
|
|
|
github.com/jmespath/go-jmespath => github.com/kyverno/go-jmespath v0.4.1-0.20210302163943-f30eab0a3ed6
|
2020-06-25 19:00:35 +00:00
|
|
|
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20200306081859-6a048a382944
|
|
|
|
k8s.io/component-base => k8s.io/component-base v0.0.0-20190612130303-4062e14deebe
|
|
|
|
)
|