diff options
author | 2018-07-01 12:08:46 -0700 | |
---|---|---|
committer | 2018-07-01 12:08:46 -0700 | |
commit | 1abecf99d97270075731b9f7cc01c9e2b687d570 (patch) | |
tree | ab4b7405ec9f27468dde90b7335f5c7eaed528e8 /Gopkg.toml | |
parent | 99800a687c5da6b5b9c42ad0431e21151828612a (diff) | |
download | coredns-1abecf99d97270075731b9f7cc01c9e2b687d570.tar.gz coredns-1abecf99d97270075731b9f7cc01c9e2b687d570.tar.zst coredns-1abecf99d97270075731b9f7cc01c9e2b687d570.zip |
Update k8s client-go to v8.0.0 (#1922)
k8s' client-go has been updated to v8.0.0 (1.11). This fix
updates client-go dependency so that it is in sync.
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'Gopkg.toml')
-rw-r--r-- | Gopkg.toml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Gopkg.toml b/Gopkg.toml index 8a988bccb..5d52589e8 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -8,18 +8,19 @@ ignored = [ "github.com/prometheus/client_golang/prometheus/promhttp", ] -# client-go 6.0.0 uses apimachinery 180eddb345a5be3a157cea1c624700ad5bd27b8f -# and api 11147472b7c934c474a2c484af3c0c5210b7a3af (see Godep.json). go dep +# client-go v8.0.0 uses apimachinery 103fd098999dc9c0c88536f5c9ad2e5da39373ae +# and api 072894a440bdee3a891dea811fe42902311cd2a3 (see Godep.json). go dep # is unable to match Godep.json automatically so have to specify here. [[constraint]] name = "k8s.io/client-go" - version = "v7.0.0" + version = "v8.0.0" [[override]] name = "k8s.io/apimachinery" - revision = "302974c03f7e50f16561ba237db776ab93594ef6" + revision = "103fd098999dc9c0c88536f5c9ad2e5da39373ae" [[override]] name = "k8s.io/api" - revision = "73d903622b7391f3312dcbac6483fed484e185f8" + revision = "072894a440bdee3a891dea811fe42902311cd2a3" + [[override]] name = "github.com/apache/thrift" revision = "e59b73d3c2bf1c328ccb78e683c0462fa1a473c7" |