load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") load("//build:workspace_mirror.bzl", "mirror") http_archive( name = "bazel_skylib", sha256 = "eb5c57e4c12e68c0c20bc774bfbc60a568e800d025557bc4ea022c6479acc867", strip_prefix = "bazel-skylib-0.6.0", urls = mirror("https://github.com/bazelbuild/bazel-skylib/archive/0.6.0.tar.gz"), ) load("@bazel_skylib//lib:versions.bzl", "versions") versions.check(minimum_bazel_version = "0.18.0") http_archive( name = "io_k8s_repo_infra", sha256 = "2cc74219eafebb0af1e0cf80b9c2b78aac9aa570de762bfb82b83e9164be9da2", strip_prefix = "repo-infra-b461270ab6ccfb94ff2d78df96d26f669376d660", urls = mirror("https://github.com/kubernetes/repo-infra/archive/b461270ab6ccfb94ff2d78df96d26f669376d660.tar.gz"), ) ETCD_VERSION = "3.3.10" http_archive( name = "com_coreos_etcd", build_file = "@//third_party:etcd.BUILD", sha256 = "1620a59150ec0a0124a65540e23891243feb2d9a628092fb1edcc23974724a45", strip_prefix = "etcd-v%s-linux-amd64" % ETCD_VERSION, urls = mirror("https://github.com/coreos/etcd/releases/download/v%s/etcd-v%s-linux-amd64.tar.gz" % (ETCD_VERSION, ETCD_VERSION)), ) http_archive( name = "io_bazel_rules_go", sha256 = "6776d68ebb897625dead17ae510eac3d5f6342367327875210df44dbe2aeeb19", urls = mirror("https://github.com/bazelbuild/rules_go/releases/download/0.17.1/rules_go-0.17.1.tar.gz"), ) load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies") go_rules_dependencies() go_register_toolchains( go_version = "1.12", ) http_archive( name = "io_bazel_rules_docker", sha256 = "aed1c249d4ec8f703edddf35cbe9dfaca0b5f5ea6e4cd9e83e99f3b0d1136c3d", strip_prefix = "rules_docker-0.7.0", urls = mirror("https://github.com/bazelbuild/rules_docker/archive/v0.7.0.tar.gz"), ) load( "@io_bazel_rules_docker//repositories:repositories.bzl", container_repositories = "repositories", ) container_repositories() load("@io_bazel_rules_docker//container:container.bzl", "container_pull") container_pull( name = "official_busybox", digest = "sha256:cb63aa0641a885f54de20f61d152187419e8f6b159ed11a251a09d115fdff9bd", registry = "index.docker.io", repository = "library/busybox", tag = "latest", # ignored, but kept here for documentation ) load("//build:workspace.bzl", "release_dependencies") release_dependencies() load("//build:workspace_mirror.bzl", "export_urls") export_urls("workspace_urls")