1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-22 03:28:42 +00:00

Update vendor

This commit is contained in:
Darren Shepherd
2018-10-30 10:46:47 -07:00
parent 92a6f9ebee
commit 418b1d3d37
153 changed files with 482 additions and 12431 deletions

9
vendor/k8s.io/kubernetes/deps.sh generated vendored
View File

@@ -1,19 +1,18 @@
#!/bin/bash
set -e
git rm -rf test
find -name '*_test.go' -exec git rm {} \;
find -name '*_windows.go' -exec git rm {} \;
find -depth -name testdata -type d -exec git rm -rf {} \;
find -depth -name testing -type d -exec git rm -rf {} \;
git rm -rf test
cat << EOF | sed -E 's!^([^/]+/[^/]+/[^/]+)(/[^ ]+) (.*)!\1 \3!g' | sed -E 's!^((google|[ckv])[^/]+/[^/]+)(/[^ ]+) (.*)!\1 \4!g' > vendor.conf
# package
k8s.io/kubernetes
$(cat ./Godeps/Godeps.json | jq -r '(.Deps | .[] | "\(.ImportPath) \(.Comment) \(.Rev)\n")' | sed 's/null//' | awk '{print $1 " " $2}' | grep -v bitbucket.org/ww/goautoneg | sort -k2,1 | uniq -f1)
bitbucket.org/ww/goautoneg a547fc61f48d567d5b4ec6f8aee5573d8efce11d https://github.com/rancher/goautoneg.git
github.com/ibuildthecloud/kvsql f76ad0737dfb07291925e7c78521dc07ec5506e2
github.com/rancher/norman 04cb04ac06975a37f11a9c805e859a76f6d6ef10
github.com/ibuildthecloud/kvsql 93ec16ba63d05c14c5ffdd7ad31b6eefb49c9e21
EOF
trash
@@ -23,4 +22,8 @@ cd vendor/k8s.io
ln -s ../../staging/src/k8s.io/* .
cd ../..
git add vendor vendor.conf
go build ./cmd/hyperkube
go build
rm hyperkube
rm $(basename $(pwd))
git commit -m "Update vendor"