forked from aquasecurity/starboard-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
31 lines (28 loc) · 973 Bytes
/
Copy pathgo.mod
File metadata and controls
31 lines (28 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module github.com/aquasecurity/starboard-security-operator
go 1.14
require (
github.com/aquasecurity/starboard v0.2.6
github.com/caarlos0/env/v6 v6.2.2
github.com/go-logr/logr v0.1.0
github.com/google/go-containerregistry v0.1.1
github.com/google/uuid v1.1.1
github.com/onsi/ginkgo v1.12.1
github.com/onsi/gomega v1.10.1
github.com/spf13/cobra v1.0.0
github.com/stretchr/testify v1.5.1
k8s.io/api v0.19.0-alpha.3
k8s.io/apimachinery v0.19.0-alpha.3
k8s.io/client-go v0.19.0-alpha.3
k8s.io/klog v1.0.0
k8s.io/utils v0.0.0-20200603063816-c1c6865ac451
sigs.k8s.io/controller-runtime v0.6.1
)
replace (
k8s.io/api => k8s.io/api v0.18.4
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.18.4
k8s.io/apimachinery => k8s.io/apimachinery v0.18.4
k8s.io/cli-runtime => k8s.io/cli-runtime v0.18.4
k8s.io/client-go => k8s.io/client-go v0.18.4
k8s.io/code-generator => k8s.io/code-generator v0.18.4
k8s.io/metrics => k8s.io/metrics v0.18.4
)