forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gopkg.toml
133 lines (107 loc) · 3.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
# TODO: fork the repo to checkin artifacts, or find an alternative repo that has artifacts available.
# This repo includes only istio-generated files.
### BEGIN Mixer codegen deps
required = [
"github.com/gogo/protobuf/proto",
"github.com/gogo/protobuf/jsonpb",
"github.com/gogo/protobuf/protoc-gen-gogoslick",
"github.com/gogo/protobuf/gogoproto",
]
### END Mixer codegen deps
[[constraint]]
name = "github.com/googleapis/googleapis"
source = "https://github.com/costinm/googleapis.git"
[[constraint]]
name = "google.golang.org/grpc"
version = "^1.8.2" # match istio/api
# When necessary, override transitive contraints that might be pinned
# to older versions (e.g. ingress-nginx pinned to 1.8).
#
# kubernetes has a quarterly release cycle. For now the k8s
# dependencies below follow this convention, but that could possibly
# change in the future as repos are further decoupled from
# kubernetes/kubernetes proper.
#
# client-go release-6.0 corresponds to k8s release-1.9 branch. See
# https://github.com/kubernetes/client-go/tree/release-6.0#compatibility-matrix
# for details.
[[override]]
name = "k8s.io/client-go"
branch = "release-6.0"
[[override]]
name = "k8s.io/apimachinery"
branch = "release-1.9"
[[override]]
name = "k8s.io/api"
branch = "release-1.9"
[[constraint]]
name = "k8s.io/apiextensions-apiserver"
branch = "release-1.9"
[[constraint]]
name = "k8s.io/apiserver"
branch = "release-1.9"
# TODO(https://github.com/istio/istio/issues/2413). Keep
# k8s.io/ingress-nginx pinned to an older version until istio ingress code
# is refactored.
#
# istio.io/istio/pilot/adapter/config/ingress uses the following nginx
# controller packages from an older version of k8s.io/ingress which
# have since been made internal and are no longer available.
#
# "k8s.io/ingress-nginx/core/pkg/ingress/status"
# "k8s.io/ingress-nginx/core/pkg/ingress/store"
# "k8s.io/ingress-nginx/core/pkg/ingress/annotations/class"
[[constraint]]
name = "k8s.io/ingress-nginx"
revision = "0c6f15e372c831de52fcc393932540bb3a6d51b5"
[[constraint]]
name = "github.com/russross/blackfriday"
revision = "4048872b16cc0fc2c5fd9eacf0ed2c2fedaa0c8c"
[[constraint]]
name = "code.cloudfoundry.org/copilot"
revision = "b311fd6188b8f4f75cfe4c692692732e06b74fc3"
[[override]]
name = "github.com/ugorji/go"
revision = "708a42d246822952f38190a8d8c4e6b16a0e600c"
[[override]]
name = "github.com/apache/thrift"
version = ">=0.9.3, <0.11.0"
### DO NOT PIN these repos to master. It will result in inconsistent builds in circleci
### as we cache dep ensure.
[[constraint]]
name = "istio.io/api"
revision = "50cb9a38c07c3bc95feeece138dfc6a2c657f1cd"
[[constraint]]
name = "istio.io/fortio"
revision = "6684bc54abfa793ee4beffe8b2a5b9ec83c782e3"
### Begin Mixer codegen dep pinning
[[override]]
name = "github.com/gogo/protobuf"
version = "=0.5"
### End Mixer codegen dep pinning
[[constraint]]
name = "github.com/open-policy-agent/opa"
version = "0.5.13"
[[constraint]]
name = "github.com/onsi/gomega"
revision = "ba3724c94e4dd5d5690d37c190f1c54b2c1b4e64"