blob: 11ce1b87d395db166a864189209d250f774146db [file] [log] [blame]
# Python rules
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "io_bazel_rules_python",
remote = "https://github.com/bazelbuild/rules_python.git",
commit = "ebd7adcbcafcc8abe3fd8e5b0e42e10ced1bfe27",
)
# Python dependencies
load("@io_bazel_rules_python//python:pip.bzl", "pip_import")
pip_import(
name = "py_deps",
requirements = "//:requirements.txt",
)
load("@py_deps//:requirements.bzl", "pip_install")
pip_install()
# Go rules
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
urls = ["https://github.com/bazelbuild/rules_go/releases/download/0.18.1/rules_go-0.18.1.tar.gz"],
sha256 = "77dfd303492f2634de7a660445ee2d3de2960cbd52f97d8c0dffa9362d3ddef9",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")
go_rules_dependencies()
go_register_toolchains()
# Go Gazelle rules
http_archive(
name = "bazel_gazelle",
urls = ["https://github.com/bazelbuild/bazel-gazelle/releases/download/0.16.0/bazel-gazelle-0.16.0.tar.gz"],
sha256 = "7949fc6cc17b5b191103e97481cf8889217263acf52e00b560683413af204fcb",
)
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
gazelle_dependencies()
# Go repositories
go_repository(
name = "io_k8s_kubernetes",
importpath = "k8s.io/kubernetes",
# Get from HTTP instead, this repository is _big_
urls = ["https://github.com/kubernetes/kubernetes/archive/v1.13.2.tar.gz"],
sha256 = "2791a2be64e9e1d027962cdd2a42cdc90d26927623779aaf787b575fc623e2d7",
strip_prefix = "kubernetes-1.13.2",
)
go_repository(
name = "io_kubernetes_build",
commit = "796fd4636e54971f81cbbc663437d44c643159aa",
importpath = "k8s.io/repo-infra",
)
go_repository(
name = "com_github_ksonnet_kubecfg",
commit = "59bc7dedf70e7496a2837207d8723f98f0e5f8e8",
importpath = "github.com/ksonnet/kubecfg",
)
go_repository(
name = "com_github_projectcalico_calicoctl",
importpath = "github.com/projectcalico/calicoctl",
# This fork implements explicit Bazel rules
remote = "https://github.com/q3k/calicoctl",
vcs = "git",
commit = "1bc31862f07e7539ca493de9137ed1ad56cc9f43",
build_file_generation = "off",
)
go_repository(
name = "com_github_shirou_gopsutil",
commit = "2cbc9195c892b304060269ef280375236d2fcac9",
importpath = "github.com/shirou/gopsutil",
)