Skip to content

Instantly share code, notes, and snippets.

@nikhita
Last active December 4, 2018 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikhita/fcf466640d4d8a754cbb6f153a67e57b to your computer and use it in GitHub Desktop.
Save nikhita/fcf466640d4d8a754cbb6f153a67e57b to your computer and use it in GitHub Desktop.
Script used to smoke test client-go v10.0.0 before releasing
#!/bin/bash -ex
cd $GOPATH/src/k8s.io
rm -rf cache.new
if [ ! -d cache ]; then
mkdir cache.new
pushd cache.new
for repo in $(ls -1 ../kubernetes/staging/src/k8s.io); do
git clone https://github.com/kubernetes/${repo}.git
done
popd
mv cache.new cache
fi
for repo in $(ls -1 kubernetes/staging/src/k8s.io); do
rm -rf ${repo}
git clone --reference ./cache/${repo} https://github.com/kubernetes/${repo}.git
done
# do this if the tag has still not been published
# it's very hacky
# cd client-go && git remote rename origin upstream && git remote add origin https://github.com/nikhita/client-go.git && git fetch origin --tags && cd ..
function kubeDeps() {
jq -r ".Deps | map(.ImportPath) | .[]" Godeps/Godeps.json | grep "^k8s.io/" | cut -d/ -f2 | sort -u
}
function rmVendorsInKubeDeps() {
for dep in $(kubeDeps); do
pushd ../${dep} >/dev/null
git rm -q -rf vendor/ && git commit -m "rm vendor/" -q || true
popd
done
}
for branch in v10.0.0; do
pushd client-go
git checkout ${branch}
godep restore
go build ./...
git reset --hard
git clean -f -f -d
popd
done
for branch in v10.0.0; do
pushd $GOPATH/src/github.com/nikhita/kube-glide-test
git checkout ${branch}
glide cache-clear
rm -rf glide.lock vendor/
glide install --strip-vendor
go build .
git reset --hard
git clean -f -f -d
popd
done
Cloning into 'api'...
remote: Enumerating objects: 414, done.
remote: Counting objects: 100% (414/414), done.
remote: Compressing objects: 100% (49/49), done.
remote: Total 791 (delta 387), reused 387 (delta 364), pack-reused 377
Receiving objects: 100% (791/791), 481.41 KiB | 135.00 KiB/s, done.
Resolving deltas: 100% (514/514), completed with 116 local objects.
Cloning into 'apiextensions-apiserver'...
remote: Enumerating objects: 1878, done.
remote: Counting objects: 100% (1878/1878), done.
remote: Compressing objects: 100% (88/88), done.
remote: Total 3251 (delta 1810), reused 1838 (delta 1782), pack-reused 1373
Receiving objects: 100% (3251/3251), 1.69 MiB | 332.00 KiB/s, done.
Resolving deltas: 100% (2099/2099), completed with 912 local objects.
Cloning into 'apimachinery'...
remote: Enumerating objects: 339, done.
remote: Counting objects: 100% (339/339), done.
remote: Compressing objects: 100% (56/56), done.
remote: Total 518 (delta 308), reused 313 (delta 283), pack-reused 179
Receiving objects: 100% (518/518), 171.29 KiB | 246.00 KiB/s, done.
Resolving deltas: 100% (358/358), completed with 135 local objects.
Cloning into 'apiserver'...
remote: Enumerating objects: 1598, done.
remote: Counting objects: 100% (1598/1598), done.
remote: Compressing objects: 100% (243/243), done.
remote: Total 2414 (delta 1398), reused 1530 (delta 1345), pack-reused 816
Receiving objects: 100% (2414/2414), 1.04 MiB | 354.00 KiB/s, done.
Resolving deltas: 100% (1562/1562), completed with 527 local objects.
Cloning into 'client-go'...
remote: Enumerating objects: 677, done.
remote: Counting objects: 100% (677/677), done.
remote: Compressing objects: 100% (24/24), done.
remote: Total 1306 (delta 671), reused 656 (delta 653), pack-reused 629
Receiving objects: 100% (1306/1306), 348.17 KiB | 130.00 KiB/s, done.
Resolving deltas: 100% (910/910), completed with 290 local objects.
Cloning into 'cli-runtime'...
remote: Enumerating objects: 208, done.
remote: Counting objects: 100% (208/208), done.
remote: Compressing objects: 100% (29/29), done.
remote: Total 305 (delta 187), reused 199 (delta 178), pack-reused 97
Receiving objects: 100% (305/305), 126.27 KiB | 54.00 KiB/s, done.
Resolving deltas: 100% (198/198), completed with 56 local objects.
Cloning into 'cloud-provider'...
fatal: reference repository './cache/cloud-provider' is not a local repository.
Cloning into 'cluster-bootstrap'...
fatal: reference repository './cache/cluster-bootstrap' is not a local repository.
Cloning into 'code-generator'...
remote: Enumerating objects: 469, done.
remote: Counting objects: 100% (469/469), done.
remote: Compressing objects: 100% (154/154), done.
remote: Total 566 (delta 310), reused 441 (delta 286), pack-reused 97
Receiving objects: 100% (566/566), 190.53 KiB | 309.00 KiB/s, done.
Resolving deltas: 100% (318/318), completed with 134 local objects.
Cloning into 'csi-api'...
remote: Enumerating objects: 341, done.
remote: Counting objects: 100% (341/341), done.
remote: Compressing objects: 100% (141/141), done.
remote: Total 416 (delta 233), reused 297 (delta 189), pack-reused 75
Receiving objects: 100% (416/416), 162.06 KiB | 105.00 KiB/s, done.
Resolving deltas: 100% (243/243), completed with 57 local objects.
Cloning into 'kube-aggregator'...
remote: Enumerating objects: 1247, done.
remote: Counting objects: 100% (1247/1247), done.
remote: Compressing objects: 100% (15/15), done.
remote: Total 2146 (delta 1243), reused 1232 (delta 1232), pack-reused 899
Receiving objects: 100% (2146/2146), 1.06 MiB | 200.00 KiB/s, done.
Resolving deltas: 100% (1469/1469), completed with 600 local objects.
Cloning into 'kube-controller-manager'...
remote: Enumerating objects: 143, done.
remote: Counting objects: 100% (143/143), done.
remote: Compressing objects: 100% (28/28), done.
remote: Total 210 (delta 126), reused 132 (delta 115), pack-reused 67
Receiving objects: 100% (210/210), 89.54 KiB | 329.00 KiB/s, done.
Resolving deltas: 100% (141/141), completed with 26 local objects.
Cloning into 'kubelet'...
remote: Enumerating objects: 139, done.
remote: Counting objects: 100% (139/139), done.
remote: Compressing objects: 100% (22/22), done.
remote: Total 215 (delta 126), reused 130 (delta 117), pack-reused 76
Receiving objects: 100% (215/215), 89.20 KiB | 368.00 KiB/s, done.
Resolving deltas: 100% (146/146), completed with 29 local objects.
Cloning into 'kube-proxy'...
remote: Enumerating objects: 70, done.
remote: Counting objects: 100% (70/70), done.
remote: Compressing objects: 100% (19/19), done.
remote: Total 170 (delta 60), reused 60 (delta 51), pack-reused 100
Receiving objects: 100% (170/170), 83.30 KiB | 328.00 KiB/s, done.
Resolving deltas: 100% (113/113), completed with 21 local objects.
Cloning into 'kube-scheduler'...
remote: Enumerating objects: 138, done.
remote: Counting objects: 100% (138/138), done.
remote: Compressing objects: 100% (26/26), done.
remote: Total 205 (delta 121), reused 129 (delta 112), pack-reused 67
Receiving objects: 100% (205/205), 88.80 KiB | 89.00 KiB/s, done.
Resolving deltas: 100% (136/136), completed with 22 local objects.
Cloning into 'metrics'...
remote: Enumerating objects: 334, done.
remote: Counting objects: 100% (334/334), done.
remote: Compressing objects: 100% (119/119), done.
remote: Total 418 (delta 253), reused 288 (delta 210), pack-reused 84
Receiving objects: 100% (418/418), 170.48 KiB | 100.00 KiB/s, done.
Resolving deltas: 100% (270/270), completed with 64 local objects.
Cloning into 'sample-apiserver'...
remote: Enumerating objects: 1643, done.
remote: Counting objects: 100% (1643/1643), done.
remote: Compressing objects: 100% (200/200), done.
remote: Total 2311 (delta 1420), reused 1596 (delta 1385), pack-reused 668
Receiving objects: 100% (2311/2311), 1.18 MiB | 359.00 KiB/s, done.
Resolving deltas: 100% (1523/1523), completed with 696 local objects.
Cloning into 'sample-cli-plugin'...
remote: Enumerating objects: 425, done.
remote: Counting objects: 100% (425/425), done.
remote: Compressing objects: 100% (51/51), done.
remote: Total 711 (delta 383), reused 406 (delta 369), pack-reused 286
Receiving objects: 100% (711/711), 704.17 KiB | 154.00 KiB/s, done.
Resolving deltas: 100% (489/489), completed with 185 local objects.
Cloning into 'sample-controller'...
remote: Enumerating objects: 1695, done.
remote: Counting objects: 100% (1695/1695), done.
remote: Compressing objects: 100% (505/505), done.
remote: Total 1709 (delta 1113), reused 1623 (delta 1042), pack-reused 14
Receiving objects: 100% (1709/1709), 1012.19 KiB | 188.00 KiB/s, done.
Resolving deltas: 100% (1114/1114), completed with 416 local objects.
remote: Enumerating objects: 5, done.
remote: Counting objects: 100% (5/5), done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 9 (delta 3), reused 4 (delta 3), pack-reused 4
Unpacking objects: 100% (9/9), done.
From https://github.com/nikhita/client-go
* [new branch] bump-go-version-travis -> origin/bump-go-version-travis
* [new branch] changelog-release-10-branch -> origin/changelog-release-10-branch
* [new branch] fix-travis-release-9 -> origin/fix-travis-release-9
* [new branch] master -> origin/master
* [new branch] release-1.4 -> origin/release-1.4
* [new branch] release-1.5 -> origin/release-1.5
* [new branch] release-10 -> origin/release-10
* [new branch] release-2.0 -> origin/release-2.0
* [new branch] release-3.0 -> origin/release-3.0
* [new branch] release-8 -> origin/release-8
* [new branch] remove-install.md -> origin/remove-install.md
* [new branch] remove-installmd-from-release-9 -> origin/remove-installmd-from-release-9
* [new branch] revert-14-1.5 -> origin/revert-14-1.5
* [new branch] travis-go-1.12 -> origin/travis-go-1.12
* [new branch] update-readme-7.0.0 -> origin/update-readme-7.0.0
t [tag update] kubernetes-1.12.0 -> kubernetes-1.12.0
t [tag update] kubernetes-1.12.1-beta.0 -> kubernetes-1.12.1-beta.0
* [new tag] v10.0.0 -> v10.0.0
~/go/src/k8s.io/client-go ~/go/src/k8s.io
Note: checking out 'v10.0.0'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b <new-branch-name>
HEAD is now at e6449420 Fix Godeps.json to point to kubernetes-1.13.0 tags
HEAD is now at e6449420 Fix Godeps.json to point to kubernetes-1.13.0 tags
~/go/src/k8s.io
~/go/src/github.com/nikhita/kube-glide-test ~/go/src/k8s.io
Already on 'v10.0.0'
Your branch is up to date with 'origin/v10.0.0'.
[INFO] Glide cache has been cleared.
[INFO] Lock file (glide.lock) does not exist. Performing update.
[INFO] Downloading dependencies. Please wait...
[INFO] --> Fetching github.com/nikhita/client-go
[INFO] --> Fetching k8s.io/kube-aggregator
[INFO] --> Setting version for github.com/nikhita/client-go to v10.0.0.
[INFO] --> Setting version for k8s.io/kube-aggregator to kubernetes-1.13.0.
[INFO] Resolving imports
[INFO] --> Fetching k8s.io/apimachinery
[INFO] --> Fetching k8s.io/apiserver
[INFO] --> Fetching k8s.io/client-go
[INFO] Found Godeps.json file in /home/nikhita/.glide/cache/src/https-k8s.io-kube-aggregator
[INFO] --> Parsing Godeps metadata...
[INFO] --> Setting version for k8s.io/apimachinery to 2b1284ed4c93a43499e781493253e2ac5959c4fd.
[INFO] --> Setting version for k8s.io/client-go to e64494209f554a6723674bd494d69445fb76a1d4.
[INFO] --> Fetching github.com/spf13/cobra
[INFO] --> Setting version for github.com/spf13/cobra to c439c4fa093711d42e1b01acb1235b52004753c1.
[INFO] --> Fetching github.com/spf13/pflag
[INFO] --> Setting version for github.com/spf13/pflag to 583c0c0531f06d5278b7d917446061adc344b5cd.
[INFO] --> Setting version for k8s.io/apiserver to 9caa0299108fbdf51d3d9b8e8956834ae84dac75.
[INFO] --> Fetching github.com/gogo/protobuf
[INFO] --> Setting version for github.com/gogo/protobuf to 342cbe0a04158f6dcb03ca0079991a51a4248c02.
[INFO] --> Fetching github.com/google/gofuzz
[INFO] --> Setting version for github.com/google/gofuzz to 44d81051d367757e1c7c6a5a86423ece9afcf63c.
[INFO] --> Fetching k8s.io/klog
[INFO] --> Setting version for k8s.io/klog to 8139d8cb77af419532b33dfa7dd09fbc5f1d344f.
[INFO] --> Fetching github.com/golang/protobuf
[INFO] --> Setting version for github.com/golang/protobuf to b4deda0973fb4c70b50d226b1af49f3da59f5265.
[INFO] --> Fetching github.com/googleapis/gnostic
[INFO] --> Setting version for github.com/googleapis/gnostic to 0c5108395e2debce0d731cf0287ddf7242066aba.
[INFO] --> Fetching github.com/gregjones/httpcache
[INFO] --> Setting version for github.com/gregjones/httpcache to 787624de3eb7bd915c329cba748687a3b22666a6.
[INFO] --> Fetching github.com/peterbourgon/diskv
[INFO] --> Setting version for github.com/peterbourgon/diskv to 5f041e8faa004a95c88a202771f4cc3e991971e6.
[INFO] --> Fetching golang.org/x/net
[INFO] --> Setting version for golang.org/x/net to 0ed95abb35c445290478a5348a7b38bb154135fd.
[INFO] --> Fetching golang.org/x/oauth2
[INFO] --> Setting version for golang.org/x/oauth2 to a6bd8cefa1811bd24b86f8902872e4e8225f74c4.
[INFO] --> Fetching golang.org/x/time
[INFO] --> Setting version for golang.org/x/time to f51c12702a4d776e4c1fa9b0fabab841babae631.
[INFO] --> Fetching github.com/inconshreveable/mousetrap
[INFO] --> Setting version for github.com/inconshreveable/mousetrap to 76626ae9c91c4f2a10f34cad8ce83ea42c93bb75.
[INFO] --> Fetching github.com/coreos/go-systemd
[INFO] --> Setting version for github.com/coreos/go-systemd to 39ca1b05acc7ad1220e09f133283b8859a8b71ab.
[INFO] --> Fetching github.com/emicklei/go-restful
[INFO] --> Setting version for github.com/emicklei/go-restful to ff4f55a206334ef123e4f79bbf348980da81ca46.
[INFO] --> Fetching github.com/emicklei/go-restful-swagger12
[INFO] --> Setting version for github.com/emicklei/go-restful-swagger12 to dcef7f55730566d41eae5db10e7d6981829720f6.
[INFO] --> Fetching github.com/go-openapi/spec
[INFO] --> Setting version for github.com/go-openapi/spec to 5bae59e25b21498baea7f9d46e9c147ec106a42e.
[INFO] --> Fetching github.com/pborman/uuid
[INFO] --> Setting version for github.com/pborman/uuid to ca53cad383cad2479bbba7f7a1a05797ec1386e4.
[INFO] --> Fetching k8s.io/kube-openapi
[INFO] --> Setting version for k8s.io/kube-openapi to c59034cc13d587f5ef4e85ca0ade0c1866ae8e1d.
[INFO] --> Fetching gopkg.in/natefinch/lumberjack.v2
[INFO] --> Setting version for gopkg.in/natefinch/lumberjack.v2 to 20b71e5b60d756d3d2f80def009790325acc2b23.
[INFO] --> Fetching k8s.io/api
[INFO] --> Setting version for k8s.io/api to 89a74a8d264df0e993299876a8cde88379b940ee.
[INFO] --> Fetching gopkg.in/inf.v0
[INFO] --> Setting version for gopkg.in/inf.v0 to 3887ee99ecf07df5b447e9b00d9c0b2adaa9f3e4.
[INFO] --> Fetching gopkg.in/yaml.v2
[INFO] --> Setting version for gopkg.in/yaml.v2 to 5420a8b6744d3b0345ab293f6fcba19c978f1183.
[INFO] --> Fetching github.com/google/btree
[INFO] --> Setting version for github.com/google/btree to 7d79101e329e5a3adf994758c578dab82b90c017.
[INFO] --> Fetching google.golang.org/appengine
[INFO] --> Fetching golang.org/x/crypto
[INFO] --> Setting version for golang.org/x/crypto to de0752318171da717af4ce24d0a2e8626afaeb11.
[INFO] --> Fetching github.com/hashicorp/golang-lru
[INFO] --> Setting version for github.com/hashicorp/golang-lru to a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4.
[INFO] --> Fetching github.com/davecgh/go-spew
[INFO] --> Setting version for github.com/davecgh/go-spew to 782f4967f2dc4564575ca782fe2d04090b5faca8.
[INFO] --> Fetching github.com/go-openapi/jsonpointer
[INFO] --> Setting version for github.com/go-openapi/jsonpointer to ef5f0afec364d3b9396b7b77b43dbe26bf1f8004.
[INFO] --> Fetching github.com/go-openapi/jsonreference
[INFO] --> Setting version for github.com/go-openapi/jsonreference to 8483a886a90412cd6858df4ea3483dce9c8e35a3.
[INFO] --> Fetching github.com/go-openapi/swag
[INFO] --> Setting version for github.com/go-openapi/swag to 5899d5c5e619fda5fa86e14795a835f473ca284c.
[INFO] --> Fetching sigs.k8s.io/yaml
[INFO] --> Setting version for sigs.k8s.io/yaml to fd68e9863619f6ec2fdd8625fe1f02e7c877e480.
[INFO] --> Fetching github.com/evanphx/json-patch
[INFO] --> Setting version for github.com/evanphx/json-patch to 36442dbdb585210f8d5a1b45e67aa323c197d5c4.
[INFO] --> Fetching github.com/prometheus/client_golang
[INFO] --> Setting version for github.com/prometheus/client_golang to e7e903064f5e9eb5da98208bae10b475d4db0f8c.
[INFO] --> Fetching github.com/elazarl/go-bindata-assetfs
[INFO] --> Setting version for github.com/elazarl/go-bindata-assetfs to 3dcc96556217539f50599357fb481ac0dc7439b9.
[INFO] Found Godeps.json file in /home/nikhita/.glide/cache/src/https-k8s.io-kube-openapi
[INFO] --> Parsing Godeps metadata...
[INFO] Found Godeps.json file in /home/nikhita/.glide/cache/src/https-k8s.io-api
[INFO] --> Parsing Godeps metadata...
[INFO] --> Fetching github.com/coreos/etcd
[INFO] --> Setting version for github.com/coreos/etcd to 27fc7e2296f506182f58ce846e48f36b34fe6842.
[INFO] --> Fetching github.com/grpc-ecosystem/go-grpc-prometheus
[INFO] --> Setting version for github.com/grpc-ecosystem/go-grpc-prometheus to 2500245aa6110c562d17020fb31a2c133d737799.
[INFO] --> Fetching google.golang.org/grpc
[INFO] --> Setting version for google.golang.org/grpc to 168a6198bcb0ef175f7dacec0b8691fc141dc9b8.
[INFO] --> Fetching github.com/docker/docker
[INFO] --> Setting version for github.com/docker/docker to a9fbbdc8dd8794b20af358382ab780559bca589d.
[INFO] --> Fetching github.com/imdario/mergo
[INFO] --> Setting version for github.com/imdario/mergo to 9316a62528ac99aaecb4e47eadd6dc8aa6533d58.
[INFO] --> Fetching github.com/docker/spdystream
[INFO] --> Setting version for github.com/docker/spdystream to 449fdfce4d962303d702fec724ef0ad181c92528.
[INFO] --> Fetching github.com/mxk/go-flowrate
[INFO] --> Setting version for github.com/mxk/go-flowrate to cca7078d478f8520f85629ad7c68962d31ed7682.
[INFO] --> Fetching github.com/json-iterator/go
[INFO] --> Setting version for github.com/json-iterator/go to ab8a2e0c74be9d3be70b3184d9acc634935ded82.
[INFO] --> Fetching github.com/modern-go/reflect2
[INFO] --> Setting version for github.com/modern-go/reflect2 to 94122c33edd36123c84d5368cfb2b69df93a0ec8.
[INFO] --> Fetching golang.org/x/text
[INFO] --> Setting version for golang.org/x/text to b19bf474d317b857955b12035d2c5acb57ce8b01.
[INFO] --> Fetching golang.org/x/sys
[INFO] --> Setting version for golang.org/x/sys to 95c6576299259db960f6c5b9b69ea52422860fce.
[INFO] --> Fetching github.com/PuerkitoBio/purell
[INFO] --> Setting version for github.com/PuerkitoBio/purell to 8a290539e2e8629dbc4e6bad948158f790ec31f4.
[INFO] --> Fetching github.com/mailru/easyjson
[INFO] --> Setting version for github.com/mailru/easyjson to 2f5df55504ebc322e4d52d34df6a1f5b503bf26d.
[INFO] --> Fetching github.com/beorn7/perks
[INFO] --> Setting version for github.com/beorn7/perks to 3ac7bf7a47d159a033b107610db8a1b6575507a4.
[INFO] --> Fetching github.com/prometheus/client_model
[INFO] --> Setting version for github.com/prometheus/client_model to fa8ad6fec33561be4280a8f0514318c79d7f6cb6.
[INFO] --> Fetching github.com/prometheus/common
[INFO] --> Setting version for github.com/prometheus/common to 13ba4ddd0caa9c28ca7b7bffe1dfa9ed8d5ef207.
[INFO] --> Fetching github.com/prometheus/procfs
[INFO] --> Setting version for github.com/prometheus/procfs to 65c1f6f8f0fc1e2185eb9863a3bc751496404259.
[INFO] --> Fetching bitbucket.org/ww/goautoneg
[INFO] --> Setting version for bitbucket.org/ww/goautoneg to 75cd24fc2f2c2a2088577d12123ddee5f54e0675.
[INFO] --> Fetching github.com/NYTimes/gziphandler
[INFO] --> Setting version for github.com/NYTimes/gziphandler to 56545f4a5d46df9a6648819d1664c3a03a13ffdb.
[INFO] --> Fetching github.com/Azure/go-ansiterm
[INFO] --> Setting version for github.com/Azure/go-ansiterm to d6e3b3328b783f23731bc4d058875b0371ff8109.
[INFO] --> Fetching github.com/golang/groupcache
[INFO] --> Setting version for github.com/golang/groupcache to 02826c3e79038b59d737d3b1c0a1d937f71a4433.
[INFO] --> Fetching github.com/modern-go/concurrent
[INFO] --> Setting version for github.com/modern-go/concurrent to bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94.
[INFO] --> Fetching github.com/PuerkitoBio/urlesc
[INFO] --> Setting version for github.com/PuerkitoBio/urlesc to 5bd2802263f21d8788851d5305584c82a5c75d7e.
[INFO] --> Fetching github.com/matttproud/golang_protobuf_extensions
[INFO] --> Setting version for github.com/matttproud/golang_protobuf_extensions to c12348ce28de40eed0136aa2b644d0ee0650e56c.
[INFO] --> Fetching google.golang.org/genproto
[INFO] --> Setting version for google.golang.org/genproto to 09f6ed296fc66555a25fe4ce95173148778dfa85.
[INFO] --> Fetching github.com/sirupsen/logrus
[INFO] --> Setting version for github.com/sirupsen/logrus to 89742aefa4b206dcf400792f3bd35b542998eb3b.
[INFO] Downloading dependencies. Please wait...
[INFO] Setting references for remaining imports
[INFO] Exporting resolved dependencies...
[INFO] --> Exporting github.com/nikhita/client-go
[INFO] --> Exporting github.com/emicklei/go-restful
[INFO] --> Exporting github.com/gogo/protobuf
[INFO] --> Exporting github.com/spf13/pflag
[INFO] --> Exporting github.com/spf13/cobra
[INFO] --> Exporting github.com/golang/protobuf
[INFO] --> Exporting github.com/googleapis/gnostic
[INFO] --> Exporting github.com/gregjones/httpcache
[INFO] --> Exporting github.com/peterbourgon/diskv
[INFO] --> Exporting github.com/inconshreveable/mousetrap
[INFO] --> Exporting github.com/coreos/go-systemd
[INFO] --> Exporting github.com/google/gofuzz
[INFO] --> Exporting github.com/emicklei/go-restful-swagger12
[INFO] --> Exporting github.com/go-openapi/spec
[INFO] --> Exporting github.com/pborman/uuid
[INFO] --> Exporting github.com/google/btree
[INFO] --> Exporting golang.org/x/time
[INFO] --> Exporting golang.org/x/net
[INFO] --> Exporting github.com/hashicorp/golang-lru
[INFO] --> Exporting golang.org/x/oauth2
[INFO] --> Exporting github.com/davecgh/go-spew
[INFO] --> Exporting github.com/go-openapi/jsonpointer
[INFO] --> Exporting github.com/go-openapi/jsonreference
[INFO] --> Exporting github.com/go-openapi/swag
[INFO] --> Exporting github.com/evanphx/json-patch
[INFO] --> Exporting github.com/prometheus/client_golang
[INFO] --> Exporting github.com/elazarl/go-bindata-assetfs
[INFO] --> Exporting github.com/coreos/etcd
[INFO] --> Exporting github.com/grpc-ecosystem/go-grpc-prometheus
[INFO] --> Exporting github.com/docker/docker
[INFO] --> Exporting golang.org/x/crypto
[INFO] --> Exporting google.golang.org/appengine
[INFO] --> Exporting github.com/imdario/mergo
[INFO] --> Exporting github.com/docker/spdystream
[INFO] --> Exporting github.com/mxk/go-flowrate
[INFO] --> Exporting github.com/json-iterator/go
[INFO] --> Exporting google.golang.org/grpc
[INFO] --> Exporting github.com/modern-go/reflect2
[INFO] --> Exporting github.com/PuerkitoBio/purell
[INFO] --> Exporting github.com/mailru/easyjson
[INFO] --> Exporting github.com/beorn7/perks
[INFO] --> Exporting github.com/prometheus/client_model
[INFO] --> Exporting github.com/prometheus/common
[INFO] --> Exporting github.com/prometheus/procfs
[INFO] --> Exporting github.com/NYTimes/gziphandler
[INFO] --> Exporting github.com/Azure/go-ansiterm
[INFO] --> Exporting golang.org/x/text
[INFO] --> Exporting github.com/golang/groupcache
[INFO] --> Exporting golang.org/x/sys
[INFO] --> Exporting github.com/modern-go/concurrent
[INFO] --> Exporting github.com/PuerkitoBio/urlesc
[INFO] --> Exporting github.com/matttproud/golang_protobuf_extensions
[INFO] --> Exporting github.com/sirupsen/logrus
[INFO] --> Exporting bitbucket.org/ww/goautoneg
[INFO] --> Exporting google.golang.org/genproto
[INFO] --> Exporting k8s.io/api
[INFO] --> Exporting k8s.io/kube-openapi
[INFO] --> Exporting k8s.io/apimachinery
[INFO] --> Exporting k8s.io/apiserver
[INFO] --> Exporting k8s.io/kube-aggregator
[INFO] --> Exporting k8s.io/client-go
[INFO] --> Exporting k8s.io/klog
[INFO] --> Exporting sigs.k8s.io/yaml
[INFO] --> Exporting gopkg.in/natefinch/lumberjack.v2
[INFO] --> Exporting gopkg.in/inf.v0
[INFO] --> Exporting gopkg.in/yaml.v2
[INFO] Replacing existing vendor dependencies
[INFO] Project relies on 66 dependencies.
[INFO] Removing nested vendor and Godeps/_workspace directories...
[INFO] Removing: /home/nikhita/go/src/github.com/nikhita/kube-glide-test/vendor/github.com/coreos/etcd/cmd/vendor
[INFO] Removing: /home/nikhita/go/src/github.com/nikhita/kube-glide-test/vendor/github.com/coreos/etcd/vendor
[INFO] Removing: /home/nikhita/go/src/github.com/nikhita/kube-glide-test/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/vendor
[INFO] Removing: /home/nikhita/go/src/github.com/nikhita/kube-glide-test/vendor/github.com/docker/docker/vendor
[INFO] Removing: /home/nikhita/go/src/github.com/nikhita/kube-glide-test/vendor/k8s.io/kube-aggregator/vendor
HEAD is now at 929ba2d Update for v10.0.0
Removing glide.lock
Removing kube-glide-test
Removing vendor/
~/go/src/k8s.io
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment