-
Notifications
You must be signed in to change notification settings - Fork 24
/
Gopkg.toml
78 lines (64 loc) · 1.76 KB
/
Gopkg.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# These packages aren't really required by the application, but we need them in
# order to build and run the code Kubernetes API code generators.
#
required = [
"k8s.io/code-generator/cmd/client-gen",
"k8s.io/code-generator/cmd/deepcopy-gen",
"k8s.io/code-generator/cmd/defaulter-gen",
"k8s.io/code-generator/cmd/informer-gen",
"k8s.io/code-generator/cmd/lister-gen",
"k8s.io/gengo/examples/defaulter-gen/generators",
]
#
# Reduce the size of the `vendor` directory excluding unused packages, tests and
# other files that aren't needed.
#
[prune]
go-tests = true
non-go = true
unused-packages = true
#
# For the Kubernetes code generator we need to make sure that everything is
# included, as we need the `generate-internal-groups.sh` script to run it.
#
[[prune.project]]
name = "k8s.io/code-generator"
non-go = false
unused-packages = false
[[constraint]]
name = "github.com/golang/glog"
revision = "23def4e6c14b4da8ac2ed8007337bc5eb5007998"
[[constraint]]
name = "github.com/prometheus/client_golang"
version = "0.8.0"
[[constraint]]
name = "k8s.io/api"
version = "kubernetes-1.10.1"
[[constraint]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.10.1"
[[constraint]]
name = "k8s.io/client-go"
version = "kubernetes-1.10.1"
[[constraint]]
name = "k8s.io/code-generator"
version = "kubernetes-1.10.1"
[[constraint]]
name = "golang.org/x/sync"
branch = "master"
[[constraint]]
name = "github.com/ghodss/yaml"
branch = "master"
[[constraint]]
name = "github.com/moolitayer/awx-client-go"
version = "=0.0.4"
[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.2"
[[constraint]]
name = "github.com/spf13/pflag"
version = "1.0.1"
[[constraint]]
name = "github.com/yaacov/observer"
version = "1.5.11"