Add all dependencies for Kubernetes worker
Adds Kubelet, CNI plugins, containerd, runc and gVisor using a
pre-baked list of dependencies generated using scripts/gazelle-deps/sh.
This moves all dependencies of gVisor, Kubernetes, runc, etc into the
same 'namespace' of Bazel external repositories, giving us ease of
accessing code as libraries, and benefits when it comes to version
auditing.
The gazelle-deps.sh script is a temporary solution that will be replaced
ASAP, see T725.
This unblocks T486.
This is an alternative to D389.
Test Plan: `bazel build //core:image` runs and picks up the new binaries
X-Origin-Diff: phab/D487
GitOrigin-RevId: a28a25071fa2ae76b272d237ce9af777485065ff
diff --git a/third_party/go/repositories.bzl b/third_party/go/repositories.bzl
index 32ff950..b4b7dd8 100644
--- a/third_party/go/repositories.bzl
+++ b/third_party/go/repositories.bzl
@@ -18,563 +18,200 @@
def go_repositories():
go_repository(
- name = "co_honnef_go_tools",
- importpath = "honnef.co/go/tools",
- sum = "h1:/hemPrYIhOhy8zYrNj+069zDB68us2sMGsfkFJO0iZs=",
- version = "v0.0.0-20190523083050-ea95bdfd59fc",
+ name = "io_k8s_kubernetes",
+ importpath = "k8s.io/kubernetes",
+ version = "v1.19.0-alpha.2",
+ sum = "h1:kTsLVxmg/z3Fexcvu75zzGEHOYQ17jzIJFWhfQQnXDE=",
+ build_tags = ["providerless"],
+ build_file_proto_mode = "disable",
+ patches = [
+ "//third_party/go/patches:k8s-kubernetes.patch",
+ "//third_party/go/patches:k8s-kubernetes-build.patch",
+ ],
+ patch_args = ["-p1"],
)
go_repository(
- name = "com_github_alecthomas_template",
- importpath = "github.com/alecthomas/template",
- sum = "h1:cAKDfWh5VpdgMhJosfJnn5/FoN2SRZ4p7fJNX58YPaU=",
- version = "v0.0.0-20160405071501-a0175ee3bccc",
- )
- go_repository(
- name = "com_github_alecthomas_units",
- importpath = "github.com/alecthomas/units",
- sum = "h1:qet1QNfXsQxTZqLG4oE62mJzwPIB8+Tee4RNCL9ulrY=",
- version = "v0.0.0-20151022065526-2efee857e7cf",
+ name = "com_github_google_cadvisor",
+ importpath = "github.com/google/cadvisor",
+ sum = "h1:au7bcM+rjGXLBSfqjofcSONBre8tlIy94jEbp40BCOQ=",
+ version = "v0.36.1-0.20200323171535-8af10c683a96",
+ patches = [
+ "//third_party/go/patches:cadvisor.patch",
+ "//third_party/go/patches:cadvisor-build.patch",
+ ],
+ patch_args = ["-p1"],
)
go_repository(
- name = "com_github_armon_consul_api",
- importpath = "github.com/armon/consul-api",
- sum = "h1:G1bPvciwNyF7IUmKXNt9Ak3m6u9DE1rF+RmtIkBpVdA=",
- version = "v0.0.0-20180202201655-eb2c6b5be1b6",
+ name = "io_k8s_client_go",
+ importpath = "k8s.io/client-go",
+ sum = "h1:YqJuHm/xOYP2VIOWPnQO+ix+Ag5KditpdHmIreWYyTY=",
+ version = "v0.19.0-alpha.2",
+ patches = [
+ "//third_party/go/patches:k8s-client-go.patch",
+ "//third_party/go/patches:k8s-client-go-build.patch",
+ ],
+ patch_args = ["-p1"],
+ )
+
+ # patches for pure mode
+ go_repository(
+ name = "com_github_containernetworking_plugins",
+ importpath = "github.com/containernetworking/plugins",
+ sum = "h1:5lnwfsAYO+V7yXhysJKy3E1A2Gy9oVut031zfdOzI9w=",
+ version = "v0.8.2",
+ patches = [
+ "//third_party/go/patches:cni-plugins-build.patch",
+ ],
+ patch_args = ["-p1"],
+ )
+
+ # required by containerd, but doesn't folow gazelle name convention
+ go_repository(
+ name = "com_github_opencontainers_runtime-spec",
+ importpath = "github.com/opencontainers/runtime-spec",
+ sum = "h1:Cef96rKLuXxeGzERI/0ve9yAzIeTpx0qz9JKFDZALYw=",
+ version = "v1.0.2-0.20190207185410-29686dbc5559",
)
go_repository(
- name = "com_github_beorn7_perks",
- importpath = "github.com/beorn7/perks",
- sum = "h1:HWo1m869IqiPhD389kmkxeTalrjNbbJTC8LXupb+sl0=",
- version = "v1.0.0",
+ name = "com_github_google_gvisor",
+ importpath = "github.com/google/gvisor",
+ sum = "h1:rpcz7X//b7LHYEa8FwGlviAPLkFHz46+RW3ur+kiyhg=",
+ version = "v0.0.0-20200325151121-d8c4eff3f77b",
+ patches = [
+ "//third_party/go/patches:gvisor.patch",
+ ],
+ patch_args = ["-p1"],
)
go_repository(
- name = "com_github_bgentry_speakeasy",
- importpath = "github.com/bgentry/speakeasy",
- sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
- version = "v0.1.0",
+ name = "io_k8s_repo_infra",
+ importpath = "k8s.io/repo-infra",
+ sum = "h1:PQyAIB6SRdV0a3Vj/VA39L1uANW36k/zg3tOk/Ffh3U=",
+ version = "v0.0.0-20190329054012-df02ded38f95",
)
-
go_repository(
- name = "com_github_burntsushi_toml",
- importpath = "github.com/BurntSushi/toml",
- sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
- version = "v0.3.1",
+ name = "io_k8s_component_base",
+ importpath = "k8s.io/component-base",
+ sum = "h1:nZfjiRab7LcpScUgnudRCG6UMRVmZ3L0GNZZWHkYjus=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_client9_misspell",
- importpath = "github.com/client9/misspell",
- sum = "h1:ta993UF76GwbvJcIo3Y68y/M3WxlpEHPWIGDkJYwzJI=",
- version = "v0.3.4",
+ name = "io_k8s_cloud_provider",
+ importpath = "k8s.io/cloud-provider",
+ sum = "h1:nFQ/M6B8o+/ICEHbjLFMe4nHgH/8jAHQ1GFw2NJ5Elo=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_coreos_etcd",
- importpath = "github.com/coreos/etcd",
- sum = "h1:jFneRYjIvLMLhDLCzuTuU4rSJUjRplcJQ7pD7MnhC04=",
- version = "v3.3.10+incompatible",
+ name = "io_k8s_kubelet",
+ build_file_proto_mode = "disable",
+ importpath = "k8s.io/kubelet",
+ sum = "h1:UPkB1eGbkIWr38J++4Gk7LZjcYeB5JfJBqKzRGfJ/VM=",
+ version = "v0.19.0-alpha.2",
)
go_repository(
- name = "com_github_coreos_go_etcd",
- importpath = "github.com/coreos/go-etcd",
- sum = "h1:bXhRBIXoTm9BYHS3gE0TtQuyNZyeEMux2sDi4oo5YOo=",
- version = "v2.0.0+incompatible",
+ name = "io_k8s_csi_translation_lib",
+ importpath = "k8s.io/csi-translation-lib",
+ sum = "h1:lH3FPZqHFwPthCQKLKNP90LR5oqjAMxYMJNhicDA5d8=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_coreos_go_semver",
- importpath = "github.com/coreos/go-semver",
- sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
- version = "v0.3.0",
+ name = "io_k8s_legacy_cloud_providers",
+ importpath = "k8s.io/legacy-cloud-providers",
+ sum = "h1:jpu9SqacduO6iKtiCKCovH/uZ0GL1PkbsJndUZKUxtc=",
+ version = "v0.19.0-alpha.2",
)
go_repository(
- name = "com_github_coreos_go_systemd",
- importpath = "github.com/coreos/go-systemd",
- sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
- version = "v0.0.0-20190321100706-95778dfbb74e",
+ name = "io_k8s_apiextensions_apiserver",
+ build_file_proto_mode = "disable",
+ importpath = "k8s.io/apiextensions-apiserver",
+ sum = "h1:lQjE543mSh4jeBxrvnwz37DCzGHW2UMefX8eCzk8uAU=",
+ version = "v0.19.0-alpha.2",
)
go_repository(
- name = "com_github_coreos_pkg",
- importpath = "github.com/coreos/pkg",
- sum = "h1:lBNOc5arjvs8E5mO2tbpBpLoyyu8B6e44T7hJy6potg=",
- version = "v0.0.0-20180928190104-399ea9e2e55f",
+ name = "io_k8s_kube_aggregator",
+ build_file_proto_mode = "disable",
+ importpath = "k8s.io/kube-aggregator",
+ sum = "h1:Li0htDytvDHRnf7IR9AWGSahhyvD4qVxWIJwsUVgo2w=",
+ version = "v0.19.0-alpha.2",
)
go_repository(
- name = "com_github_cpuguy83_go_md2man",
- importpath = "github.com/cpuguy83/go-md2man",
- sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=",
- version = "v1.0.10",
+ name = "io_k8s_metrics",
+ build_file_proto_mode = "disable",
+ importpath = "k8s.io/metrics",
+ sum = "h1:5/OfIQ5HeJutKUPpjXXdcgFqxmFf01bYfnFRd1li5b8=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_davecgh_go_spew",
- importpath = "github.com/davecgh/go-spew",
- sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
- version = "v1.1.1",
+ name = "io_k8s_kube_scheduler",
+ importpath = "k8s.io/kube-scheduler",
+ sum = "h1:EpIJpmI5Nn3mii1aaWg5VFMd9Y0Qt+jCcduVxH92Vk8=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_dgrijalva_jwt_go",
- importpath = "github.com/dgrijalva/jwt-go",
- sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
- version = "v3.2.0+incompatible",
+ name = "io_k8s_kube_controller_manager",
+ importpath = "k8s.io/kube-controller-manager",
+ sum = "h1:E5GkOKLf+ODm2uXQaBqtmf+D4ZJpUUlo8XJoX0nEDL0=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_diskfs_go_diskfs",
- importpath = "github.com/diskfs/go-diskfs",
- sum = "h1:6FpT3lje7LzjItwqQ6ZRyD5pfroKgVq4UyWwelTjPCM=",
- version = "v0.0.0-20190829135618-cf5830e4e419",
+ name = "io_k8s_cluster_bootstrap",
+ importpath = "k8s.io/cluster-bootstrap",
+ sum = "h1:MHG+0kAEEh4nDQU2iC8NXNILDDIANK12RB8PcAjyej4=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_dustin_go_humanize",
- importpath = "github.com/dustin/go-humanize",
- sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
- version = "v1.0.0",
+ name = "io_k8s_kube_proxy",
+ importpath = "k8s.io/kube-proxy",
+ sum = "h1:8awQLk0DLJEXew80mjbFTMNs9EtbtXJElBi7K7BqalE=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_fatih_color",
- importpath = "github.com/fatih/color",
- sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
- version = "v1.7.0",
+ name = "io_k8s_kubectl",
+ importpath = "k8s.io/kubectl",
+ sum = "h1:ygJWExSY2hnEHt72gJV6DgPDmkdp6xwkQlrZbtmW9EI=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_fsnotify_fsnotify",
- importpath = "github.com/fsnotify/fsnotify",
- sum = "h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=",
- version = "v1.4.7",
+ name = "io_k8s_node_api",
+ importpath = "k8s.io/node-api",
+ sum = "h1:L5S79H5EO4jDK/ARsypIXeOrirXJmFplj4ZBIvnK+WM=",
+ version = "v0.17.5",
)
-
go_repository(
- name = "com_github_ghodss_yaml",
- importpath = "github.com/ghodss/yaml",
- sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
- version = "v1.0.0",
+ name = "io_k8s_cli_runtime",
+ importpath = "k8s.io/cli-runtime",
+ sum = "h1:/cZeGGp0GxuFSUdjz8jlUQP75QJVz99YtXEU1uNW/LI=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_go_kit_kit",
- importpath = "github.com/go-kit/kit",
- sum = "h1:Wz+5lgoB0kkuqLEc6NVmwRknTKP6dTGbSqvhZtBI/j0=",
- version = "v0.8.0",
+ name = "io_k8s_api",
+ build_file_proto_mode = "disable",
+ importpath = "k8s.io/api",
+ sum = "h1:GVZeds8bgQOSdQ/LYcjL7+NstBByZ5L3U/Ks6+E+QRI=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_go_logfmt_logfmt",
- importpath = "github.com/go-logfmt/logfmt",
- sum = "h1:8HUsc87TaSWLKwrnumgC8/YconD2fJQsRJAsWaPg2ic=",
- version = "v0.3.0",
+ name = "io_k8s_apimachinery",
+ build_file_proto_mode = "disable",
+ importpath = "k8s.io/apimachinery",
+ sum = "h1:N155+ZeSeRnCFyzjYRv3vg9GWJIUm5ElZba66f7qicY=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_go_stack_stack",
- importpath = "github.com/go-stack/stack",
- sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
- version = "v1.8.0",
+ name = "io_k8s_apiserver",
+ build_file_proto_mode = "disable",
+ importpath = "k8s.io/apiserver",
+ sum = "h1:k1fpzJAPZvtRT9Z8Rc42kciGehIH0GiEmTgEmc46drw=",
+ version = "v0.19.0-alpha.2",
)
-
go_repository(
- name = "com_github_gogo_protobuf",
- importpath = "github.com/gogo/protobuf",
- sum = "h1:3PaI8p3seN09VjbTYC/QWlUZdZ1qS1zGjy7LH2Wt07I=",
- version = "v1.2.2-0.20190723190241-65acae22fc9d",
- )
- go_repository(
- name = "com_github_golang_glog",
- importpath = "github.com/golang/glog",
- sum = "h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=",
- version = "v0.0.0-20160126235308-23def4e6c14b",
- )
- go_repository(
- name = "com_github_golang_groupcache",
- importpath = "github.com/golang/groupcache",
- sum = "h1:ZgQEtGgCBiWRM39fZuwSd1LwSqqSW0hOdXCYYDX0R3I=",
- version = "v0.0.0-20190702054246-869f871628b6",
- )
-
- go_repository(
- name = "com_github_golang_mock",
- importpath = "github.com/golang/mock",
- sum = "h1:G5FRp8JnTd7RQH5kemVNlMeyXQAztQ3mOWV95KxsXH8=",
- version = "v1.1.1",
- )
- go_repository(
- name = "com_github_golang_protobuf",
- importpath = "github.com/golang/protobuf",
- sum = "h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I=",
- version = "v1.3.3",
- )
-
- go_repository(
- name = "com_github_google_btree",
- importpath = "github.com/google/btree",
- sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
- version = "v1.0.0",
- )
- go_repository(
- name = "com_github_google_go_cmp",
- importpath = "github.com/google/go-cmp",
- sum = "h1:Xye71clBPdm5HgqGwUkwhbynsUJZhDbS20FvLhQ2izg=",
- version = "v0.3.1",
- )
-
- go_repository(
- name = "com_github_google_go_tpm",
- importpath = "github.com/google/go-tpm",
- sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=",
- version = "v0.1.2-0.20190725015402-ae6dd98980d4",
- )
- go_repository(
- name = "com_github_google_go_tpm_tools",
- importpath = "github.com/google/go-tpm-tools",
- sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=",
- version = "v0.0.0-20190731025042-f8c04ff88181",
- )
- go_repository(
- name = "com_github_google_gofuzz",
- importpath = "github.com/google/gofuzz",
- sum = "h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw=",
- version = "v1.0.0",
- )
-
- go_repository(
- name = "com_github_google_uuid",
- importpath = "github.com/google/uuid",
- sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
- version = "v1.1.1",
- )
-
- go_repository(
- name = "com_github_gorilla_websocket",
- importpath = "github.com/gorilla/websocket",
- sum = "h1:q7AeDBpnBk8AogcD4DSag/Ukw/KV+YhzLj2bP5HvKCM=",
- version = "v1.4.1",
- )
-
- go_repository(
- name = "com_github_grpc_ecosystem_go_grpc_middleware",
- importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
- sum = "h1:z53tR0945TRRQO/fLEVPI6SMv7ZflF0TEaTAoU7tOzg=",
- version = "v1.0.1-0.20190118093823-f849b5445de4",
- )
- go_repository(
- name = "com_github_grpc_ecosystem_go_grpc_prometheus",
- importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
- sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
- version = "v1.2.0",
- )
- go_repository(
- name = "com_github_grpc_ecosystem_grpc_gateway",
- importpath = "github.com/grpc-ecosystem/grpc-gateway",
- sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
- version = "v1.9.5",
- )
-
- go_repository(
- name = "com_github_hashicorp_hcl",
- importpath = "github.com/hashicorp/hcl",
- sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
- version = "v1.0.0",
- )
-
- go_repository(
- name = "com_github_hugelgupf_socketpair",
- importpath = "github.com/hugelgupf/socketpair",
- sum = "h1:/jC7qQFrv8CrSJVmaolDVOxTfS9kc36uB6H40kdbQq8=",
- version = "v0.0.0-20190730060125-05d35a94e714",
- )
-
- go_repository(
- name = "com_github_inconshreveable_mousetrap",
- importpath = "github.com/inconshreveable/mousetrap",
- sum = "h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=",
- version = "v1.0.0",
- )
- go_repository(
- name = "com_github_insomniacslk_dhcp",
- importpath = "github.com/insomniacslk/dhcp",
- sum = "h1:2PyiA5CVpWhQ4CPINgksFnopxYOGUN1n2IjKwrRqQDE=",
- version = "v0.0.0-20190814082028-393ae75a101b",
- )
-
- go_repository(
- name = "com_github_jonboulle_clockwork",
- importpath = "github.com/jonboulle/clockwork",
- sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
- version = "v0.1.0",
- )
- go_repository(
- name = "com_github_json_iterator_go",
- importpath = "github.com/json-iterator/go",
- sum = "h1:QiWkFLKq0T7mpzwOTu6BzNDbfTE8OLrYhVKYMLF46Ok=",
- version = "v1.1.8",
- )
-
- go_repository(
- name = "com_github_julienschmidt_httprouter",
- importpath = "github.com/julienschmidt/httprouter",
- sum = "h1:TDTW5Yz1mjftljbcKqRcrYhd4XeOoI98t+9HbQbYf7g=",
- version = "v1.2.0",
- )
-
- go_repository(
- name = "com_github_kisielk_errcheck",
- importpath = "github.com/kisielk/errcheck",
- sum = "h1:reN85Pxc5larApoH1keMBiu2GWtPqXQ1nc9gx+jOU+E=",
- version = "v1.2.0",
- )
- go_repository(
- name = "com_github_kisielk_gotool",
- importpath = "github.com/kisielk/gotool",
- sum = "h1:AV2c/EiW3KqPNT9ZKl07ehoAGi4C5/01Cfbblndcapg=",
- version = "v1.0.0",
- )
-
- go_repository(
- name = "com_github_konsorten_go_windows_terminal_sequences",
- importpath = "github.com/konsorten/go-windows-terminal-sequences",
- sum = "h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s=",
- version = "v1.0.2",
- )
- go_repository(
- name = "com_github_kr_logfmt",
- importpath = "github.com/kr/logfmt",
- sum = "h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY=",
- version = "v0.0.0-20140226030751-b84e30acd515",
- )
- go_repository(
- name = "com_github_kr_pretty",
- importpath = "github.com/kr/pretty",
- sum = "h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=",
- version = "v0.1.0",
- )
- go_repository(
- name = "com_github_kr_pty",
- importpath = "github.com/kr/pty",
- sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=",
- version = "v1.1.1",
- )
- go_repository(
- name = "com_github_kr_text",
- importpath = "github.com/kr/text",
- sum = "h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=",
- version = "v0.1.0",
- )
-
- go_repository(
- name = "com_github_magiconair_properties",
- importpath = "github.com/magiconair/properties",
- sum = "h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=",
- version = "v1.8.0",
- )
-
- go_repository(
- name = "com_github_mattn_go_colorable",
- importpath = "github.com/mattn/go-colorable",
- sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
- version = "v0.0.9",
- )
- go_repository(
- name = "com_github_mattn_go_isatty",
- importpath = "github.com/mattn/go-isatty",
- sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
- version = "v0.0.4",
- )
- go_repository(
- name = "com_github_mattn_go_runewidth",
- importpath = "github.com/mattn/go-runewidth",
- sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
- version = "v0.0.2",
- )
- go_repository(
- name = "com_github_matttproud_golang_protobuf_extensions",
- importpath = "github.com/matttproud/golang_protobuf_extensions",
- sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
- version = "v1.0.1",
- )
- go_repository(
- name = "com_github_mdlayher_ethernet",
- importpath = "github.com/mdlayher/ethernet",
- sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=",
- version = "v0.0.0-20190606142754-0394541c37b7",
- )
- go_repository(
- name = "com_github_mdlayher_raw",
- importpath = "github.com/mdlayher/raw",
- sum = "h1:Xjvm7UTnKTwrlhbs+8qA6I0v1iX77rY3QxftSgvOVRk=",
- version = "v0.0.0-20190606144222-a54781e5f38f",
- )
-
- go_repository(
- name = "com_github_mitchellh_go_homedir",
- importpath = "github.com/mitchellh/go-homedir",
- sum = "h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y=",
- version = "v1.1.0",
- )
-
- go_repository(
- name = "com_github_mitchellh_mapstructure",
- importpath = "github.com/mitchellh/mapstructure",
- sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
- version = "v1.1.2",
- )
-
- go_repository(
- name = "com_github_modern_go_concurrent",
- importpath = "github.com/modern-go/concurrent",
- sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
- version = "v0.0.0-20180306012644-bacd9c7ef1dd",
- )
- go_repository(
- name = "com_github_modern_go_reflect2",
- importpath = "github.com/modern-go/reflect2",
- sum = "h1:9f412s+6RmYXLWZSEzVVgPGK7C2PphHj5RJrvfx9AWI=",
- version = "v1.0.1",
- )
- go_repository(
- name = "com_github_mwitkow_go_conntrack",
- importpath = "github.com/mwitkow/go-conntrack",
- sum = "h1:F9x/1yl3T2AeKLr2AMdilSD8+f9bvMnNN8VS5iDtovc=",
- version = "v0.0.0-20161129095857-cc309e4a2223",
- )
-
- go_repository(
- name = "com_github_olekukonko_tablewriter",
- importpath = "github.com/olekukonko/tablewriter",
- sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
- version = "v0.0.0-20170122224234-a0225b3f23b5",
- )
-
- go_repository(
- name = "com_github_onsi_ginkgo",
- importpath = "github.com/onsi/ginkgo",
- sum = "h1:Ix8l273rp3QzYgXSR+c8d1fTG7UPgYkOSELPhiY/YGw=",
- version = "v1.6.0",
- )
- go_repository(
- name = "com_github_onsi_gomega",
- importpath = "github.com/onsi/gomega",
- sum = "h1:3mYCb7aPxS/RU7TI1y4rkEn1oKmPRjNJLNEXgw7MH2I=",
- version = "v1.4.2",
- )
-
- go_repository(
- name = "com_github_pelletier_go_toml",
- importpath = "github.com/pelletier/go-toml",
- sum = "h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc=",
- version = "v1.2.0",
- )
-
- go_repository(
- name = "com_github_pkg_errors",
- importpath = "github.com/pkg/errors",
- sum = "h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=",
- version = "v0.8.1",
- )
-
- go_repository(
- name = "com_github_pmezard_go_difflib",
- importpath = "github.com/pmezard/go-difflib",
- sum = "h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=",
- version = "v1.0.0",
- )
-
- go_repository(
- name = "com_github_prometheus_client_golang",
- importpath = "github.com/prometheus/client_golang",
- sum = "h1:vrDKnkGzuGvhNAL56c7DBz29ZL+KxnoR0x7enabFceM=",
- version = "v1.0.0",
- )
- go_repository(
- name = "com_github_prometheus_client_model",
- importpath = "github.com/prometheus/client_model",
- sum = "h1:gQz4mCbXsO+nc9n1hCxHcGA3Zx3Eo+UHZoInFGUIXNM=",
- version = "v0.0.0-20190812154241-14fe0d1b01d4",
- )
- go_repository(
- name = "com_github_prometheus_common",
- importpath = "github.com/prometheus/common",
- sum = "h1:K0MGApIoQvMw27RTdJkPbr3JZ7DNbtxQNyi5STVM6Kw=",
- version = "v0.4.1",
- )
- go_repository(
- name = "com_github_prometheus_procfs",
- importpath = "github.com/prometheus/procfs",
- sum = "h1:6LJUbpNm42llc4HRCuvApCSWB/WfhuNo9K98Q9sNGfs=",
- version = "v0.0.2",
- )
-
- go_repository(
- name = "com_github_rekby_gpt",
- importpath = "github.com/rekby/gpt",
- sum = "h1:cFRSGvObVNqtA4pnu8Y/0CWxc4WFvfssCVTrslH/yg4=",
- version = "v0.0.0-20190209220743-520ac65554cf",
- )
-
- go_repository(
- name = "com_github_rogpeppe_fastuuid",
- importpath = "github.com/rogpeppe/fastuuid",
- sum = "h1:gu+uRPtBe88sKxUCEXRoeCvVG90TJmwhiqRpvdhQFng=",
- version = "v0.0.0-20150106093220-6724a57986af",
- )
-
- go_repository(
- name = "com_github_russross_blackfriday",
- importpath = "github.com/russross/blackfriday",
- sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
- version = "v1.5.2",
- )
-
- go_repository(
- name = "com_github_satori_go_uuid",
- importpath = "github.com/satori/go.uuid",
- sum = "h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww=",
- version = "v1.2.0",
- )
-
- go_repository(
- name = "com_github_sirupsen_logrus",
- importpath = "github.com/sirupsen/logrus",
- sum = "h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4=",
- version = "v1.4.2",
- )
-
- go_repository(
- name = "com_github_soheilhy_cmux",
- importpath = "github.com/soheilhy/cmux",
- sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
- version = "v0.1.4",
- )
-
- go_repository(
- name = "com_github_spf13_afero",
- importpath = "github.com/spf13/afero",
- sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
- version = "v1.2.2",
- )
- go_repository(
- name = "com_github_spf13_cast",
- importpath = "github.com/spf13/cast",
- sum = "h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8=",
- version = "v1.3.0",
- )
- go_repository(
- name = "com_github_spf13_cobra",
- importpath = "github.com/spf13/cobra",
- sum = "h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s=",
- version = "v0.0.5",
- )
- go_repository(
- name = "com_github_spf13_jwalterweatherman",
- importpath = "github.com/spf13/jwalterweatherman",
- sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
- version = "v1.0.0",
+ name = "io_k8s_cri_api",
+ build_file_proto_mode = "disable",
+ importpath = "k8s.io/cri-api",
+ sum = "h1:JDsPY0mIzxR6JYGWKWhX7NIIXa9giiVQ1X/RE0Mw1GY=",
+ version = "v0.19.0-alpha.2",
)
go_repository(
name = "com_github_spf13_pflag",
@@ -583,231 +220,191 @@
version = "v1.0.5",
)
go_repository(
- name = "com_github_spf13_viper",
- importpath = "github.com/spf13/viper",
- sum = "h1:VUFqw5KcqRf7i70GOzW7N+Q7+gxVBkSSqiXB12+JQ4M=",
- version = "v1.3.2",
- )
-
- go_repository(
- name = "com_github_stretchr_objx",
- importpath = "github.com/stretchr/objx",
- sum = "h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=",
- version = "v0.2.0",
- )
- go_repository(
- name = "com_github_stretchr_testify",
- importpath = "github.com/stretchr/testify",
- sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=",
- version = "v1.4.0",
- )
-
- go_repository(
- name = "com_github_tmc_grpc_websocket_proxy",
- importpath = "github.com/tmc/grpc-websocket-proxy",
- sum = "h1:LnC5Kc/wtumK+WB441p7ynQJzVuNRJiqddSIE3IlSEQ=",
- version = "v0.0.0-20190109142713-0ad062ec5ee5",
- )
-
- go_repository(
- name = "com_github_u_root_u_root",
- importpath = "github.com/u-root/u-root",
- sum = "h1:YqPGmRoRyYmeg17KIWFRSyVq6LX5T6GSzawyA6wG6EE=",
- version = "v6.0.0+incompatible",
- )
-
- go_repository(
- name = "com_github_ugorji_go_codec",
- importpath = "github.com/ugorji/go/codec",
- sum = "h1:3SVOIvH7Ae1KRYyQWRjXWJEA9sS/c/pjvH++55Gr648=",
- version = "v0.0.0-20181204163529-d75b2dcb6bc8",
- )
- go_repository(
- name = "com_github_urfave_cli",
- importpath = "github.com/urfave/cli",
- sum = "h1:fDqGv3UG/4jbVl/QkFwEdddtEDjh/5Ov6X+0B/3bPaw=",
- version = "v1.20.0",
- )
-
- go_repository(
- name = "com_github_vishvananda_netlink",
- importpath = "github.com/vishvananda/netlink",
- sum = "h1:bqNY2lgheFIu1meHUFSH3d7vG93AFyqg3oGbJCOJgSM=",
+ name = "com_github_spf13_cobra",
+ importpath = "github.com/spf13/cobra",
+ sum = "h1:6m/oheQuQ13N9ks4hubMG6BnvwOeaJrqSPLahSnczz8=",
version = "v1.0.0",
)
go_repository(
- name = "com_github_vishvananda_netns",
- importpath = "github.com/vishvananda/netns",
- sum = "h1:nBX3nTcmxEtHSERBJaIo1Qa26VwRaopnZmfDQUXsF4I=",
- version = "v0.0.0-20190625233234-7109fa855b0f",
+ name = "com_github_blang_semver",
+ importpath = "github.com/blang/semver",
+ sum = "h1:CGxCgetQ64DKk7rdZ++Vfnb1+ogGNnB17OJKJXD2Cfs=",
+ version = "v3.5.0+incompatible",
)
go_repository(
- name = "com_github_xiang90_probing",
- importpath = "github.com/xiang90/probing",
- sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
- version = "v0.0.0-20190116061207-43a291ad63a2",
+ name = "com_github_coreos_go_systemd",
+ importpath = "github.com/coreos/go-systemd",
+ sum = "h1:Wf6HqHfScWJN9/ZjdUKyjop4mf3Qdd+1TvvltAvM3m8=",
+ version = "v0.0.0-20190321100706-95778dfbb74e",
)
go_repository(
- name = "com_github_xordataexchange_crypt",
- importpath = "github.com/xordataexchange/crypt",
- sum = "h1:ESFSdwYZvkeru3RtdrYueztKhOBCSAAzS4Gf+k0tEow=",
- version = "v0.0.3-0.20170626215501-b2862e3d0a77",
+ name = "io_k8s_utils",
+ importpath = "k8s.io/utils",
+ sum = "h1:d4vVOjXm687F1iLSP2q3lyPPuyvTUt3aVoBpi2DqRsU=",
+ version = "v0.0.0-20200324210504-a9aa75ae1b89",
)
go_repository(
- name = "com_github_yalue_native_endian",
- importpath = "github.com/yalue/native_endian",
- sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=",
- version = "v0.0.0-20180607135909-51013b03be4f",
- )
-
- go_repository(
- name = "com_google_cloud_go",
- importpath = "cloud.google.com/go",
- sum = "h1:eOI3/cP2VTU6uZLDYAoic+eyzzB9YyGmJ7eIjl8rOPg=",
- version = "v0.34.0",
- )
-
- go_repository(
- name = "in_gopkg_alecthomas_kingpin_v2",
- importpath = "gopkg.in/alecthomas/kingpin.v2",
- sum = "h1:jMFz6MfLP0/4fUyZle81rXUoxOBFi19VUFKVDOQfozc=",
- version = "v2.2.6",
- )
-
- go_repository(
- name = "in_gopkg_check_v1",
- importpath = "gopkg.in/check.v1",
- sum = "h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo=",
- version = "v1.0.0-20190902080502-41f04d3bba15",
+ name = "com_github_spf13_afero",
+ importpath = "github.com/spf13/afero",
+ sum = "h1:5jhuqJyZCZf2JRofRvN/nIFgIWNzPa3/Vz8mYylgbWc=",
+ version = "v1.2.2",
)
go_repository(
- name = "in_gopkg_cheggaaa_pb_v1",
- importpath = "gopkg.in/cheggaaa/pb.v1",
- sum = "h1:Ev7yu1/f6+d+b3pi5vPdRPc6nNtP1umSfcWiEfRqv6I=",
- version = "v1.0.25",
- )
-
- go_repository(
- name = "in_gopkg_resty_v1",
- importpath = "gopkg.in/resty.v1",
- sum = "h1:CuXP0Pjfw9rOuY6EP+UvtNvt5DSqHpIxILZKT/quCZI=",
- version = "v1.12.0",
- )
-
- go_repository(
- name = "in_gopkg_yaml_v2",
- importpath = "gopkg.in/yaml.v2",
- sum = "h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I=",
- version = "v2.2.4",
+ name = "com_github_armon_circbuf",
+ importpath = "github.com/armon/circbuf",
+ sum = "h1:QEF07wC0T1rKkctt1RINW/+RMTVmiwxETico2l3gxJA=",
+ version = "v0.0.0-20150827004946-bbbad097214e",
)
go_repository(
- name = "io_etcd_go_bbolt",
- importpath = "go.etcd.io/bbolt",
- sum = "h1:MUGmc65QhB3pIlaQ5bB4LwqSj6GIonVJXpZiaKNyaKk=",
- version = "v1.3.3",
+ name = "com_github_container_storage_interface_spec",
+ importpath = "github.com/container-storage-interface/spec",
+ sum = "h1:bD9KIVgaVKKkQ/UbVUY9kCaH/CJbhNxe0eeB4JeJV2s=",
+ version = "v1.2.0",
+ )
+ go_repository(
+ name = "com_github_docker_go_connections",
+ importpath = "github.com/docker/go-connections",
+ sum = "h1:3lOnM9cSzgGwx8VfK/NGOW5fLQ0GjIlCkaktF+n1M6o=",
+ version = "v0.3.0",
+ )
+ go_repository(
+ name = "io_k8s_kube_openapi",
+ importpath = "k8s.io/kube-openapi",
+ sum = "h1:FDWYFE3itI1G8UFOMjUuLbROZExo+Rrfm/Qaf473rm4=",
+ version = "v0.0.0-20200403204345-e1beb1bd0f35",
+ )
+ go_repository(
+ name = "com_github_go_openapi_spec",
+ importpath = "github.com/go-openapi/spec",
+ sum = "h1:0XRyw8kguri6Yw4SxhsQA/atC88yqrk0+G4YhI2wabc=",
+ version = "v0.19.3",
+ )
+ go_repository(
+ name = "com_github_evanphx_json_patch",
+ importpath = "github.com/evanphx/json-patch",
+ sum = "h1:fUDGZCv/7iAN7u0puUVhvKCcsR6vRfwrJatElLBEf0I=",
+ version = "v4.2.0+incompatible",
)
go_repository(
name = "io_etcd_go_etcd",
build_file_proto_mode = "disable",
importpath = "go.etcd.io/etcd",
- sum = "h1:TcJ8iNja1CH/h/3QcsydKL5krb0MIPjMJLYgzClNaSQ=",
- version = "v0.5.0-alpha.5.0.20200306183522-221f0cc107cb",
+ sum = "h1:C7kWARE8r64ppRadl40yfNo6pag+G6ocvGU2xZ6yNes=",
+ version = "v0.5.0-alpha.5.0.20200401174654-e694b7bb0875",
)
-
go_repository(
- name = "io_k8s_sigs_yaml",
- importpath = "sigs.k8s.io/yaml",
- sum = "h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs=",
+ name = "com_github_go_openapi_jsonpointer",
+ importpath = "github.com/go-openapi/jsonpointer",
+ sum = "h1:gihV7YNZK1iK6Tgwwsxo2rJbD1GTbdm72325Bq8FI3w=",
+ version = "v0.19.3",
+ )
+ go_repository(
+ name = "com_github_go_openapi_swag",
+ importpath = "github.com/go-openapi/swag",
+ sum = "h1:lTz6Ys4CmqqCQmZPBlbQENR1/GucA2bzYTE12Pw4tFY=",
+ version = "v0.19.5",
+ )
+ go_repository(
+ name = "com_github_go_openapi_jsonreference",
+ importpath = "github.com/go-openapi/jsonreference",
+ sum = "h1:5cxNfTy0UVC3X8JL5ymxzyoUZmo8iZb+jeTWn7tUa8o=",
+ version = "v0.19.3",
+ )
+ go_repository(
+ name = "com_github_cyphar_filepath_securejoin",
+ importpath = "github.com/cyphar/filepath-securejoin",
+ sum = "h1:jCwT2GTP+PY5nBz3c/YL5PAIbusElVrPujOBSCj8xRg=",
+ version = "v0.2.2",
+ )
+ go_repository(
+ name = "com_github_mailru_easyjson",
+ importpath = "github.com/mailru/easyjson",
+ sum = "h1:aizVhC/NAAcKWb+5QsU1iNOZb4Yws5UO2I+aIprQITM=",
+ version = "v0.7.0",
+ )
+ go_repository(
+ name = "com_github_puerkitobio_purell",
+ importpath = "github.com/PuerkitoBio/purell",
+ sum = "h1:WEQqlqaGbrPkxLJWfBwQmfEAE1Z7ONdDLqrN38tNFfI=",
+ version = "v1.1.1",
+ )
+ go_repository(
+ name = "com_github_puerkitobio_urlesc",
+ importpath = "github.com/PuerkitoBio/urlesc",
+ sum = "h1:d+Bc7a5rLufV/sSk/8dngufqelfh6jnri85riMAaF/M=",
+ version = "v0.0.0-20170810143723-de5bf2ad4578",
+ )
+ go_repository(
+ name = "com_github_mxk_go_flowrate",
+ importpath = "github.com/mxk/go-flowrate",
+ sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
+ version = "v0.0.0-20140419014527-cca7078d478f",
+ )
+ go_repository(
+ name = "com_google_cloud_go",
+ importpath = "cloud.google.com/go",
+ sum = "h1:ROfEUZz+Gh5pa62DJWXSaonyu3StP6EA6lPEXPI6mCo=",
+ version = "v0.38.0",
+ )
+ go_repository(
+ name = "com_github_karrick_godirwalk",
+ importpath = "github.com/karrick/godirwalk",
+ sum = "h1:VbzFqwXwNbAZoA6W5odrLr+hKK197CcENcPh6E/gJ0M=",
+ version = "v1.7.5",
+ )
+ go_repository(
+ name = "com_github_euank_go_kmsg_parser",
+ importpath = "github.com/euank/go-kmsg-parser",
+ sum = "h1:cHD53+PLQuuQyLZeriD1V/esuG4MuU0Pjs5y6iknohY=",
+ version = "v2.0.0+incompatible",
+ )
+ go_repository(
+ name = "com_github_mindprince_gonvml",
+ importpath = "github.com/mindprince/gonvml",
+ sum = "h1:PS1dLCGtD8bb9RPKJrc8bS7qHL6JnW1CZvwzH9dPoUs=",
+ version = "v0.0.0-20190828220739-9ebdce4bb989",
+ )
+ go_repository(
+ name = "com_github_checkpoint_restore_go_criu",
+ importpath = "github.com/checkpoint-restore/go-criu",
+ sum = "h1:T4nWG1TXIxeor8mAu5bFguPJgSIGhZqv/f0z55KCrJM=",
+ version = "v0.0.0-20190109184317-bdb7599cd87b",
+ )
+ go_repository(
+ name = "com_github_mrunalp_fileutils",
+ importpath = "github.com/mrunalp/fileutils",
+ sum = "h1:7InQ7/zrOh6SlFjaXFubv0xX0HsuC9qJsdqm7bNQpYM=",
+ version = "v0.0.0-20171103030105-7d4729fb3618",
+ )
+ go_repository(
+ name = "com_github_vishvananda_netns",
+ importpath = "github.com/vishvananda/netns",
+ sum = "h1:OviZH7qLw/7ZovXvuNyL3XQl8UFofeikI1NW1Gypu7k=",
+ version = "v0.0.0-20191106174202-0a2b9b5464df",
+ )
+ go_repository(
+ name = "com_github_munnerz_goautoneg",
+ importpath = "github.com/munnerz/goautoneg",
+ sum = "h1:C3w9PqII01/Oq1c1nUAm88MOHcQC9l5mIlSMApZMrHA=",
+ version = "v0.0.0-20191010083416-a7dc8b61c822",
+ )
+ go_repository(
+ name = "com_github_nytimes_gziphandler",
+ importpath = "github.com/NYTimes/gziphandler",
+ sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=",
+ version = "v0.0.0-20170623195520-56545f4a5d46",
+ )
+ go_repository(
+ name = "com_github_vishvananda_netlink",
+ importpath = "github.com/vishvananda/netlink",
+ sum = "h1:1iyaYNBLmP6L0220aDnYQpo1QEV4t4hJ+xEEhhJH8j0=",
version = "v1.1.0",
)
-
go_repository(
- name = "org_golang_google_appengine",
- importpath = "google.golang.org/appengine",
- sum = "h1:KxkO13IPW4Lslp2bz+KHP2E3gtFlrIGNThxkZQ3g+4c=",
- version = "v1.5.0",
- )
- go_repository(
- name = "org_golang_google_genproto",
- importpath = "google.golang.org/genproto",
- sum = "h1:gSJIx1SDwno+2ElGhA4+qG2zF97qiUzTM+rQ0klBOcE=",
- version = "v0.0.0-20190819201941-24fa4b261c55",
- )
- go_repository(
- name = "org_golang_google_grpc",
- build_file_proto_mode = "disable",
- importpath = "google.golang.org/grpc",
- sum = "h1:bO/TA4OxCOummhSf10siHuG7vJOiwh7SpRpFZDkOgl4=",
- version = "v1.28.0",
- )
-
- go_repository(
- name = "org_golang_x_crypto",
- importpath = "golang.org/x/crypto",
- sum = "h1:c0o/qxkaO2LF5t6fQrT4b5hzyggAkLLlCUjqfRxd8Q4=",
- version = "v0.0.0-20191002192127-34f69633bfdc",
- )
-
- go_repository(
- name = "org_golang_x_lint",
- importpath = "golang.org/x/lint",
- sum = "h1:XQyxROzUlZH+WIQwySDgnISgOivlhjIEwaQaJEJrrN0=",
- version = "v0.0.0-20190313153728-d0100b6bd8b3",
- )
- go_repository(
- name = "org_golang_x_net",
- importpath = "golang.org/x/net",
- sum = "h1:rjwSpXsdiK0dV8/Naq3kAw9ymfAeJIyd0upUIElB+lI=",
- version = "v0.0.0-20191004110552-13f9640d40b9",
- )
- go_repository(
- name = "org_golang_x_oauth2",
- importpath = "golang.org/x/oauth2",
- sum = "h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0=",
- version = "v0.0.0-20190604053449-0f29369cfe45",
- )
-
- go_repository(
- name = "org_golang_x_sync",
- importpath = "golang.org/x/sync",
- sum = "h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU=",
- version = "v0.0.0-20190423024810-112230192c58",
- )
- go_repository(
- name = "org_golang_x_sys",
- importpath = "golang.org/x/sys",
- sum = "h1:ZtoklVMHQy6BFRHkbG6JzK+S6rX82//Yeok1vMlizfQ=",
- version = "v0.0.0-20191018095205-727590c5006e",
- )
- go_repository(
- name = "org_golang_x_text",
- importpath = "golang.org/x/text",
- sum = "h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs=",
- version = "v0.3.2",
- )
- go_repository(
- name = "org_golang_x_time",
- importpath = "golang.org/x/time",
- sum = "h1:SvFZT6jyqRaOeXpc5h/JSfZenJ2O330aBsf7JfSUXmQ=",
- version = "v0.0.0-20190308202827-9d24e82272b4",
- )
- go_repository(
- name = "org_golang_x_tools",
- importpath = "golang.org/x/tools",
- sum = "h1:KfpJVdWhuRqNk4XVXzjXf2KAV4TBEP77SYdFGjeGuIE=",
- version = "v0.0.0-20190624180213-70d37148ca0c",
- )
- go_repository(
- name = "org_uber_go_atomic",
- importpath = "go.uber.org/atomic",
- sum = "h1:cxzIVoETapQEqDhQu3QfnvXAV4AlzcvUCxkVUFw3+EU=",
- version = "v1.4.0",
- )
- go_repository(
- name = "org_uber_go_multierr",
- importpath = "go.uber.org/multierr",
- sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
- version = "v1.1.0",
+ name = "com_github_googleapis_gnostic",
+ importpath = "github.com/googleapis/gnostic",
+ sum = "h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=",
+ version = "v0.4.1",
)
go_repository(
name = "org_uber_go_zap",
@@ -816,100 +413,410 @@
version = "v1.10.0",
)
go_repository(
- name = "com_github_apmckinlay_gsuneido",
- importpath = "github.com/apmckinlay/gsuneido",
- sum = "h1:WwxMm9boNuaj5YW+qfRoORxLLJrSRiK1zovCfGNddY0=",
- version = "v0.0.0-20190404155041-0b6cd442a18f",
- )
- go_repository(
- name = "com_github_armon_go_radix",
- importpath = "github.com/armon/go-radix",
- sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=",
- version = "v0.0.0-20180808171621-7fddfc383310",
- )
- go_repository(
- name = "com_github_cockroachdb_apd",
- importpath = "github.com/cockroachdb/apd",
- sum = "h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I=",
- version = "v1.1.0",
- )
- go_repository(
- name = "com_github_data_dog_go_sqlmock",
- importpath = "github.com/DATA-DOG/go-sqlmock",
- sum = "h1:CWUqKXe0s8A2z6qCgkP4Kru7wC11YoAnoupUKFDnH08=",
- version = "v1.3.3",
- )
- go_repository(
- name = "com_github_denisenkom_go_mssqldb",
- importpath = "github.com/denisenkom/go-mssqldb",
- sum = "h1:epsH3lb7KVbXHYk7LYGN5EiE0MxcevHU85CKITJ0wUY=",
- version = "v0.0.0-20191001013358-cfbb681360f0",
- )
- go_repository(
- name = "com_github_ericlagergren_decimal",
- importpath = "github.com/ericlagergren/decimal",
- sum = "h1:gImfQgMq4P8DtUESTFGgqBaYuUwc0xE7AoYRKkYzrOc=",
- version = "v0.0.0-20191018222636-98d6b4cb4b5e",
- )
- go_repository(
- name = "com_github_friendsofgo_errors",
- importpath = "github.com/friendsofgo/errors",
- sum = "h1:X6NYxef4efCBdwI7BgS820zFaN7Cphrmb+Pljdzjtgk=",
- version = "v0.9.2",
- )
- go_repository(
- name = "com_github_glerchundi_sqlboiler_crdb",
- importpath = "github.com/glerchundi/sqlboiler-crdb",
- sum = "h1:qC5Gu83hkXlQVECFs1u/9EdwYjo58RYaxWnJZGa0YN0=",
- version = "v0.0.0-20191112134934-62014c8c8df1",
- )
- go_repository(
- name = "com_github_go_sql_driver_mysql",
- importpath = "github.com/go-sql-driver/mysql",
- sum = "h1:g24URVg0OFbNUTx9qqY1IRZ9D9z3iPyi5zKhQZpNwpA=",
- version = "v1.4.1",
- )
- go_repository(
- name = "com_github_gobuffalo_envy",
- importpath = "github.com/gobuffalo/envy",
- sum = "h1:GlXgaiBkmrYMHco6t4j7SacKO4XUjvh5pwXh0f4uxXU=",
- version = "v1.7.0",
- )
- go_repository(
- name = "com_github_gobuffalo_logger",
- importpath = "github.com/gobuffalo/logger",
- sum = "h1:xw9Ko9EcC5iAFprrjJ6oZco9UpzS5MQ4jAwghsLHdy4=",
- version = "v1.0.0",
- )
- go_repository(
- name = "com_github_gobuffalo_packd",
- importpath = "github.com/gobuffalo/packd",
- sum = "h1:eMwymTkA1uXsqxS0Tpoop3Lc0u3kTfiMBE6nKtQU4g4=",
+ name = "com_github_coreos_go_semver",
+ importpath = "github.com/coreos/go-semver",
+ sum = "h1:wkHLiw0WNATZnSG7epLsujiMCgPAc9xhjJ4tgnAxmfM=",
version = "v0.3.0",
)
go_repository(
- name = "com_github_gobuffalo_packr",
- importpath = "github.com/gobuffalo/packr",
- sum = "h1:hu1fuVR3fXEZR7rXNW3h8rqSML8EVAf6KNm0NKO/wKg=",
- version = "v1.30.1",
+ name = "org_uber_go_multierr",
+ importpath = "go.uber.org/multierr",
+ sum = "h1:HoEmRHQPVSqub6w2z2d2EOVs2fjyFRGyofhKuyDq0QI=",
+ version = "v1.1.0",
)
go_repository(
- name = "com_github_gobuffalo_packr_v2",
- importpath = "github.com/gobuffalo/packr/v2",
- sum = "h1:TFOeY2VoGamPjQLiNDT3mn//ytzk236VMO2j7iHxJR4=",
- version = "v2.5.1",
+ name = "org_uber_go_atomic",
+ importpath = "go.uber.org/atomic",
+ sum = "h1:2Oa65PReHzfn29GpvgsYwloV9AVFHPDk8tYxt2c2tr4=",
+ version = "v1.3.2",
)
go_repository(
- name = "com_github_gofrs_uuid",
- importpath = "github.com/gofrs/uuid",
- sum = "h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE=",
+ name = "com_github_coreos_pkg",
+ importpath = "github.com/coreos/pkg",
+ sum = "h1:n2Ltr3SrfQlf/9nOna1DoGKxLx3qTSI8Ttl6Xrqp6mw=",
+ version = "v0.0.0-20180108230652-97fdf19511ea",
+ )
+ go_repository(
+ name = "com_github_morikuni_aec",
+ importpath = "github.com/morikuni/aec",
+ sum = "h1:nP9CBfwrvYnBRgY6qfDQkygYDmYwOilePFkwzv4dU8A=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_lithammer_dedent",
+ importpath = "github.com/lithammer/dedent",
+ sum = "h1:VNzHMVCBNG1j0fh3OrsFRkVUwStdDArbgBWoPAffktY=",
+ version = "v1.1.0",
+ )
+ go_repository(
+ name = "com_github_grpc_ecosystem_go_grpc_prometheus",
+ importpath = "github.com/grpc-ecosystem/go-grpc-prometheus",
+ sum = "h1:Ovs26xHkKqVztRpIrF/92BcuyuQ/YW4NSIpoGtfXNho=",
+ version = "v1.2.0",
+ )
+ go_repository(
+ name = "in_gopkg_natefinch_lumberjack_v2",
+ importpath = "gopkg.in/natefinch/lumberjack.v2",
+ sum = "h1:Kjoe/521+yYTO0xv6VymPwLPVq3RES8170ZpJkrFE9Q=",
+ version = "v2.0.0-20161104145732-dd45e6a67c53",
+ )
+ go_repository(
+ name = "com_github_robfig_cron",
+ importpath = "github.com/robfig/cron",
+ sum = "h1:ZjScXvvxeQ63Dbyxy76Fj3AT3Ut0aKsyd2/tl3DTMuQ=",
+ version = "v1.2.0",
+ )
+ go_repository(
+ name = "com_github_coreos_go_oidc",
+ importpath = "github.com/coreos/go-oidc",
+ sum = "h1:sdJrfw8akMnCuUlaZU3tE/uYXFgfqom8DBE9so9EBsM=",
+ version = "v2.1.0+incompatible",
+ )
+ go_repository(
+ name = "org_gonum_v1_gonum",
+ importpath = "gonum.org/v1/gonum",
+ sum = "h1:4r+yNT0+8SWcOkXP+63H2zQbN+USnC73cjGUxnDF94Q=",
+ version = "v0.6.2",
+ )
+ go_repository(
+ name = "io_k8s_heapster",
+ importpath = "k8s.io/heapster",
+ sum = "h1:zq1luJo07HL2HT4hiddH4nron62gVRlAq/DpOV3n31s=",
+ version = "v1.2.0",
+ )
+ go_repository(
+ name = "in_gopkg_square_go_jose_v2",
+ importpath = "gopkg.in/square/go-jose.v2",
+ sum = "h1:orlkJ3myw8CN1nVQHBFfloD+L3egixIa4FvUP6RosSA=",
+ version = "v2.2.2",
+ )
+ go_repository(
+ name = "com_github_pquerna_cachecontrol",
+ importpath = "github.com/pquerna/cachecontrol",
+ sum = "h1:0XM1XL/OFFJjXsYXlG30spTkV/E9+gmd5GD1w2HE8xM=",
+ version = "v0.0.0-20171018203845-0dec1b30a021",
+ )
+ go_repository(
+ name = "com_github_go_openapi_validate",
+ importpath = "github.com/go-openapi/validate",
+ sum = "h1:QhCBKRYqZR+SKo4gl1lPhPahope8/RLt6EVgY8X80w0=",
+ version = "v0.19.5",
+ )
+ go_repository(
+ name = "com_github_go_openapi_strfmt",
+ importpath = "github.com/go-openapi/strfmt",
+ sum = "h1:eRfyY5SkaNJCAwmmMcADjY31ow9+N7MCLW7oRkbsINA=",
+ version = "v0.19.3",
+ )
+ go_repository(
+ name = "io_k8s_gengo",
+ importpath = "k8s.io/gengo",
+ sum = "h1:pZzawYyz6VRNPVYpqGv61LWCimQv1BihyeqFrp50/G4=",
+ version = "v0.0.0-20200205140755-e0e292d8aa12",
+ )
+ go_repository(
+ name = "org_golang_x_mod",
+ importpath = "golang.org/x/mod",
+ sum = "h1:KU7oHjnv3XNWfa5COkzUifxZmxp1TyI7ImMXqFxLwvQ=",
+ version = "v0.2.0",
+ )
+ go_repository(
+ name = "org_golang_x_xerrors",
+ importpath = "golang.org/x/xerrors",
+ sum = "h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=",
+ version = "v0.0.0-20191204190536-9bdfabe68543",
+ )
+ go_repository(
+ name = "com_github_grpc_ecosystem_grpc_gateway",
+ importpath = "github.com/grpc-ecosystem/grpc-gateway",
+ sum = "h1:UImYN5qQ8tuGpGE16ZmjvcTtTw24zw1QAp/SlnNrZhI=",
+ version = "v1.9.5",
+ )
+ go_repository(
+ name = "com_github_soheilhy_cmux",
+ importpath = "github.com/soheilhy/cmux",
+ sum = "h1:0HKaf1o97UwFjHH9o5XsHUOF+tqmdA7KEzXLpiyaw0E=",
+ version = "v0.1.4",
+ )
+ go_repository(
+ name = "com_github_tmc_grpc_websocket_proxy",
+ importpath = "github.com/tmc/grpc-websocket-proxy",
+ sum = "h1:ndzgwNDnKIqyCvHTXaCqh9KlOWKvBry6nuXMJmonVsE=",
+ version = "v0.0.0-20170815181823-89b8d40f7ca8",
+ )
+ go_repository(
+ name = "com_github_go_openapi_errors",
+ importpath = "github.com/go-openapi/errors",
+ sum = "h1:a2kIyV3w+OS3S97zxUndRVD46+FhGOUBDFY7nmu4CsY=",
+ version = "v0.19.2",
+ )
+ go_repository(
+ name = "com_github_go_openapi_analysis",
+ importpath = "github.com/go-openapi/analysis",
+ sum = "h1:8b2ZgKfKIUTVQpTb77MoRDIMEIwvDVw40o3aOXdfYzI=",
+ version = "v0.19.5",
+ )
+ go_repository(
+ name = "com_github_go_openapi_loads",
+ importpath = "github.com/go-openapi/loads",
+ sum = "h1:5I4CCSqoWzT+82bBkNIvmLc0UOsoKKQ4Fz+3VxOB7SY=",
+ version = "v0.19.4",
+ )
+ go_repository(
+ name = "com_github_dustin_go_humanize",
+ importpath = "github.com/dustin/go-humanize",
+ sum = "h1:VSnTsYCnlFHaM2/igO1h6X3HA71jcobQuxemgkq4zYo=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_mitchellh_mapstructure",
+ importpath = "github.com/mitchellh/mapstructure",
+ sum = "h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE=",
+ version = "v1.1.2",
+ )
+ go_repository(
+ name = "com_github_go_openapi_runtime",
+ importpath = "github.com/go-openapi/runtime",
+ sum = "h1:csnOgcgAiuGoM/Po7PEpKDoNulCcF3FGbSnbHfxgjMI=",
+ version = "v0.19.4",
+ )
+ go_repository(
+ name = "com_github_asaskevich_govalidator",
+ importpath = "github.com/asaskevich/govalidator",
+ sum = "h1:idn718Q4B6AGu/h5Sxe66HYVdqdGu2l9Iebqhi/AEoA=",
+ version = "v0.0.0-20190424111038-f61b66f89f4a",
+ )
+ go_repository(
+ name = "org_mongodb_go_mongo_driver",
+ importpath = "go.mongodb.org/mongo-driver",
+ sum = "h1:jxcFYjlkl8xaERsgLo+RNquI0epW6zuy/ZRQs6jnrFA=",
+ version = "v1.1.2",
+ )
+ go_repository(
+ name = "com_github_jonboulle_clockwork",
+ importpath = "github.com/jonboulle/clockwork",
+ sum = "h1:VKV+ZcuP6l3yW9doeqz6ziZGgcynBVQO+obU0+0hcPo=",
+ version = "v0.1.0",
+ )
+ go_repository(
+ name = "com_github_grpc_ecosystem_go_grpc_middleware",
+ importpath = "github.com/grpc-ecosystem/go-grpc-middleware",
+ sum = "h1:THDBEeQ9xZ8JEaCLyLQqXMMdRqNr0QAUJTIkQAUtFjg=",
+ version = "v1.1.0",
+ )
+ go_repository(
+ name = "com_github_xiang90_probing",
+ importpath = "github.com/xiang90/probing",
+ sum = "h1:eY9dn8+vbi4tKz5Qo6v2eYzo7kUS51QINcR5jNpbZS8=",
+ version = "v0.0.0-20190116061207-43a291ad63a2",
+ )
+ go_repository(
+ name = "com_github_gorilla_websocket",
+ importpath = "github.com/gorilla/websocket",
+ sum = "h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q=",
+ version = "v1.4.0",
+ )
+ go_repository(
+ name = "com_github_google_btree",
+ importpath = "github.com/google/btree",
+ sum = "h1:0udJVsspx3VBr5FwtLhQQtuAsVc79tTq0ocGIPAU6qo=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_dgrijalva_jwt_go",
+ importpath = "github.com/dgrijalva/jwt-go",
+ sum = "h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=",
version = "v3.2.0+incompatible",
)
go_repository(
- name = "com_github_golang_sql_civil",
- importpath = "github.com/golang-sql/civil",
- sum = "h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY=",
- version = "v0.0.0-20190719163853-cb61b32ac6fe",
+ name = "com_github_go_stack_stack",
+ importpath = "github.com/go-stack/stack",
+ sum = "h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=",
+ version = "v1.8.0",
+ )
+ go_repository(
+ name = "com_github_makenowjust_heredoc",
+ importpath = "github.com/MakeNowJust/heredoc",
+ sum = "h1:sjQovDkwrZp8u+gxLtPgKGjk5hCxuy2hrRejBTA9xFU=",
+ version = "v0.0.0-20170808103936-bb23615498cd",
+ )
+ go_repository(
+ name = "com_github_daviddengcn_go_colortext",
+ importpath = "github.com/daviddengcn/go-colortext",
+ sum = "h1:uVsMphB1eRx7xB1njzL3fuMdWRN8HtVzoUOItHMwv5c=",
+ version = "v0.0.0-20160507010035-511bcaf42ccd",
+ )
+ go_repository(
+ name = "com_github_liggitt_tabwriter",
+ importpath = "github.com/liggitt/tabwriter",
+ sum = "h1:9TO3cAIGXtEhnIaL+V+BEER86oLrvS+kWobKpbJuye0=",
+ version = "v0.0.0-20181228230101-89fcab3d43de",
+ )
+ go_repository(
+ name = "io_k8s_sigs_structured_merge_diff_v3",
+ importpath = "sigs.k8s.io/structured-merge-diff/v3",
+ sum = "h1:dOmIZBMfhcHS09XZkMyUgkq5trg3/jRyJYFZUiaOp8E=",
+ version = "v3.0.0",
+ )
+ go_repository(
+ name = "org_golang_google_grpc",
+ importpath = "google.golang.org/grpc",
+ sum = "h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg=",
+ version = "v1.26.0",
+ )
+ go_repository(
+ name = "org_golang_x_net",
+ importpath = "golang.org/x/net",
+ sum = "h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k=",
+ version = "v0.0.0-20200324143707-d3edc9973b7e",
+ )
+ go_repository(
+ name = "org_golang_x_text",
+ importpath = "golang.org/x/text",
+ sum = "h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=",
+ version = "v0.3.0",
+ )
+ go_repository(
+ name = "com_github_golang_groupcache",
+ importpath = "github.com/golang/groupcache",
+ sum = "h1:LbsanbbD6LieFkXbj9YNNBupiGHJgFeLpO0j0Fza1h8=",
+ version = "v0.0.0-20160516000752-02826c3e7903",
+ )
+ go_repository(
+ name = "com_github_containerd_containerd",
+ build_file_proto_mode = "disable",
+ build_tags = ["no_zfs", "no_aufs", "no_devicemapper", "no_btrfs"],
+ importpath = "github.com/containerd/containerd",
+ sum = "h1:IeFaEbvx6mQe9K1cXG2K7zynPwge3YUrQlLTyiNiveU=",
+ version = "v1.3.1-0.20200218165203-8e685f78cf66",
+ )
+ go_repository(
+ name = "com_github_beorn7_perks",
+ importpath = "github.com/beorn7/perks",
+ sum = "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
+ version = "v1.0.1",
+ )
+ go_repository(
+ name = "com_github_burntsushi_toml",
+ importpath = "github.com/BurntSushi/toml",
+ sum = "h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=",
+ version = "v0.3.1",
+ )
+ go_repository(
+ name = "com_github_cespare_xxhash_v2",
+ importpath = "github.com/cespare/xxhash/v2",
+ sum = "h1:6MnRN8NT7+YBpUIWxHtefFZOKTAPgGjpQSxqLNn0+qY=",
+ version = "v2.1.1",
+ )
+ go_repository(
+ name = "com_github_containerd_btrfs",
+ importpath = "github.com/containerd/btrfs",
+ sum = "h1:u5X1yvVEsXLcuTWYsFSpTgQKRvo2VTB5gOHcERpF9ZI=",
+ version = "v0.0.0-20200117014249-153935315f4a",
+ )
+ go_repository(
+ name = "com_github_containerd_cgroups",
+ build_file_proto_mode = "disable",
+ importpath = "github.com/containerd/cgroups",
+ sum = "h1:sL8rdngVdYA2SLRwj6sSZ1cLDpBkFBd7IZVp0M2Lboc=",
+ version = "v0.0.0-20200113070643-7347743e5d1e",
+ )
+ go_repository(
+ name = "com_github_containerd_console",
+ importpath = "github.com/containerd/console",
+ sum = "h1:fU3UuQapBs+zLJu82NhR11Rif1ny2zfMMAyPJzSN5tQ=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_containerd_continuity",
+ importpath = "github.com/containerd/continuity",
+ sum = "h1:hBSbT5nWoYGwpmUa8TCsSVFVSdTyFoNlz85rNkH4OGk=",
+ version = "v0.0.0-20200107062522-0ec596719c75",
+ )
+ go_repository(
+ name = "com_github_containerd_fifo",
+ importpath = "github.com/containerd/fifo",
+ sum = "h1:KFbqHhDeaHM7IfFtXHfUHMDaUStpM2YwBR+iJCIOsKk=",
+ version = "v0.0.0-20190816180239-bda0ff6ed73c",
+ )
+ go_repository(
+ name = "com_github_containerd_go_runc",
+ importpath = "github.com/containerd/go-runc",
+ sum = "h1:9aJwmidmB33rxuib1NxR5NT4nvDMA9/S2sDR/D3tE5U=",
+ version = "v0.0.0-20191206163734-a5c2862aed5e",
+ )
+ go_repository(
+ name = "com_github_containerd_ttrpc",
+ importpath = "github.com/containerd/ttrpc",
+ sum = "h1:NY8Zk2i7TpkLxrkOASo+KTFq9iNCEmMH2/ZG9OuOw6k=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_containerd_typeurl",
+ importpath = "github.com/containerd/typeurl",
+ sum = "h1:7LMH7LfEmpWeCkGcIputvd4P0Rnd0LrIv1Jk2s5oobs=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_coreos_go_systemd_v22",
+ importpath = "github.com/coreos/go-systemd/v22",
+ sum = "h1:XJIw/+VlJ+87J+doOxznsAWIdmWuViOVhkQamW5YV28=",
+ version = "v22.0.0",
+ )
+ go_repository(
+ name = "com_github_cpuguy83_go_md2man",
+ importpath = "github.com/cpuguy83/go-md2man",
+ sum = "h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk=",
+ version = "v1.0.10",
+ )
+ go_repository(
+ name = "com_github_docker_go_events",
+ importpath = "github.com/docker/go-events",
+ sum = "h1:VXIse57M5C6ezDuCPyq6QmMvEJ2xclYKZ35SfkXdm3E=",
+ version = "v0.0.0-20170721190031-9461782956ad",
+ )
+ go_repository(
+ name = "com_github_docker_go_metrics",
+ importpath = "github.com/docker/go-metrics",
+ sum = "h1:AgB/0SvBxihN0X8OR4SjsblXkbMvalQ8cjmtKQ2rQV8=",
+ version = "v0.0.1",
+ )
+ go_repository(
+ name = "com_github_docker_go_units",
+ importpath = "github.com/docker/go-units",
+ sum = "h1:3uh0PgVws3nIA0Q+MwDC8yjEPf9zjRfZZWXZYDct3Tw=",
+ version = "v0.4.0",
+ )
+ go_repository(
+ name = "com_github_godbus_dbus_v5",
+ importpath = "github.com/godbus/dbus/v5",
+ sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=",
+ version = "v5.0.3",
+ )
+ go_repository(
+ name = "com_github_gogo_googleapis",
+ build_file_proto_mode = "disable",
+ importpath = "github.com/gogo/googleapis",
+ sum = "h1:Z0v3OJDotX9ZBpdz2V+AI7F4fITSZhVE5mg6GQppwMM=",
+ version = "v1.2.0",
+ )
+ go_repository(
+ name = "com_github_gogo_protobuf",
+ importpath = "github.com/gogo/protobuf",
+ sum = "h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE=",
+ version = "v1.2.1",
+ )
+ go_repository(
+ name = "com_github_google_go_cmp",
+ importpath = "github.com/google/go-cmp",
+ sum = "h1:xsAVV57WRhGj6kEIi8ReJzQlHHqcBYCElAvkovg3B/4=",
+ version = "v0.4.0",
+ )
+ go_repository(
+ name = "com_github_google_uuid",
+ importpath = "github.com/google/uuid",
+ sum = "h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=",
+ version = "v1.1.1",
)
go_repository(
name = "com_github_hashicorp_errwrap",
@@ -924,130 +831,198 @@
version = "v1.0.0",
)
go_repository(
- name = "com_github_joho_godotenv",
- importpath = "github.com/joho/godotenv",
- sum = "h1:Zjp+RcGpHhGlrMbJzXTrZZPrWj+1vfm90La1wgB6Bhc=",
+ name = "com_github_hashicorp_golang_lru",
+ importpath = "github.com/hashicorp/golang-lru",
+ sum = "h1:YPkqC67at8FYaadspW/6uE0COsBxS2656RLEr8Bppgk=",
+ version = "v0.5.3",
+ )
+ go_repository(
+ name = "com_github_imdario_mergo",
+ importpath = "github.com/imdario/mergo",
+ sum = "h1:Y+UAYTZ7gDEuOfhxKWy+dvb5dRQ6rJjFSdX2HZY1/gI=",
+ version = "v0.3.7",
+ )
+ go_repository(
+ name = "com_github_konsorten_go_windows_terminal_sequences",
+ importpath = "github.com/konsorten/go-windows-terminal-sequences",
+ sum = "h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk=",
+ version = "v1.0.1",
+ )
+ go_repository(
+ name = "com_github_matttproud_golang_protobuf_extensions",
+ importpath = "github.com/matttproud/golang_protobuf_extensions",
+ sum = "h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU=",
+ version = "v1.0.1",
+ )
+ go_repository(
+ name = "com_github_microsoft_go_winio",
+ importpath = "github.com/Microsoft/go-winio",
+ sum = "h1:+hMXMk01us9KgxGb7ftKQt2Xpf5hH/yky+TDA+qxleU=",
+ version = "v0.4.14",
+ )
+ go_repository(
+ name = "com_github_microsoft_hcsshim",
+ build_file_proto_mode = "disable",
+ importpath = "github.com/Microsoft/hcsshim",
+ sum = "h1:GDxLeqRF1hCkdTFNncrs8fZNcB6Fg79G0Q3m38EyySM=",
+ version = "v0.8.8-0.20200109000640-0b571ac85d7c",
+ )
+ go_repository(
+ name = "com_github_opencontainers_go_digest",
+ importpath = "github.com/opencontainers/go-digest",
+ sum = "h1:2C93eP55foV5f0eNmXbidhKzwUZbs/Gk4PRp1zfeffs=",
+ version = "v1.0.0-rc1.0.20180430190053-c9281466c8b2",
+ )
+ go_repository(
+ name = "com_github_opencontainers_image_spec",
+ importpath = "github.com/opencontainers/image-spec",
+ sum = "h1:JMemWkRwHx4Zj+fVxWoMCFm/8sYGGrUVojFA6h/TRcI=",
+ version = "v1.0.1",
+ )
+ go_repository(
+ name = "com_github_pkg_errors",
+ importpath = "github.com/pkg/errors",
+ sum = "h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=",
+ version = "v0.8.1",
+ )
+ go_repository(
+ name = "com_github_prometheus_client_golang",
+ importpath = "github.com/prometheus/client_golang",
+ sum = "h1:miYCvYqFXtl/J9FIy8eNpBfYthAEFg+Ys0XyUVEcDsc=",
version = "v1.3.0",
)
go_repository(
- name = "com_github_karrick_godirwalk",
- importpath = "github.com/karrick/godirwalk",
- sum = "h1:BqUm+LuJcXjGv1d2mj3gBiQyrQ57a0rYoAmhvJQ7RDU=",
- version = "v1.10.12",
+ name = "com_github_prometheus_client_model",
+ importpath = "github.com/prometheus/client_model",
+ sum = "h1:ElTg5tNp4DqfV7UQjDqv2+RJlNzsDtvNAWccbItceIE=",
+ version = "v0.1.0",
)
go_repository(
- name = "com_github_kevinburke_go_bindata",
- importpath = "github.com/kevinburke/go-bindata",
- sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=",
- version = "v3.16.0+incompatible",
+ name = "com_github_prometheus_common",
+ importpath = "github.com/prometheus/common",
+ sum = "h1:L+1lyG48J1zAQXA3RBX/nG/B3gjlHq0zTt2tlbJLyCY=",
+ version = "v0.7.0",
)
go_repository(
- name = "com_github_lib_pq",
- importpath = "github.com/lib/pq",
- sum = "h1:LXpIM/LZ5xGFhOpXAQUIMM1HdyqzVYM13zNdjCEEcA0=",
- version = "v1.2.0",
+ name = "com_github_prometheus_procfs",
+ importpath = "github.com/prometheus/procfs",
+ sum = "h1:+fpWZdT24pJBiqJdAwYBjPSk+5YmQzYNPYzQsdzLkt8=",
+ version = "v0.0.8",
)
go_repository(
- name = "com_github_lopezator_sqlboiler_crdb",
- importpath = "github.com/lopezator/sqlboiler-crdb",
- sum = "h1:20v0EGG1kKmwcnFFirot/D1f0jQENqUn1LCzQetOw2E=",
- version = "v0.0.0-20190904145422-465f6643a423",
+ name = "com_github_russross_blackfriday",
+ importpath = "github.com/russross/blackfriday",
+ sum = "h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo=",
+ version = "v1.5.2",
)
go_repository(
- name = "com_github_mitchellh_cli",
- importpath = "github.com/mitchellh/cli",
- sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=",
- version = "v1.0.0",
+ name = "com_github_sirupsen_logrus",
+ importpath = "github.com/sirupsen/logrus",
+ sum = "h1:GL2rEmy6nsikmW0r8opw9JIRScdMF5hA8cOYLH7In1k=",
+ version = "v1.4.1",
)
go_repository(
- name = "com_github_posener_complete",
- importpath = "github.com/posener/complete",
- sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=",
+ name = "com_github_syndtr_gocapability",
+ importpath = "github.com/syndtr/gocapability",
+ sum = "h1:b6uOv7YOFK0TYG7HtkIgExQo+2RdLuwRft63jn2HWj8=",
+ version = "v0.0.0-20180916011248-d98352740cb2",
+ )
+ go_repository(
+ name = "com_github_urfave_cli",
+ importpath = "github.com/urfave/cli",
+ sum = "h1:8nz/RUUotroXnOpYzT/Fy3sBp+2XEbXaY641/s3nbFI=",
+ version = "v1.22.0",
+ )
+ go_repository(
+ name = "io_etcd_go_bbolt",
+ importpath = "go.etcd.io/bbolt",
+ sum = "h1:MUGmc65QhB3pIlaQ5bB4LwqSj6GIonVJXpZiaKNyaKk=",
+ version = "v1.3.3",
+ )
+ go_repository(
+ name = "io_opencensus_go",
+ importpath = "go.opencensus.io",
+ sum = "h1:C9hSCOW830chIVkdja34wa6Ky+IzWllkUinR+BtRZd4=",
+ version = "v0.22.0",
+ )
+ go_repository(
+ name = "org_golang_x_sync",
+ importpath = "golang.org/x/sync",
+ sum = "h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ=",
+ version = "v0.0.0-20181108010431-42b317875d0f",
+ )
+ go_repository(
+ name = "org_golang_google_genproto",
+ importpath = "google.golang.org/genproto",
+ sum = "h1:wVJP1pATLVPNxCz4R2mTO6HUJgfGE0PmIu2E10RuhCw=",
+ version = "v0.0.0-20170523043604-d80a6e20e776",
+ )
+ go_repository(
+ name = "tools_gotest",
+ importpath = "gotest.tools",
+ sum = "h1:YPidOweaQrSUDfne29Fnuwwo8uoQZuxnrAzZ+Q0pTeE=",
+ version = "v1.4.1-0.20181223230014-1083505acf35",
+ )
+ go_repository(
+ name = "com_github_cilium_ebpf",
+ importpath = "github.com/cilium/ebpf",
+ sum = "h1:kNrHgLQr3ftwQr9JKL3lmyNVlc/7Mjd8lwcbccE5BsI=",
+ version = "v0.0.0-20191203103619-60c3aa43f488",
+ )
+ go_repository(
+ name = "io_k8s_sigs_kustomize",
+ importpath = "sigs.k8s.io/kustomize",
+ sum = "h1:JUufWFNlI44MdtnjUqVnvh29rR37PQFzPbLXqhyOyX0=",
+ version = "v2.0.3+incompatible",
+ )
+ go_repository(
+ name = "ml_vbom_util",
+ importpath = "vbom.ml/util",
+ sum = "h1:MksmcCZQWAQJCTA5T0jgI/0sJ51AVm4Z41MrmfczEoc=",
+ version = "v0.0.0-20160121211510-db5cfe13f5cc",
+ )
+ go_repository(
+ name = "com_github_exponent_io_jsonpath",
+ importpath = "github.com/exponent-io/jsonpath",
+ sum = "h1:105gxyaGwCFad8crR9dcMQWvV9Hvulu6hwUh4tWPJnM=",
+ version = "v0.0.0-20151013193312-d6023ce2651d",
+ )
+ go_repository(
+ name = "com_github_containerd_cri",
+ build_file_proto_mode = "disable",
+ importpath = "github.com/containerd/cri",
+ sum = "h1:tkxzigQGIymwkagfa+zsr1GzlYWJCVh6dUVhEc3fQeo=",
+ version = "v1.11.1-0.20200130003317-c0294ebfe0b4",
+ )
+ go_repository(
+ name = "com_github_containerd_go_cni",
+ importpath = "github.com/containerd/go-cni",
+ sum = "h1:76H5xRcgFYQvHpdlKBiw3CJOeaatmhn6ZETIsNWZJVs=",
+ version = "v0.0.0-20190822145629-0d360c50b10b",
+ )
+ go_repository(
+ name = "com_github_containernetworking_cni",
+ importpath = "github.com/containernetworking/cni",
+ sum = "h1:fE3r16wpSEyaqY4Z4oFrLMmIGfBYIKpPrHK31EJ9FzE=",
+ version = "v0.7.1",
+ )
+ go_repository(
+ name = "com_github_davecgh_go_spew",
+ importpath = "github.com/davecgh/go-spew",
+ sum = "h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=",
version = "v1.1.1",
)
go_repository(
- name = "com_github_rogpeppe_go_internal",
- importpath = "github.com/rogpeppe/go-internal",
- sum = "h1:RR9dF3JtopPvtkroDZuVD7qquD0bnHlKSqaQhgwt8yk=",
- version = "v1.3.0",
+ name = "com_github_docker_distribution",
+ importpath = "github.com/docker/distribution",
+ sum = "h1:dvc1KSkIYTVjZgHf/CTC2diTYC8PzhaA5sFISRfNVrE=",
+ version = "v2.7.1-0.20190205005809-0d3efadf0154+incompatible",
)
go_repository(
- name = "com_github_rubenv_sql_migrate",
- importpath = "github.com/rubenv/sql-migrate",
- sum = "h1:lwDYefgiwhjuAuVnMVUYknoF+Yg9CBUykYGvYoPCNnQ=",
- version = "v0.0.0-20191025130928-9355dd04f4b3",
- )
- go_repository(
- name = "com_github_shopspring_decimal",
- importpath = "github.com/shopspring/decimal",
- sum = "h1:pntxY8Ary0t43dCZ5dqY4YTJCObLY1kIXl0uzMv+7DE=",
- version = "v0.0.0-20180709203117-cd690d0c9e24",
- )
- go_repository(
- name = "com_github_volatiletech_inflect",
- importpath = "github.com/volatiletech/inflect",
- sum = "h1:gI4/tqP6lCY5k6Sg+4k9qSoBXmPwG+xXgMpK7jivD4M=",
- version = "v0.0.0-20170731032912-e7201282ae8d",
- )
- go_repository(
- name = "com_github_volatiletech_null",
- importpath = "github.com/volatiletech/null",
- sum = "h1:7wP8m5d/gZ6kW/9GnrLtMCRre2dlEnaQ9Km5OXlK4zg=",
- version = "v8.0.0+incompatible",
- )
- go_repository(
- name = "com_github_volatiletech_sqlboiler",
- importpath = "github.com/volatiletech/sqlboiler",
- sum = "h1:EI9MwhgyXiqKbvZaomzL8scDs/k+21QAyo9z7GXBZQU=",
- version = "v3.6.1+incompatible",
- )
- go_repository(
- name = "com_github_ziutek_mymysql",
- importpath = "github.com/ziutek/mymysql",
- sum = "h1:GB0qdRGsTwQSBVYuVShFBKaXSnSnYYC2d9knnE1LHFs=",
- version = "v1.5.4",
- )
- go_repository(
- name = "in_gopkg_errgo_v2",
- importpath = "gopkg.in/errgo.v2",
- sum = "h1:0vLT13EuvQ0hNvakwLuFZ/jYrLp5F3kcWHXdRggjCE8=",
- version = "v2.1.0",
- )
- go_repository(
- name = "in_gopkg_gorp_v1",
- importpath = "gopkg.in/gorp.v1",
- sum = "h1:j3DWlAyGVv8whO7AcIWznQ2Yj7yJkn34B8s63GViAAw=",
- version = "v1.7.2",
- )
- go_repository(
- name = "in_gopkg_inf_v0",
- importpath = "gopkg.in/inf.v0",
- sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
- version = "v0.9.1",
- )
- go_repository(
- name = "org_golang_x_xerrors",
- importpath = "golang.org/x/xerrors",
- sum = "h1:9zdDQZ7Thm29KFXgAX/+yaf3eVbP7djjWp/dXAppNCc=",
- version = "v0.0.0-20190717185122-a985d3407aa7",
- )
- go_repository(
- name = "com_github_mattn_go_sqlite3",
- importpath = "github.com/mattn/go-sqlite3",
- sum = "h1:u/x3mp++qUxvYfulZ4HKOvVO0JWhk7HtE8lWhbGz/Do=",
- version = "v1.12.0",
- )
- go_repository(
- name = "com_github_cockroachdb_datadriven",
- importpath = "github.com/cockroachdb/datadriven",
- sum = "h1:OaNxuTZr7kxeODyLWsRMC+OD03aFUH+mW6r2d+MWa5Y=",
- version = "v0.0.0-20190809214429-80d97fb3cbaa",
- )
- go_repository(
- name = "com_github_creack_pty",
- importpath = "github.com/creack/pty",
- sum = "h1:6pwm8kMQKCmgUg0ZHTm5+/YvRK0s3THD/28+T6/kk4A=",
- version = "v1.1.7",
+ name = "com_github_docker_docker",
+ importpath = "github.com/docker/docker",
+ sum = "h1:+kIkr4upwOTq7D78hByaTvwFw5F8WRkoGwDgBNJt4SA=",
+ version = "v17.12.0-ce-rc1.0.20191121165722-d1d5f6476656+incompatible",
)
go_repository(
name = "com_github_docker_spdystream",
@@ -1056,154 +1031,89 @@
version = "v0.0.0-20160310174837-449fdfce4d96",
)
go_repository(
- name = "com_github_elazarl_goproxy",
- importpath = "github.com/elazarl/goproxy",
- sum = "h1:p1yVGRW3nmb85p1Sh1ZJSDm4A4iKLS5QNbvUHMgGu/M=",
- version = "v0.0.0-20170405201442-c4fc26588b6e",
- )
- go_repository(
name = "com_github_emicklei_go_restful",
importpath = "github.com/emicklei/go-restful",
- sum = "h1:H2pdYOb3KQ1/YsqVWoWNLQO+fusocsw354rqGTZtAgw=",
- version = "v0.0.0-20170410110728-ff4f55a20633",
+ sum = "h1:spTtZBk5DYEvbxMVutUuTyh1Ao2r4iyvLdACqsl/Ljk=",
+ version = "v2.9.5+incompatible",
)
go_repository(
- name = "com_github_evanphx_json_patch",
- importpath = "github.com/evanphx/json-patch",
- sum = "h1:fUDGZCv/7iAN7u0puUVhvKCcsR6vRfwrJatElLBEf0I=",
- version = "v4.2.0+incompatible",
- )
- go_repository(
- name = "com_github_go_logr_logr",
- importpath = "github.com/go-logr/logr",
- sum = "h1:M1Tv3VzNlEHg6uyACnRdtrploV2P7wZqH8BoQMtz0cg=",
- version = "v0.1.0",
- )
- go_repository(
- name = "com_github_go_openapi_jsonpointer",
- importpath = "github.com/go-openapi/jsonpointer",
- sum = "h1:wSt/4CYxs70xbATrGXhokKF1i0tZjENLOo1ioIO13zk=",
- version = "v0.0.0-20160704185906-46af16f9f7b1",
- )
- go_repository(
- name = "com_github_go_openapi_jsonreference",
- importpath = "github.com/go-openapi/jsonreference",
- sum = "h1:tF+augKRWlWx0J0B7ZyyKSiTyV6E1zZe+7b3qQlcEf8=",
- version = "v0.0.0-20160704190145-13c6e3589ad9",
- )
- go_repository(
- name = "com_github_go_openapi_spec",
- importpath = "github.com/go-openapi/spec",
- sum = "h1:C1JKChikHGpXwT5UQDFaryIpDtyyGL/CR6C2kB7F1oc=",
- version = "v0.0.0-20160808142527-6aced65f8501",
- )
- go_repository(
- name = "com_github_go_openapi_swag",
- importpath = "github.com/go-openapi/swag",
- sum = "h1:zP3nY8Tk2E6RTkqGYrarZXuzh+ffyLDljLxCy1iJw80=",
- version = "v0.0.0-20160704191624-1d0bd113de87",
- )
- go_repository(
- name = "com_github_googleapis_gnostic",
- importpath = "github.com/googleapis/gnostic",
- sum = "h1:7XGaL1e6bYS1yIonGp9761ExpPPV1ui0SAC59Yube9k=",
- version = "v0.0.0-20170729233727-0c5108395e2d",
- )
- go_repository(
- name = "com_github_hashicorp_golang_lru",
- importpath = "github.com/hashicorp/golang-lru",
- sum = "h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU=",
- version = "v0.5.1",
- )
- go_repository(
- name = "com_github_hpcloud_tail",
- importpath = "github.com/hpcloud/tail",
- sum = "h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI=",
+ name = "com_github_google_gofuzz",
+ importpath = "github.com/google/gofuzz",
+ sum = "h1:A8PeW59pxE9IoFRqBp37U+mSNaQoZ46F1f0f863XSXw=",
version = "v1.0.0",
)
go_repository(
- name = "com_github_imdario_mergo",
- importpath = "github.com/imdario/mergo",
- sum = "h1:CGgOkSJeqMRmt0D9XLWExdT4m4F1vd3FV3VPt+0VxkQ=",
- version = "v0.3.8",
+ name = "com_github_json_iterator_go",
+ importpath = "github.com/json-iterator/go",
+ sum = "h1:QiWkFLKq0T7mpzwOTu6BzNDbfTE8OLrYhVKYMLF46Ok=",
+ version = "v1.1.8",
)
go_repository(
- name = "com_github_mailru_easyjson",
- importpath = "github.com/mailru/easyjson",
- sum = "h1:TpvdAwDAt1K4ANVOfcihouRdvP+MgAfDWwBuct4l6ZY=",
- version = "v0.0.0-20160728113105-d5b7844b561a",
+ name = "com_github_modern_go_concurrent",
+ importpath = "github.com/modern-go/concurrent",
+ sum = "h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=",
+ version = "v0.0.0-20180306012644-bacd9c7ef1dd",
)
go_repository(
- name = "com_github_munnerz_goautoneg",
- importpath = "github.com/munnerz/goautoneg",
- sum = "h1:7PxY7LVfSZm7PEeBTyK1rj1gABdCO2mbri6GKO1cMDs=",
- version = "v0.0.0-20120707110453-a547fc61f48d",
+ name = "com_github_modern_go_reflect2",
+ importpath = "github.com/modern-go/reflect2",
+ sum = "h1:Esafd1046DLDQ0W1YjYsBW+p8U2u7vzgW2SQVmlNazg=",
+ version = "v0.0.0-20180701023420-4b7aa43c6742",
)
go_repository(
- name = "com_github_mxk_go_flowrate",
- importpath = "github.com/mxk/go-flowrate",
- sum = "h1:y5//uYreIhSUg3J1GEMiLbxo1LJaP8RfCpH6pymGZus=",
- version = "v0.0.0-20140419014527-cca7078d478f",
+ name = "com_github_opencontainers_selinux",
+ build_tags = ["selinux"],
+ importpath = "github.com/opencontainers/selinux",
+ sum = "h1:B8hYj3NxHmjsC3T+tnlZ1UhInqUgnyF1zlGPmzNg2Qk=",
+ version = "v1.3.1-0.20190929122143-5215b1806f52",
)
go_repository(
- name = "com_github_nytimes_gziphandler",
- importpath = "github.com/NYTimes/gziphandler",
- sum = "h1:lsxEuwrXEAokXB9qhlbKWPpo3KMLZQ5WB5WLQRW1uq0=",
- version = "v0.0.0-20170623195520-56545f4a5d46",
+ name = "com_github_seccomp_libseccomp_golang",
+ importpath = "github.com/seccomp/libseccomp-golang",
+ sum = "h1:NJjM5DNFOs0s3kYE1WUOr6G8V97sdt46rlXTMfXGWBo=",
+ version = "v0.9.1",
)
go_repository(
- name = "com_github_onsi_ginkgo",
- importpath = "github.com/onsi/ginkgo",
- sum = "h1:q/mM8GF/n0shIN8SaAZ0V+jnLPzen6WIVZdiwrRlMlo=",
- version = "v1.10.1",
+ name = "com_github_stretchr_testify",
+ importpath = "github.com/stretchr/testify",
+ sum = "h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=",
+ version = "v1.4.0",
)
go_repository(
- name = "com_github_onsi_gomega",
- importpath = "github.com/onsi/gomega",
- sum = "h1:XPnZz8VVBHjVsy1vzJmRwIcSwiUO+JFfrv/xGiigmME=",
- version = "v1.7.0",
+ name = "com_github_tchap_go_patricia",
+ importpath = "github.com/tchap/go-patricia",
+ sum = "h1:JvoDL7JSoIP2HDE8AbDH3zC8QBPxmzYe32HHy5yQ+Ck=",
+ version = "v2.2.6+incompatible",
)
go_repository(
- name = "com_github_puerkitobio_purell",
- importpath = "github.com/PuerkitoBio/purell",
- sum = "h1:0GoNN3taZV6QI81IXgCbxMyEaJDXMSIjArYBCYzVVvs=",
- version = "v1.0.0",
+ name = "org_golang_x_crypto",
+ importpath = "golang.org/x/crypto",
+ sum = "h1:9FCpayM9Egr1baVnV1SX0H87m+XB0B8S0hAMi99X/3U=",
+ version = "v0.0.0-20200128174031-69ecbb4d6d5d",
)
go_repository(
- name = "com_github_puerkitobio_urlesc",
- importpath = "github.com/PuerkitoBio/urlesc",
- sum = "h1:JCHLVE3B+kJde7bIEo5N4J+ZbLhp0J1Fs+ulyRws4gE=",
- version = "v0.0.0-20160726150825-5bd2802263f2",
+ name = "org_golang_x_oauth2",
+ importpath = "golang.org/x/oauth2",
+ sum = "h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0=",
+ version = "v0.0.0-20190604053449-0f29369cfe45",
)
go_repository(
- name = "in_gopkg_fsnotify_v1",
- importpath = "gopkg.in/fsnotify.v1",
- sum = "h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4=",
- version = "v1.4.7",
+ name = "org_golang_x_time",
+ importpath = "golang.org/x/time",
+ sum = "h1:/5xXl8Y5W96D+TtHSlonuFqGHIWVuyCkGJLwGh9JJFs=",
+ version = "v0.0.0-20191024005414-555d28b269f0",
)
go_repository(
- name = "in_gopkg_tomb_v1",
- importpath = "gopkg.in/tomb.v1",
- sum = "h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=",
- version = "v1.0.0-20141024135613-dd632973f1e7",
+ name = "in_gopkg_inf_v0",
+ importpath = "gopkg.in/inf.v0",
+ sum = "h1:73M5CoZyi3ZLMOyDlQh031Cx6N9NDJ2Vvfl76EDAgDc=",
+ version = "v0.9.1",
)
go_repository(
- name = "io_k8s_apimachinery",
- importpath = "k8s.io/apimachinery",
- sum = "h1:zUjS3szTxoUjTDYNvdFkYt2uMEXLcthcbp+7uZvWhYM=",
- version = "v0.17.1",
- )
- go_repository(
- name = "io_k8s_client_go",
- importpath = "k8s.io/client-go",
- sum = "h1:LBbX2+lOwY9flffWlJM7f1Ct8V2SRNiMRDFeiwnJo9o=",
- version = "v11.0.0+incompatible",
- )
- go_repository(
- name = "io_k8s_gengo",
- importpath = "k8s.io/gengo",
- sum = "h1:4s3/R4+OYYYUKptXPhZKjQ04WJ6EhQQVFdjOFvCazDk=",
- version = "v0.0.0-20190128074634-0689ccc1d7d6",
+ name = "in_gopkg_yaml_v2",
+ importpath = "gopkg.in/yaml.v2",
+ sum = "h1:obN1ZagJSUGI0Ek/LBmuj4SNLPfIny3KsKFopxRdj10=",
+ version = "v2.2.8",
)
go_repository(
name = "io_k8s_klog",
@@ -1212,40 +1122,370 @@
version = "v1.0.0",
)
go_repository(
- name = "io_k8s_kube_openapi",
- importpath = "k8s.io/kube-openapi",
- sum = "h1:UcxjrRMyNx/i/y8G7kPvLyy7rfbeuf1PYyBf973pgyU=",
- version = "v0.0.0-20191107075043-30be4d16710a",
+ name = "io_k8s_sigs_yaml",
+ importpath = "sigs.k8s.io/yaml",
+ sum = "h1:4A07+ZFc2wgJwo8YNlQpr1rVlgUDlxXHhPJciaPY5gs=",
+ version = "v1.1.0",
)
go_repository(
- name = "io_k8s_sigs_structured_merge_diff",
- importpath = "sigs.k8s.io/structured-merge-diff",
- sum = "h1:4Z09Hglb792X0kfOBBJUPFEyvVfQWrYT/l8h5EKA6JQ=",
- version = "v0.0.0-20190525122527-15d366b2352e",
+ name = "com_github_fatih_camelcase",
+ importpath = "github.com/fatih/camelcase",
+ sum = "h1:hxNvNX/xYBp0ovncs8WyWZrOrpBNub/JfaMvbURyft8=",
+ version = "v1.0.0",
)
go_repository(
- name = "io_k8s_utils",
- importpath = "k8s.io/utils",
- sum = "h1:p0Ai3qVtkbCG/Af26dBmU0E1W58NID3hSSh7cMyylpM=",
- version = "v0.0.0-20191114200735-6ca3b61696b6",
+ name = "com_github_ghodss_yaml",
+ importpath = "github.com/ghodss/yaml",
+ sum = "h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=",
+ version = "v1.0.0",
)
go_repository(
- name = "io_k8s_api",
- importpath = "k8s.io/api",
- sum = "h1:i46MidoDOE9tvQ0TTEYggf3ka/pziP1+tHI/GFVeJao=",
- version = "v0.17.1",
+ name = "com_github_gregjones_httpcache",
+ importpath = "github.com/gregjones/httpcache",
+ sum = "h1:pdN6V1QBWetyv/0+wjACpqVH+eVULgEjkurDLq3goeM=",
+ version = "v0.0.0-20180305231024-9cad4c3443a7",
+ )
+ go_repository(
+ name = "com_github_mitchellh_go_wordwrap",
+ importpath = "github.com/mitchellh/go-wordwrap",
+ sum = "h1:6GlHJ/LTGMrIJbwgdqdl2eEH8o+Exx/0m8ir9Gns0u4=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_peterbourgon_diskv",
+ importpath = "github.com/peterbourgon/diskv",
+ sum = "h1:UBdAOUP5p4RWqPBg048CAvpKN+vxiaj6gdUUzhl4XmI=",
+ version = "v2.0.1+incompatible",
+ )
+ go_repository(
+ name = "com_github_azure_go_ansiterm",
+ importpath = "github.com/Azure/go-ansiterm",
+ sum = "h1:w+iIsaOQNcT7OZ575w+acHgRric5iCyQh+xv+KJ4HB8=",
+ version = "v0.0.0-20170929234023-d6e3b3328b78",
+ )
+ go_repository(
+ name = "com_github_chai2010_gettext_go",
+ importpath = "github.com/chai2010/gettext-go",
+ sum = "h1:7aWHqerlJ41y6FOsEUvknqgXnGmJyJSbjhAWq5pO4F8=",
+ version = "v0.0.0-20160711120539-c6fed771bfd5",
+ )
+ go_repository(
+ name = "com_github_alexflint_go_filemutex",
+ importpath = "github.com/alexflint/go-filemutex",
+ sum = "h1:AMzIhMUqU3jMrZiTuW0zkYeKlKDAFD+DG20IoO421/Y=",
+ version = "v0.0.0-20171022225611-72bdc8eae2ae",
+ )
+ go_repository(
+ name = "com_github_coreos_go_iptables",
+ importpath = "github.com/coreos/go-iptables",
+ sum = "h1:DpHb9vJrZQEFMcVLFKAAGMUVX0XoRC0ptCthinRYm38=",
+ version = "v0.4.5",
+ )
+ go_repository(
+ name = "com_github_safchain_ethtool",
+ importpath = "github.com/safchain/ethtool",
+ sum = "h1:2c1EFnZHIPCW8qKWgHMH/fX2PkSabFc5mrVzfUNdg5U=",
+ version = "v0.0.0-20190326074333-42ed695e3de8",
+ )
+ go_repository(
+ name = "com_github_j_keck_arping",
+ importpath = "github.com/j-keck/arping",
+ sum = "h1:742eGXur0715JMq73aD95/FU0XpVKXqNuTnEfXsLOYQ=",
+ version = "v0.0.0-20160618110441-2cf9dc699c56",
+ )
+ go_repository(
+ name = "com_github_grpc_grpc",
+ importpath = "github.com/grpc/grpc",
+ sum = "h1:0/fjvIF5JHJdr34/JPEk1DJFFonjW37pDLvuAy9YieQ=",
+ version = "v1.26.0",
+ )
+ go_repository(
+ name = "com_github_google_subcommands",
+ importpath = "github.com/google/subcommands",
+ sum = "h1:8nlgEAjIalk6uj/CGKCdOO8CQqTeysvcW4RFZ6HbkGM=",
+ version = "v1.0.2-0.20190508160503-636abe8753b8",
+ )
+ go_repository(
+ name = "com_github_cenkalti_backoff",
+ importpath = "github.com/cenkalti/backoff",
+ sum = "h1:8eZxmY1yvxGHzdzTEhI09npjMVGzNAdrqzruTX6jcK4=",
+ version = "v1.1.1-0.20190506075156-2146c9339422",
+ )
+ go_repository(
+ name = "com_github_kr_pretty",
+ importpath = "github.com/kr/pretty",
+ sum = "h1:s5hAObm+yFO5uHYt5dYjxi2rXrsnmRpJx4OYvIWUaQs=",
+ version = "v0.2.0",
+ )
+ go_repository(
+ name = "com_github_kr_pty",
+ importpath = "github.com/kr/pty",
+ sum = "h1:VkoXIwSboBpnk99O/KFauAEILuNHv5DVFKZMBN/gUgw=",
+ version = "v1.1.1",
+ )
+ go_repository(
+ name = "com_github_gofrs_flock",
+ importpath = "github.com/gofrs/flock",
+ sum = "h1:JFTFz3HZTGmgMz4E1TabNBNJljROSYgja1b4l50FNVs=",
+ version = "v0.6.1-0.20180915234121-886344bea079",
+ )
+ go_repository(
+ name = "com_github_opencontainers_runc",
+ importpath = "github.com/opencontainers/runc",
+ sum = "h1:AbmCEuSZXVflng0/cboQkpdEOeBsPMjz6tmq4Pv8MZw=",
+ version = "v1.0.0-rc10",
+ )
+ go_repository(
+ name = "com_github_volatiletech_sqlboiler",
+ importpath = "github.com/volatiletech/sqlboiler",
+ sum = "h1:EI9MwhgyXiqKbvZaomzL8scDs/k+21QAyo9z7GXBZQU=",
+ version = "v3.6.1+incompatible",
+ )
+ go_repository(
+ name = "com_github_friendsofgo_errors",
+ importpath = "github.com/friendsofgo/errors",
+ sum = "h1:X6NYxef4efCBdwI7BgS820zFaN7Cphrmb+Pljdzjtgk=",
+ version = "v0.9.2",
+ )
+ go_repository(
+ name = "com_github_go_sql_driver_mysql",
+ importpath = "github.com/go-sql-driver/mysql",
+ sum = "h1:ozyZYNQW3x3HtqT1jira07DN2PArx2v7/mN66gGcHOs=",
+ version = "v1.5.0",
+ )
+ go_repository(
+ name = "com_github_spf13_cast",
+ importpath = "github.com/spf13/cast",
+ sum = "h1:nFm6S0SMdyzrzcmThSipiEubIDy8WEXKNZ0UOgiRpng=",
+ version = "v1.3.1",
+ )
+ go_repository(
+ name = "com_github_volatiletech_null",
+ importpath = "github.com/volatiletech/null",
+ sum = "h1:7wP8m5d/gZ6kW/9GnrLtMCRre2dlEnaQ9Km5OXlK4zg=",
+ version = "v8.0.0+incompatible",
+ )
+ go_repository(
+ name = "com_github_volatiletech_randomize",
+ importpath = "github.com/volatiletech/randomize",
+ sum = "h1:eE5yajattWqTB2/eN8df4dw+8jwAzBtbdo5sbWC4nMk=",
+ version = "v0.0.1",
+ )
+ go_repository(
+ name = "com_github_volatiletech_strmangle",
+ importpath = "github.com/volatiletech/strmangle",
+ sum = "h1:UKQoHmY6be/R3tSvD2nQYrH41k43OJkidwEiC74KIzk=",
+ version = "v0.0.1",
+ )
+ go_repository(
+ name = "com_github_lib_pq",
+ importpath = "github.com/lib/pq",
+ sum = "h1:LXpIM/LZ5xGFhOpXAQUIMM1HdyqzVYM13zNdjCEEcA0=",
+ version = "v1.2.0",
+ )
+ go_repository(
+ name = "com_github_denisenkom_go_mssqldb",
+ importpath = "github.com/denisenkom/go-mssqldb",
+ sum = "h1:LzwWXEScfcTu7vUZNlDDWDARoSGEtvlDKK2BYHowNeE=",
+ version = "v0.0.0-20200206145737-bbfc9a55622e",
+ )
+ go_repository(
+ name = "com_github_ericlagergren_decimal",
+ importpath = "github.com/ericlagergren/decimal",
+ sum = "h1:HQGCJNlqt1dUs/BhtEKmqWd6LWS+DWYVxi9+Jo4r0jE=",
+ version = "v0.0.0-20181231230500-73749d4874d5",
+ )
+ go_repository(
+ name = "com_github_rubenv_sql_migrate",
+ importpath = "github.com/rubenv/sql-migrate",
+ sum = "h1:lwDYefgiwhjuAuVnMVUYknoF+Yg9CBUykYGvYoPCNnQ=",
+ version = "v0.0.0-20191025130928-9355dd04f4b3",
+ )
+ go_repository(
+ name = "com_github_glerchundi_sqlboiler_crdb",
+ importpath = "github.com/glerchundi/sqlboiler-crdb",
+ sum = "h1:qC5Gu83hkXlQVECFs1u/9EdwYjo58RYaxWnJZGa0YN0=",
+ version = "v0.0.0-20191112134934-62014c8c8df1",
+ )
+ go_repository(
+ name = "com_github_mitchellh_cli",
+ importpath = "github.com/mitchellh/cli",
+ sum = "h1:iGBIsUe3+HZ/AD/Vd7DErOt5sU9fa8Uj7A2s1aggv1Y=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_olekukonko_tablewriter",
+ importpath = "github.com/olekukonko/tablewriter",
+ sum = "h1:58+kh9C6jJVXYjt8IE48G2eWl6BjwU5Gj0gqY84fy78=",
+ version = "v0.0.0-20170122224234-a0225b3f23b5",
+ )
+ go_repository(
+ name = "com_github_mattn_go_sqlite3",
+ importpath = "github.com/mattn/go-sqlite3",
+ sum = "h1:u/x3mp++qUxvYfulZ4HKOvVO0JWhk7HtE8lWhbGz/Do=",
+ version = "v1.12.0",
+ )
+ go_repository(
+ name = "in_gopkg_gorp_v1",
+ importpath = "gopkg.in/gorp.v1",
+ sum = "h1:j3DWlAyGVv8whO7AcIWznQ2Yj7yJkn34B8s63GViAAw=",
+ version = "v1.7.2",
+ )
+ go_repository(
+ name = "com_github_volatiletech_inflect",
+ importpath = "github.com/volatiletech/inflect",
+ sum = "h1:gI4/tqP6lCY5k6Sg+4k9qSoBXmPwG+xXgMpK7jivD4M=",
+ version = "v0.0.0-20170731032912-e7201282ae8d",
+ )
+ go_repository(
+ name = "com_github_mattn_go_runewidth",
+ importpath = "github.com/mattn/go-runewidth",
+ sum = "h1:UnlwIPBGaTZfPQ6T1IGzPI0EkYAQmT9fAEJ/poFC63o=",
+ version = "v0.0.2",
+ )
+ go_repository(
+ name = "com_github_golang_sql_civil",
+ importpath = "github.com/golang-sql/civil",
+ sum = "h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY=",
+ version = "v0.0.0-20190719163853-cb61b32ac6fe",
+ )
+ go_repository(
+ name = "com_github_posener_complete",
+ importpath = "github.com/posener/complete",
+ sum = "h1:ccV59UEOTzVDnDUEFdT95ZzHVZ+5+158q8+SJb2QV5w=",
+ version = "v1.1.1",
+ )
+ go_repository(
+ name = "com_github_mattn_go_isatty",
+ importpath = "github.com/mattn/go-isatty",
+ sum = "h1:bnP0vzxcAdeI1zdubAl5PjU6zsERjGZb7raWodagDYs=",
+ version = "v0.0.4",
+ )
+ go_repository(
+ name = "com_github_armon_go_radix",
+ importpath = "github.com/armon/go-radix",
+ sum = "h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=",
+ version = "v0.0.0-20180808171621-7fddfc383310",
+ )
+ go_repository(
+ name = "com_github_bgentry_speakeasy",
+ importpath = "github.com/bgentry/speakeasy",
+ sum = "h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=",
+ version = "v0.1.0",
+ )
+ go_repository(
+ name = "com_github_fatih_color",
+ importpath = "github.com/fatih/color",
+ sum = "h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=",
+ version = "v1.7.0",
+ )
+ go_repository(
+ name = "com_github_spf13_viper",
+ importpath = "github.com/spf13/viper",
+ sum = "h1:VUFqw5KcqRf7i70GOzW7N+Q7+gxVBkSSqiXB12+JQ4M=",
+ version = "v1.3.2",
+ )
+ go_repository(
+ name = "com_github_hashicorp_hcl",
+ importpath = "github.com/hashicorp/hcl",
+ sum = "h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_spf13_jwalterweatherman",
+ importpath = "github.com/spf13/jwalterweatherman",
+ sum = "h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "com_github_magiconair_properties",
+ importpath = "github.com/magiconair/properties",
+ sum = "h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY=",
+ version = "v1.8.0",
+ )
+ go_repository(
+ name = "com_github_mattn_go_colorable",
+ importpath = "github.com/mattn/go-colorable",
+ sum = "h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=",
+ version = "v0.0.9",
+ )
+ go_repository(
+ name = "com_github_google_go_tpm",
+ importpath = "github.com/google/go-tpm",
+ sum = "h1:GNNkIb6NSjYfw+KvgUFW590mcgsSFihocSrbXct1sEw=",
+ version = "v0.1.2-0.20190725015402-ae6dd98980d4",
+ )
+ go_repository(
+ name = "com_github_google_go_tpm_tools",
+ importpath = "github.com/google/go-tpm-tools",
+ sum = "h1:1Y5W2uh6E7I6hhI6c0WVSbV+Ae15uhemqi3RvSgtZpk=",
+ version = "v0.0.0-20190731025042-f8c04ff88181",
+ )
+ go_repository(
+ name = "com_github_insomniacslk_dhcp",
+ importpath = "github.com/insomniacslk/dhcp",
+ sum = "h1:P1pxzF2xvdnSY12ODSSwjxA4tyEjDEJNn829OXKnqks=",
+ version = "v0.0.0-20200402185128-5dd7202f1971",
)
go_repository(
name = "com_github_cenkalti_backoff_v4",
importpath = "github.com/cenkalti/backoff/v4",
- sum = "h1:6VeaLF9aI+MAUQ95106HwWzYZgJJpZ4stumjj6RFYAU=",
- version = "v4.0.0",
+ sum = "h1:JIufpQLbh4DkbQoii76ItQIUFzevQSqOLZca4eamEDs=",
+ version = "v4.0.2",
)
go_repository(
- name = "org_golang_x_exp",
- importpath = "golang.org/x/exp",
- sum = "h1:c2HOrn5iMezYjSlGPncknSEr/8x5LELb/ilJbXi9DEA=",
- version = "v0.0.0-20190121172915-509febef88a4",
+ name = "com_github_rekby_gpt",
+ importpath = "github.com/rekby/gpt",
+ sum = "h1:goZGTwEEn8mWLcY012VouWZWkJ8GrXm9tS3VORMxT90=",
+ version = "v0.0.0-20200219180433-a930afbc6edc",
+ )
+ go_repository(
+ name = "com_github_yalue_native_endian",
+ importpath = "github.com/yalue/native_endian",
+ sum = "h1:nsQCScpQ8RRf+wIooqfyyEUINV2cAPuo2uVtHSBbA4M=",
+ version = "v0.0.0-20180607135909-51013b03be4f",
+ )
+ go_repository(
+ name = "com_github_mdlayher_ethernet",
+ importpath = "github.com/mdlayher/ethernet",
+ sum = "h1:lez6TS6aAau+8wXUP3G9I3TGlmPFEq2CTxBaRqY6AGE=",
+ version = "v0.0.0-20190606142754-0394541c37b7",
+ )
+ go_repository(
+ name = "com_github_mdlayher_raw",
+ importpath = "github.com/mdlayher/raw",
+ sum = "h1:aFkJ6lx4FPip+S+Uw4aTegFMct9shDvP+79PsSxpm3w=",
+ version = "v0.0.0-20191009151244-50f2db8cc065",
+ )
+ go_repository(
+ name = "com_github_u_root_u_root",
+ importpath = "github.com/u-root/u-root",
+ sum = "h1:YqPGmRoRyYmeg17KIWFRSyVq6LX5T6GSzawyA6wG6EE=",
+ version = "v6.0.0+incompatible",
+ )
+ go_repository(
+ name = "com_github_diskfs_go_diskfs",
+ importpath = "github.com/diskfs/go-diskfs",
+ sum = "h1:sLQnXItICiYgiHcYNNujKT9kOKnk7diOvZGEKvxrwpc=",
+ version = "v1.0.0",
+ )
+ go_repository(
+ name = "in_gopkg_djherbis_times_v1",
+ importpath = "gopkg.in/djherbis/times.v1",
+ sum = "h1:UCvDKl1L/fmBygl2Y7hubXCnY7t4Yj46ZrBFNUipFbM=",
+ version = "v1.2.0",
+ )
+ go_repository(
+ name = "com_github_kevinburke_go_bindata",
+ importpath = "github.com/kevinburke/go-bindata",
+ sum = "h1:TFzFZop2KxGhqNwsyjgmIh5JOrpG940MZlm5gNbxr8g=",
+ version = "v3.16.0+incompatible",
+ )
+ go_repository(
+ name = "com_github_gofrs_uuid",
+ importpath = "github.com/gofrs/uuid",
+ sum = "h1:y12jRkkFxsd7GpqdSZ+/KCs/fJbqpEXSGd4+jfEaewE=",
+ version = "v3.2.0+incompatible",
)
go_repository(
name = "com_github_lyft_protoc_gen_star",
@@ -1254,44 +1494,20 @@
version = "v0.4.14",
)
go_repository(
- name = "com_github_census_instrumentation_opencensus_proto",
- importpath = "github.com/census-instrumentation/opencensus-proto",
- sum = "h1:glEXhBS5PSLLv4IXzLA5yPRVX4bilULVyxxbrfOtDAk=",
- version = "v0.2.1",
+ name = "com_github_moby_term",
+ importpath = "github.com/moby/term",
+ sum = "h1:aY7OQNf2XqY/JQ6qREWamhI/81os/agb2BAGpcx5yWI=",
+ version = "v0.0.0-20200312100748-672ec06f55cd",
)
go_repository(
- name = "com_github_cncf_udpa_go",
- importpath = "github.com/cncf/udpa/go",
- sum = "h1:WBZRG4aNOuI15bLRrCgN8fCq8E5Xuty6jGbmSNEvSsU=",
- version = "v0.0.0-20191209042840-269d4d468f6f",
+ name = "io_k8s_sigs_apiserver_network_proxy_konnectivity_client",
+ importpath = "sigs.k8s.io/apiserver-network-proxy/konnectivity-client",
+ sum = "h1:uuHDyjllyzRyCIvvn0OBjiRB0SgBZGqHNYAmjR7fO50=",
+ version = "v0.0.7",
)
go_repository(
- name = "com_github_coreos_go_systemd_v22",
- importpath = "github.com/coreos/go-systemd/v22",
- sum = "h1:XJIw/+VlJ+87J+doOxznsAWIdmWuViOVhkQamW5YV28=",
- version = "v22.0.0",
- )
- go_repository(
- name = "com_github_coreos_license_bill_of_materials",
- importpath = "github.com/coreos/license-bill-of-materials",
- sum = "h1:vHRufSa2k8tfkcDdia1vJFa+oiBvvPxW94mg76PPAoA=",
- version = "v0.0.0-20190913234955-13baff47494e",
- )
- go_repository(
- name = "com_github_envoyproxy_go_control_plane",
- importpath = "github.com/envoyproxy/go-control-plane",
- sum = "h1:rEvIZUSZ3fx39WIi3JkQqQBitGwpELBIYWeBVh6wn+E=",
- version = "v0.9.4",
- )
- go_repository(
- name = "com_github_envoyproxy_protoc_gen_validate",
- importpath = "github.com/envoyproxy/protoc-gen-validate",
- sum = "h1:EQciDnbrYxy13PgWoY8AqoxGiPrpgBZ1R8UNe3ddc+A=",
- version = "v0.1.0",
- )
- go_repository(
- name = "com_github_godbus_dbus_v5",
- importpath = "github.com/godbus/dbus/v5",
- sum = "h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=",
- version = "v5.0.3",
+ name = "io_k8s_sample_apiserver",
+ importpath = "k8s.io/sample-apiserver",
+ sum = "h1:Nw+rJYx+0cb8Kxtxhe87iT73S6CF67396cIf7tU3JZ8=",
+ version = "v0.19.0-alpha.2",
)