mirror of
https://github.com/kyverno/policy-reporter.git
synced 2024-12-14 11:57:32 +00:00
0de8e8bead
* Internal Rewrite Signed-off-by: Frank Jogeleit <frank.jogeleit@web.de>
67 lines
2.8 KiB
Modula-2
67 lines
2.8 KiB
Modula-2
module github.com/kyverno/policy-reporter
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/aws/aws-sdk-go v1.42.8
|
|
github.com/mattn/go-sqlite3 v1.14.9
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/prometheus/client_model v0.2.0
|
|
github.com/spf13/cobra v1.2.1
|
|
github.com/spf13/viper v1.9.0
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
k8s.io/api v0.22.4
|
|
k8s.io/apimachinery v0.22.4
|
|
k8s.io/client-go v0.22.4
|
|
)
|
|
|
|
require (
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.2 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/evanphx/json-patch v4.11.0+incompatible // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/go-logr/logr v1.2.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/googleapis/gnostic v0.5.5 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/magiconair/properties v1.8.5 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
|
|
github.com/mitchellh/mapstructure v1.4.2 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/pelletier/go-toml v1.9.4 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/prometheus/common v0.32.1 // indirect
|
|
github.com/prometheus/procfs v0.7.3 // indirect
|
|
github.com/spf13/afero v1.6.0 // indirect
|
|
github.com/spf13/cast v1.4.1 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.2.0 // indirect
|
|
golang.org/x/net v0.0.0-20211118161319-6a13c67c3ce4 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
|
|
golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1 // indirect
|
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/ini.v1 v1.64.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
k8s.io/klog/v2 v2.30.0 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c // indirect
|
|
k8s.io/utils v0.0.0-20211116205334-6203023598ed // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
)
|