mirror of
https://github.com/openshift/installer.git
synced 2026-02-05 15:47:14 +01:00
*: remove bazel
This removes all of the files which are directly required by bazel.
This commit is contained in:
140
BUILD.bazel
140
BUILD.bazel
@@ -1,140 +0,0 @@
|
||||
load("//bazel-rules:gen_test.bzl", "gen_test")
|
||||
load("//:version.bzl", "TECTONIC_VERSION")
|
||||
|
||||
package(
|
||||
default_visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "darwin",
|
||||
values = {"cpu": "darwin"},
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "linux",
|
||||
values = {"cpu": "k8"}, # don't ask...
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
genrule(
|
||||
name = "terraform_runtime_fmt",
|
||||
srcs = select({
|
||||
"//:linux": ["@terraform_runtime_linux//:terraform"],
|
||||
"//:darwin": ["@terraform_runtime_darwin//:terraform"],
|
||||
}),
|
||||
outs = ["bin/terraform"],
|
||||
cmd = "cp $(<) $(@)",
|
||||
executable = True,
|
||||
output_to_bindir = 1,
|
||||
)
|
||||
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_prefix")
|
||||
|
||||
go_prefix("github.com/openshift/installer")
|
||||
|
||||
load("@bazel_gazelle//:def.bzl", "gazelle")
|
||||
|
||||
gazelle(
|
||||
name = "gazelle",
|
||||
command = "fix",
|
||||
external = "vendored",
|
||||
prefix = "github.com/openshift/installer",
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "smoke_tests",
|
||||
actual = "//tests/smoke:go_default_test",
|
||||
)
|
||||
|
||||
alias(
|
||||
name = "cli",
|
||||
actual = "//installer/cmd/tectonic",
|
||||
)
|
||||
|
||||
template_files = glob([
|
||||
"modules/**/*",
|
||||
"steps/**/*",
|
||||
"config.tf",
|
||||
])
|
||||
|
||||
exports_files(template_files)
|
||||
|
||||
filegroup(
|
||||
name = "template_resources",
|
||||
srcs = template_files,
|
||||
)
|
||||
|
||||
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
|
||||
|
||||
alias(
|
||||
name = "tarball",
|
||||
actual = ":tectonic-%s" % TECTONIC_VERSION,
|
||||
)
|
||||
|
||||
pkg_tar(
|
||||
name = "tectonic-%s" % TECTONIC_VERSION,
|
||||
srcs = [
|
||||
"//:template_resources",
|
||||
"//examples:config_examples",
|
||||
],
|
||||
extension = "tar.gz",
|
||||
mode = "0666",
|
||||
package_dir = "tectonic-%s" % TECTONIC_VERSION,
|
||||
strip_prefix = ".",
|
||||
deps = [
|
||||
":cli_bin",
|
||||
":old_cli_bin",
|
||||
":tf_bin",
|
||||
],
|
||||
)
|
||||
|
||||
pkg_tar(
|
||||
name = "old_cli_bin",
|
||||
srcs = ["//installer/cmd/tectonic"],
|
||||
mode = "0555",
|
||||
package_dir = "installer",
|
||||
)
|
||||
|
||||
pkg_tar(
|
||||
name = "cli_bin",
|
||||
srcs = ["//cmd/openshift-install"],
|
||||
mode = "0555",
|
||||
package_dir = "installer",
|
||||
)
|
||||
|
||||
filegroup(
|
||||
name = "terraform_runtime",
|
||||
srcs = select({
|
||||
"//:linux": ["@terraform_runtime_linux//:terraform"],
|
||||
"//:darwin": ["@terraform_runtime_darwin//:terraform"],
|
||||
}),
|
||||
)
|
||||
|
||||
pkg_tar(
|
||||
name = "tf_bin",
|
||||
srcs = [":terraform_runtime"],
|
||||
mode = "0777",
|
||||
package_dir = "installer",
|
||||
)
|
||||
|
||||
filegroup(
|
||||
name = "terraform_files",
|
||||
srcs = glob(
|
||||
["modules/**/*.tf"],
|
||||
exclude_directories = 1,
|
||||
) + glob(
|
||||
["steps/**/*.tf"],
|
||||
exclude_directories = 1,
|
||||
) + ["config.tf"],
|
||||
)
|
||||
|
||||
gen_test(
|
||||
name = "terraform_fmt",
|
||||
size = "small",
|
||||
command = "./bin/terraform fmt -list -check -write=false",
|
||||
deps = [
|
||||
":terraform_files",
|
||||
":terraform_runtime_fmt",
|
||||
],
|
||||
)
|
||||
40
WORKSPACE
40
WORKSPACE
@@ -1,40 +0,0 @@
|
||||
workspace(name = "installer")
|
||||
|
||||
terrafom_version = "0.11.8"
|
||||
|
||||
supported_platforms = [
|
||||
"linux",
|
||||
"darwin",
|
||||
]
|
||||
|
||||
http_archive(
|
||||
name = "io_bazel_rules_go",
|
||||
url = "https://github.com/bazelbuild/rules_go/releases/download/0.12.1/rules_go-0.12.1.tar.gz",
|
||||
sha256 = "8b68d0630d63d95dacc0016c3bb4b76154fe34fca93efd65d1c366de3fcb4294",
|
||||
)
|
||||
|
||||
http_archive(
|
||||
name = "bazel_gazelle",
|
||||
url = "https://github.com/bazelbuild/bazel-gazelle/releases/download/0.12.0/bazel-gazelle-0.12.0.tar.gz",
|
||||
sha256 = "ddedc7aaeb61f2654d7d7d4fd7940052ea992ccdb031b8f9797ed143ac7e8d43",
|
||||
)
|
||||
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_rules_dependencies", "go_register_toolchains")
|
||||
|
||||
go_rules_dependencies()
|
||||
|
||||
go_register_toolchains()
|
||||
|
||||
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
|
||||
|
||||
gazelle_dependencies()
|
||||
|
||||
# Runtime binary dependencies follow.
|
||||
# These will be fetched and included in the build output verbatim.
|
||||
#
|
||||
[new_http_archive(
|
||||
name = "terraform_runtime_%s" % platform,
|
||||
build_file_content = """exports_files(["terraform"], visibility = ["//visibility:public"])""",
|
||||
type = "zip",
|
||||
url = "https://releases.hashicorp.com/terraform/%s/terraform_%s_%s_amd64.zip" % (terrafom_version, terrafom_version, platform),
|
||||
) for platform in supported_platforms]
|
||||
@@ -1,28 +0,0 @@
|
||||
def generate_script(command):
|
||||
return """
|
||||
set -ex
|
||||
{command}
|
||||
""".format(command=command)
|
||||
|
||||
def _impl(ctx):
|
||||
script = generate_script(ctx.attr.command)
|
||||
|
||||
# Write the file, it is executed by 'bazel test'.
|
||||
ctx.actions.write(
|
||||
output=ctx.outputs.executable,
|
||||
content=script
|
||||
)
|
||||
|
||||
# To ensure the files needed by the script are available, we put them in
|
||||
# the runfiles.
|
||||
runfiles = ctx.runfiles(files=ctx.files.deps)
|
||||
return [DefaultInfo(runfiles=runfiles)]
|
||||
|
||||
gen_test = rule(
|
||||
implementation=_impl,
|
||||
attrs={
|
||||
"command": attr.string(),
|
||||
"deps": attr.label_list(allow_files=True),
|
||||
},
|
||||
test=True,
|
||||
)
|
||||
@@ -1,6 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
# Vars exported to the build info
|
||||
echo TECTONIC_VERSION "${TECTONIC_VERSION}"
|
||||
echo BUILD_TIME "$(date -u '+%Y-%m-%dT%H:%M:%S%z')"
|
||||
@@ -1,25 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["main.go"],
|
||||
importpath = "github.com/openshift/installer/cmd/openshift-install",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/asset/stock:go_default_library",
|
||||
"//pkg/destroy:go_default_library",
|
||||
"//vendor/github.com/sirupsen/logrus:go_default_library",
|
||||
"//vendor/gopkg.in/alecthomas/kingpin.v2:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_binary(
|
||||
name = "openshift-install",
|
||||
out = "openshift-install",
|
||||
embed = [":go_default_library"],
|
||||
# Use pure to build a pure-go binary.
|
||||
# This has the nice side effect of making the binary statically linked.
|
||||
pure = "on",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,17 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"assets.go",
|
||||
"unpack.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/data",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
srcs = ["unpack_test.go"],
|
||||
embed = [":go_default_library"],
|
||||
)
|
||||
@@ -1,9 +0,0 @@
|
||||
config_examples = glob(["*.yaml"])
|
||||
|
||||
filegroup(
|
||||
name = "config_examples",
|
||||
srcs = config_examples,
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
exports_files(config_examples)
|
||||
@@ -1,10 +0,0 @@
|
||||
test_suite(
|
||||
name = "cli_units",
|
||||
tests = [
|
||||
"//installer/pkg/config:go_default_test",
|
||||
"//installer/pkg/config-generator:go_default_test",
|
||||
"//installer/pkg/tls:go_default_test",
|
||||
"//installer/pkg/validate:go_default_test",
|
||||
"//installer/pkg/workflow:go_default_test",
|
||||
],
|
||||
)
|
||||
@@ -1,24 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["main.go"],
|
||||
importpath = "github.com/openshift/installer/installer/cmd/tectonic",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"//installer/pkg/workflow:go_default_library",
|
||||
"//vendor/github.com/sirupsen/logrus:go_default_library",
|
||||
"//vendor/gopkg.in/alecthomas/kingpin.v2:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_binary(
|
||||
name = "tectonic",
|
||||
out = "tectonic",
|
||||
data = ["//:template_resources"],
|
||||
embed = [":go_default_library"],
|
||||
# Use pure to build a pure-go binary.
|
||||
# This has the nice side effect of making the binary statically linked.
|
||||
pure = "on",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,43 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"generator.go",
|
||||
"ignition.go",
|
||||
"tls.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/installer/pkg/config-generator",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//installer/pkg/copy:go_default_library",
|
||||
"//pkg/asset/tls:go_default_library",
|
||||
"//pkg/ipnet:go_default_library",
|
||||
"//pkg/rhcos:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//pkg/types/config:go_default_library",
|
||||
"//vendor/github.com/apparentlymart/go-cidr/cidr:go_default_library",
|
||||
"//vendor/github.com/coreos/ignition/config/v2_2:go_default_library",
|
||||
"//vendor/github.com/coreos/ignition/config/v2_2/types:go_default_library",
|
||||
"//vendor/github.com/coreos/tectonic-config/config/kube-addon:go_default_library",
|
||||
"//vendor/github.com/coreos/tectonic-config/config/kube-core:go_default_library",
|
||||
"//vendor/github.com/coreos/tectonic-config/config/tectonic-network:go_default_library",
|
||||
"//vendor/github.com/coreos/tectonic-config/config/tectonic-utility:go_default_library",
|
||||
"//vendor/github.com/ghodss/yaml:go_default_library",
|
||||
"//vendor/github.com/vincent-petithory/dataurl:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
size = "small",
|
||||
srcs = ["generator_test.go"],
|
||||
data = glob(["fixtures/**"]),
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
"//pkg/asset/tls:go_default_library",
|
||||
"//pkg/types/config:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,15 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["copy.go"],
|
||||
importpath = "github.com/openshift/installer/installer/pkg/copy",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
size = "small",
|
||||
srcs = ["copy_test.go"],
|
||||
embed = [":go_default_library"],
|
||||
)
|
||||
@@ -1,20 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"last_ip_test.go",
|
||||
"validate_test.go",
|
||||
],
|
||||
embed = [":go_default_library"],
|
||||
deps = ["//pkg/asset/tls:go_default_library"],
|
||||
)
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["validate.go"],
|
||||
data = glob(["fixtures/**"]),
|
||||
importpath = "github.com/openshift/installer/installer/pkg/validate",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,39 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"convert.go",
|
||||
"destroy.go",
|
||||
"init.go",
|
||||
"install.go",
|
||||
"utils.go",
|
||||
"workflow.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/installer/pkg/workflow",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//installer/pkg/config-generator:go_default_library",
|
||||
"//pkg/terraform:go_default_library",
|
||||
"//pkg/types/config:go_default_library",
|
||||
"//vendor/github.com/sirupsen/logrus:go_default_library",
|
||||
"//vendor/gopkg.in/yaml.v2:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/types:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library",
|
||||
"//vendor/k8s.io/client-go/tools/clientcmd:go_default_library",
|
||||
"//vendor/sigs.k8s.io/cluster-api/pkg/client/clientset_generated/clientset:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"init_test.go",
|
||||
"workflow_test.go",
|
||||
],
|
||||
data = glob(["fixtures/**"]),
|
||||
embed = [":go_default_library"],
|
||||
deps = ["//pkg/types/config:go_default_library"],
|
||||
)
|
||||
@@ -1,28 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"asset.go",
|
||||
"doc.go",
|
||||
"state.go",
|
||||
"store.go",
|
||||
"userprovided.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//vendor/github.com/AlecAivazis/survey:go_default_library",
|
||||
"//vendor/github.com/sirupsen/logrus:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
srcs = [
|
||||
"state_test.go",
|
||||
"store_test.go",
|
||||
],
|
||||
embed = [":go_default_library"],
|
||||
deps = ["//vendor/github.com/stretchr/testify/assert:go_default_library"],
|
||||
)
|
||||
@@ -1,23 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"cluster.go",
|
||||
"doc.go",
|
||||
"stock.go",
|
||||
"tfvars.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/cluster",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//data:go_default_library",
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/asset/ignition:go_default_library",
|
||||
"//pkg/asset/installconfig:go_default_library",
|
||||
"//pkg/asset/kubeconfig:go_default_library",
|
||||
"//pkg/terraform:go_default_library",
|
||||
"//pkg/types/config:go_default_library",
|
||||
"//vendor/github.com/sirupsen/logrus:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,43 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"bootstrap.go",
|
||||
"doc.go",
|
||||
"master.go",
|
||||
"node.go",
|
||||
"stock.go",
|
||||
"worker.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/ignition",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/asset/ignition/content:go_default_library",
|
||||
"//pkg/asset/installconfig:go_default_library",
|
||||
"//pkg/asset/kubeconfig:go_default_library",
|
||||
"//pkg/asset/manifests:go_default_library",
|
||||
"//pkg/asset/tls:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//vendor/github.com/coreos/ignition/config/util:go_default_library",
|
||||
"//vendor/github.com/coreos/ignition/config/v2_2/types:go_default_library",
|
||||
"//vendor/github.com/vincent-petithory/dataurl:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
srcs = [
|
||||
"master_test.go",
|
||||
"testasset_test.go",
|
||||
"testutils_test.go",
|
||||
"worker_test.go",
|
||||
],
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
"//vendor/github.com/vincent-petithory/dataurl:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"bootkube.go",
|
||||
"doc.go",
|
||||
"kubelet.go",
|
||||
"tectonic.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/ignition/content",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,38 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"clusterid.go",
|
||||
"doc.go",
|
||||
"installconfig.go",
|
||||
"platform.go",
|
||||
"ssh.go",
|
||||
"stock.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/installconfig",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//installer/pkg/validate:go_default_library",
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/ipnet:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//vendor/github.com/AlecAivazis/survey:go_default_library",
|
||||
"//vendor/github.com/apparentlymart/go-cidr/cidr:go_default_library",
|
||||
"//vendor/github.com/ghodss/yaml:go_default_library",
|
||||
"//vendor/github.com/pborman/uuid:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
srcs = ["installconfig_test.go"],
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/ipnet:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,29 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"doc.go",
|
||||
"kubeconfig.go",
|
||||
"stock.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/kubeconfig",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/asset/installconfig:go_default_library",
|
||||
"//pkg/asset/tls:go_default_library",
|
||||
"//vendor/github.com/ghodss/yaml:go_default_library",
|
||||
"//vendor/k8s.io/client-go/tools/clientcmd/api/v1:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
srcs = ["kubeconfig_test.go"],
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,41 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"kube-addon-operator.go",
|
||||
"kube-core-operator.go",
|
||||
"machine-api-operator.go",
|
||||
"network-operator.go",
|
||||
"operators.go",
|
||||
"stock.go",
|
||||
"tectonic.go",
|
||||
"template.go",
|
||||
"utils.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/asset/installconfig:go_default_library",
|
||||
"//pkg/asset/kubeconfig:go_default_library",
|
||||
"//pkg/asset/manifests/content/bootkube:go_default_library",
|
||||
"//pkg/asset/manifests/content/tectonic/ingress:go_default_library",
|
||||
"//pkg/asset/manifests/content/tectonic/rbac:go_default_library",
|
||||
"//pkg/asset/manifests/content/tectonic/secrets:go_default_library",
|
||||
"//pkg/asset/manifests/content/tectonic/security:go_default_library",
|
||||
"//pkg/asset/manifests/content/tectonic/updater:go_default_library",
|
||||
"//pkg/asset/manifests/content/tectonic/updater/appversions:go_default_library",
|
||||
"//pkg/asset/manifests/content/tectonic/updater/operators:go_default_library",
|
||||
"//pkg/asset/tls:go_default_library",
|
||||
"//pkg/rhcos:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//vendor/github.com/apparentlymart/go-cidr/cidr:go_default_library",
|
||||
"//vendor/github.com/coreos/tectonic-config/config/kube-addon:go_default_library",
|
||||
"//vendor/github.com/coreos/tectonic-config/config/kube-core:go_default_library",
|
||||
"//vendor/github.com/coreos/tectonic-config/config/tectonic-network:go_default_library",
|
||||
"//vendor/github.com/ghodss/yaml:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/util/rand:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,32 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"01-tectonic-namespace.go",
|
||||
"02-ingress-namespace.go",
|
||||
"03-openshift-web-console-namespace.go",
|
||||
"04-openshift-machine-config-operator.go",
|
||||
"05-openshift-cluster-api-namespace.go",
|
||||
"app-version-kind.go",
|
||||
"app-version-mao.go",
|
||||
"app-version-tectonic-network.go",
|
||||
"cluster-apiserver-certs.go",
|
||||
"ign-config.go",
|
||||
"kube-apiserver-secret.go",
|
||||
"kube-cloud-config.go",
|
||||
"kube-controller-manager-secret.go",
|
||||
"machine-api-operator.go",
|
||||
"machine-config-operator-00-config-crd.go",
|
||||
"machine-config-operator-01-images-configmap.go",
|
||||
"machine-config-operator-02-rbac.go",
|
||||
"machine-config-operator-03-deployment.go",
|
||||
"machine-config-server-tls-secret.go",
|
||||
"openshift-apiserver-secret.go",
|
||||
"operatorstatus-crd.go",
|
||||
"pull.go",
|
||||
"tectonic-network-operator.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests/content/bootkube",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,12 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"cluster-config.go",
|
||||
"pull.go",
|
||||
"svc-account.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests/content/tectonic/ingress",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"binding-admin.go",
|
||||
"binding-discovery.go",
|
||||
"role-admin.go",
|
||||
"role-user.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests/content/tectonic/rbac",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,12 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"ca-cert.go",
|
||||
"ingress-tls.go",
|
||||
"pull.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests/content/tectonic/secrets",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,8 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["priviledged-scc-tectonic.go"],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests/content/tectonic/security",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,11 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"app-version-kind.go",
|
||||
"migration-status-kind.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests/content/tectonic/updater",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"app-version-kube-addon.go",
|
||||
"app-version-kube-core.go",
|
||||
"app-version-tectonic-cluster.go",
|
||||
"app-version-tectonic-ingress.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests/content/tectonic/updater/appversions",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,12 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"kube-addon-operator.go",
|
||||
"kube-core-operator.go",
|
||||
"tectonic-ingress-controller-operator.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/manifests/content/tectonic/updater/operators",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,18 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"doc.go",
|
||||
"metadata.go",
|
||||
"stock.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/metadata",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/asset/cluster:go_default_library",
|
||||
"//pkg/asset/installconfig:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,20 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"doc.go",
|
||||
"stock.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/stock",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//pkg/asset/cluster:go_default_library",
|
||||
"//pkg/asset/ignition:go_default_library",
|
||||
"//pkg/asset/installconfig:go_default_library",
|
||||
"//pkg/asset/kubeconfig:go_default_library",
|
||||
"//pkg/asset/manifests:go_default_library",
|
||||
"//pkg/asset/metadata:go_default_library",
|
||||
"//pkg/asset/tls:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,39 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"certkey_test.go",
|
||||
"tls_test.go",
|
||||
],
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//vendor/github.com/stretchr/testify/assert:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"certkey.go",
|
||||
"doc.go",
|
||||
"helper.go",
|
||||
"keypair.go",
|
||||
"root.go",
|
||||
"stock.go",
|
||||
"tls.go",
|
||||
"utils.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/asset/tls",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//pkg/asset:go_default_library",
|
||||
"//pkg/asset/installconfig:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//vendor/github.com/apparentlymart/go-cidr/cidr:go_default_library",
|
||||
"//vendor/github.com/ghodss/yaml:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,17 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"destroyer.go",
|
||||
"doc.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/destroy",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//pkg/asset/metadata:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//vendor/github.com/openshift/hive/contrib/pkg/aws_tag_deprovision:go_default_library",
|
||||
"//vendor/github.com/sirupsen/logrus:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["libvirt_prefix_deprovision.go"],
|
||||
importpath = "github.com/openshift/installer/pkg/destroy/libvirt",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//vendor/github.com/libvirt/libvirt-go:go_default_library",
|
||||
"//vendor/github.com/sirupsen/logrus:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,14 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["ipnet.go"],
|
||||
importpath = "github.com/openshift/installer/pkg/ipnet",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
srcs = ["ipnet_test.go"],
|
||||
embed = [":go_default_library"],
|
||||
)
|
||||
@@ -1,16 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"ami.go",
|
||||
"doc.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/rhcos",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//vendor/github.com/aws/aws-sdk-go/aws:go_default_library",
|
||||
"//vendor/github.com/aws/aws-sdk-go/aws/session:go_default_library",
|
||||
"//vendor/github.com/aws/aws-sdk-go/service/ec2:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"doc.go",
|
||||
"executor.go",
|
||||
"terraform.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/terraform",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//pkg/types/config:go_default_library"],
|
||||
)
|
||||
@@ -1,17 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"clustermetadata.go",
|
||||
"doc.go",
|
||||
"installconfig.go",
|
||||
"machinepools.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/types",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//pkg/ipnet:go_default_library",
|
||||
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,36 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"cluster.go",
|
||||
"parser.go",
|
||||
"types.go",
|
||||
"validate.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/types/config",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//installer/pkg/validate:go_default_library",
|
||||
"//pkg/rhcos:go_default_library",
|
||||
"//pkg/types:go_default_library",
|
||||
"//pkg/types/config/aws:go_default_library",
|
||||
"//pkg/types/config/libvirt:go_default_library",
|
||||
"//vendor/github.com/coreos/ignition/config/v2_2:go_default_library",
|
||||
"//vendor/github.com/coreos/tectonic-config/config/tectonic-network:go_default_library",
|
||||
"//vendor/github.com/sirupsen/logrus:go_default_library",
|
||||
"//vendor/gopkg.in/yaml.v2:go_default_library",
|
||||
],
|
||||
)
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
size = "small",
|
||||
srcs = ["validate_test.go"],
|
||||
data = glob(["fixtures/**"]),
|
||||
embed = [":go_default_library"],
|
||||
deps = [
|
||||
"//pkg/types/config/aws:go_default_library",
|
||||
"//pkg/types/config/libvirt:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,8 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["aws.go"],
|
||||
importpath = "github.com/openshift/installer/pkg/types/config/aws",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
@@ -1,16 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"cache.go",
|
||||
"libvirt.go",
|
||||
],
|
||||
importpath = "github.com/openshift/installer/pkg/types/config/libvirt",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//vendor/github.com/apparentlymart/go-cidr/cidr:go_default_library",
|
||||
"//vendor/github.com/gregjones/httpcache:go_default_library",
|
||||
"//vendor/github.com/gregjones/httpcache/diskcache:go_default_library",
|
||||
],
|
||||
)
|
||||
@@ -1,22 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
||||
|
||||
go_test(
|
||||
name = "go_default_test",
|
||||
srcs = [
|
||||
"cluster_test.go",
|
||||
"common_test.go",
|
||||
"smoke_test.go",
|
||||
],
|
||||
pure = "on",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/apimachinery/pkg/util/errors:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/client-go/kubernetes:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/client-go/pkg/api/v1:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/client-go/tools/clientcmd:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/kubernetes/pkg/kubectl/cmd/util:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/kubernetes/pkg/kubectl/resource:go_default_library",
|
||||
],
|
||||
)
|
||||
9
tests/smoke/vendor/cloud.google.com/go/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/cloud.google.com/go/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["cloud.go"],
|
||||
importmap = "installer/tests/smoke/vendor/cloud.google.com/go",
|
||||
importpath = "cloud.google.com/go",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
14
tests/smoke/vendor/cloud.google.com/go/compute/metadata/BUILD.bazel
generated
vendored
14
tests/smoke/vendor/cloud.google.com/go/compute/metadata/BUILD.bazel
generated
vendored
@@ -1,14 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["metadata.go"],
|
||||
importmap = "installer/tests/smoke/vendor/cloud.google.com/go/compute/metadata",
|
||||
importpath = "cloud.google.com/go/compute/metadata",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/cloud.google.com/go/internal:go_default_library",
|
||||
"//tests/smoke/vendor/golang.org/x/net/context:go_default_library",
|
||||
"//tests/smoke/vendor/golang.org/x/net/context/ctxhttp:go_default_library",
|
||||
],
|
||||
)
|
||||
9
tests/smoke/vendor/cloud.google.com/go/internal/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/cloud.google.com/go/internal/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["cloud.go"],
|
||||
importmap = "installer/tests/smoke/vendor/cloud.google.com/go/internal",
|
||||
importpath = "cloud.google.com/go/internal",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
18
tests/smoke/vendor/github.com/Azure/go-autorest/autorest/BUILD.bazel
generated
vendored
18
tests/smoke/vendor/github.com/Azure/go-autorest/autorest/BUILD.bazel
generated
vendored
@@ -1,18 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"autorest.go",
|
||||
"client.go",
|
||||
"error.go",
|
||||
"preparer.go",
|
||||
"responder.go",
|
||||
"sender.go",
|
||||
"utility.go",
|
||||
"version.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/Azure/go-autorest/autorest",
|
||||
importpath = "github.com/Azure/go-autorest/autorest",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
22
tests/smoke/vendor/github.com/Azure/go-autorest/autorest/azure/BUILD.bazel
generated
vendored
22
tests/smoke/vendor/github.com/Azure/go-autorest/autorest/azure/BUILD.bazel
generated
vendored
@@ -1,22 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"async.go",
|
||||
"azure.go",
|
||||
"config.go",
|
||||
"devicetoken.go",
|
||||
"environments.go",
|
||||
"persist.go",
|
||||
"token.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/Azure/go-autorest/autorest/azure",
|
||||
importpath = "github.com/Azure/go-autorest/autorest/azure",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/Azure/go-autorest/autorest:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/Azure/go-autorest/autorest/date:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/dgrijalva/jwt-go:go_default_library",
|
||||
],
|
||||
)
|
||||
14
tests/smoke/vendor/github.com/Azure/go-autorest/autorest/date/BUILD.bazel
generated
vendored
14
tests/smoke/vendor/github.com/Azure/go-autorest/autorest/date/BUILD.bazel
generated
vendored
@@ -1,14 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"date.go",
|
||||
"time.go",
|
||||
"timerfc1123.go",
|
||||
"utility.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/Azure/go-autorest/autorest/date",
|
||||
importpath = "github.com/Azure/go-autorest/autorest/date",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
15
tests/smoke/vendor/github.com/PuerkitoBio/purell/BUILD.bazel
generated
vendored
15
tests/smoke/vendor/github.com/PuerkitoBio/purell/BUILD.bazel
generated
vendored
@@ -1,15 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["purell.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/PuerkitoBio/purell",
|
||||
importpath = "github.com/PuerkitoBio/purell",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/PuerkitoBio/urlesc:go_default_library",
|
||||
"//tests/smoke/vendor/golang.org/x/net/idna:go_default_library",
|
||||
"//tests/smoke/vendor/golang.org/x/text/secure/precis:go_default_library",
|
||||
"//tests/smoke/vendor/golang.org/x/text/unicode/norm:go_default_library",
|
||||
],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/PuerkitoBio/urlesc/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/PuerkitoBio/urlesc/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["urlesc.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/PuerkitoBio/urlesc",
|
||||
importpath = "github.com/PuerkitoBio/urlesc",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/beorn7/perks/quantile/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/beorn7/perks/quantile/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["stream.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/beorn7/perks/quantile",
|
||||
importpath = "github.com/beorn7/perks/quantile",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
21
tests/smoke/vendor/github.com/coreos/ktestutil/testworkload/BUILD.bazel
generated
vendored
21
tests/smoke/vendor/github.com/coreos/ktestutil/testworkload/BUILD.bazel
generated
vendored
@@ -1,21 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["nginx_workload.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/coreos/ktestutil/testworkload",
|
||||
importpath = "github.com/coreos/ktestutil/testworkload",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/golang/glog:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/apimachinery/pkg/util/intstr:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/apimachinery/pkg/util/rand:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/client-go/kubernetes:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/client-go/pkg/api/v1:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/client-go/pkg/apis/batch/v1:go_default_library",
|
||||
"//tests/smoke/vendor/k8s.io/client-go/pkg/apis/extensions/v1beta1:go_default_library",
|
||||
],
|
||||
)
|
||||
17
tests/smoke/vendor/github.com/davecgh/go-spew/spew/BUILD.bazel
generated
vendored
17
tests/smoke/vendor/github.com/davecgh/go-spew/spew/BUILD.bazel
generated
vendored
@@ -1,17 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"bypass.go",
|
||||
"common.go",
|
||||
"config.go",
|
||||
"doc.go",
|
||||
"dump.go",
|
||||
"format.go",
|
||||
"spew.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/davecgh/go-spew/spew",
|
||||
importpath = "github.com/davecgh/go-spew/spew",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
24
tests/smoke/vendor/github.com/dgrijalva/jwt-go/BUILD.bazel
generated
vendored
24
tests/smoke/vendor/github.com/dgrijalva/jwt-go/BUILD.bazel
generated
vendored
@@ -1,24 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"claims.go",
|
||||
"doc.go",
|
||||
"ecdsa.go",
|
||||
"ecdsa_utils.go",
|
||||
"errors.go",
|
||||
"hmac.go",
|
||||
"map_claims.go",
|
||||
"none.go",
|
||||
"parser.go",
|
||||
"rsa.go",
|
||||
"rsa_pss.go",
|
||||
"rsa_utils.go",
|
||||
"signing_method.go",
|
||||
"token.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/dgrijalva/jwt-go",
|
||||
importpath = "github.com/dgrijalva/jwt-go",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
21
tests/smoke/vendor/github.com/docker/distribution/BUILD.bazel
generated
vendored
21
tests/smoke/vendor/github.com/docker/distribution/BUILD.bazel
generated
vendored
@@ -1,21 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"blobs.go",
|
||||
"doc.go",
|
||||
"errors.go",
|
||||
"manifests.go",
|
||||
"registry.go",
|
||||
"tags.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/distribution",
|
||||
importpath = "github.com/docker/distribution",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/docker/distribution/digest:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/distribution/reference:go_default_library",
|
||||
"//vendor/github.com/docker/distribution/context:go_default_library",
|
||||
],
|
||||
)
|
||||
15
tests/smoke/vendor/github.com/docker/distribution/digest/BUILD.bazel
generated
vendored
15
tests/smoke/vendor/github.com/docker/distribution/digest/BUILD.bazel
generated
vendored
@@ -1,15 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"digest.go",
|
||||
"digester.go",
|
||||
"doc.go",
|
||||
"set.go",
|
||||
"verifiers.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/distribution/digest",
|
||||
importpath = "github.com/docker/distribution/digest",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
13
tests/smoke/vendor/github.com/docker/distribution/reference/BUILD.bazel
generated
vendored
13
tests/smoke/vendor/github.com/docker/distribution/reference/BUILD.bazel
generated
vendored
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"reference.go",
|
||||
"regexp.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/distribution/reference",
|
||||
importpath = "github.com/docker/distribution/reference",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//tests/smoke/vendor/github.com/docker/distribution/digest:go_default_library"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/docker/engine-api/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/docker/engine-api/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["doc.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api",
|
||||
importpath = "github.com/docker/engine-api",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
83
tests/smoke/vendor/github.com/docker/engine-api/client/BUILD.bazel
generated
vendored
83
tests/smoke/vendor/github.com/docker/engine-api/client/BUILD.bazel
generated
vendored
@@ -1,83 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"client.go",
|
||||
"client_darwin.go",
|
||||
"client_unix.go",
|
||||
"client_windows.go",
|
||||
"container_attach.go",
|
||||
"container_commit.go",
|
||||
"container_copy.go",
|
||||
"container_create.go",
|
||||
"container_diff.go",
|
||||
"container_exec.go",
|
||||
"container_export.go",
|
||||
"container_inspect.go",
|
||||
"container_kill.go",
|
||||
"container_list.go",
|
||||
"container_logs.go",
|
||||
"container_pause.go",
|
||||
"container_remove.go",
|
||||
"container_rename.go",
|
||||
"container_resize.go",
|
||||
"container_restart.go",
|
||||
"container_start.go",
|
||||
"container_stats.go",
|
||||
"container_stop.go",
|
||||
"container_top.go",
|
||||
"container_unpause.go",
|
||||
"container_update.go",
|
||||
"container_wait.go",
|
||||
"errors.go",
|
||||
"events.go",
|
||||
"hijack.go",
|
||||
"image_build.go",
|
||||
"image_create.go",
|
||||
"image_history.go",
|
||||
"image_import.go",
|
||||
"image_inspect.go",
|
||||
"image_list.go",
|
||||
"image_load.go",
|
||||
"image_pull.go",
|
||||
"image_push.go",
|
||||
"image_remove.go",
|
||||
"image_save.go",
|
||||
"image_search.go",
|
||||
"image_tag.go",
|
||||
"info.go",
|
||||
"interface.go",
|
||||
"login.go",
|
||||
"network_connect.go",
|
||||
"network_create.go",
|
||||
"network_disconnect.go",
|
||||
"network_inspect.go",
|
||||
"network_list.go",
|
||||
"network_remove.go",
|
||||
"request.go",
|
||||
"version.go",
|
||||
"volume_create.go",
|
||||
"volume_inspect.go",
|
||||
"volume_list.go",
|
||||
"volume_remove.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/client",
|
||||
importpath = "github.com/docker/engine-api/client",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/docker/distribution/reference:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/client/transport:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/client/transport/cancellable:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/container:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/filters:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/network:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/reference:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/registry:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/time:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/go-connections/sockets:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/go-connections/tlsconfig:go_default_library",
|
||||
"//tests/smoke/vendor/golang.org/x/net/context:go_default_library",
|
||||
],
|
||||
)
|
||||
13
tests/smoke/vendor/github.com/docker/engine-api/client/transport/BUILD.bazel
generated
vendored
13
tests/smoke/vendor/github.com/docker/engine-api/client/transport/BUILD.bazel
generated
vendored
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"client.go",
|
||||
"transport.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/client/transport",
|
||||
importpath = "github.com/docker/engine-api/client/transport",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//tests/smoke/vendor/github.com/docker/go-connections/sockets:go_default_library"],
|
||||
)
|
||||
17
tests/smoke/vendor/github.com/docker/engine-api/client/transport/cancellable/BUILD.bazel
generated
vendored
17
tests/smoke/vendor/github.com/docker/engine-api/client/transport/cancellable/BUILD.bazel
generated
vendored
@@ -1,17 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"canceler.go",
|
||||
"canceler_go14.go",
|
||||
"cancellable.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/client/transport/cancellable",
|
||||
importpath = "github.com/docker/engine-api/client/transport/cancellable",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/client/transport:go_default_library",
|
||||
"//tests/smoke/vendor/golang.org/x/net/context:go_default_library",
|
||||
],
|
||||
)
|
||||
24
tests/smoke/vendor/github.com/docker/engine-api/types/BUILD.bazel
generated
vendored
24
tests/smoke/vendor/github.com/docker/engine-api/types/BUILD.bazel
generated
vendored
@@ -1,24 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"auth.go",
|
||||
"client.go",
|
||||
"configs.go",
|
||||
"seccomp.go",
|
||||
"stats.go",
|
||||
"types.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types",
|
||||
importpath = "github.com/docker/engine-api/types",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/container:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/filters:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/network:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/registry:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/go-connections/nat:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/go-units:go_default_library",
|
||||
],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/docker/engine-api/types/blkiodev/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/docker/engine-api/types/blkiodev/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["blkio.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/blkiodev",
|
||||
importpath = "github.com/docker/engine-api/types/blkiodev",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
20
tests/smoke/vendor/github.com/docker/engine-api/types/container/BUILD.bazel
generated
vendored
20
tests/smoke/vendor/github.com/docker/engine-api/types/container/BUILD.bazel
generated
vendored
@@ -1,20 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"config.go",
|
||||
"host_config.go",
|
||||
"hostconfig_unix.go",
|
||||
"hostconfig_windows.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/container",
|
||||
importpath = "github.com/docker/engine-api/types/container",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/blkiodev:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/engine-api/types/strslice:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/go-connections/nat:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/docker/go-units:go_default_library",
|
||||
],
|
||||
)
|
||||
10
tests/smoke/vendor/github.com/docker/engine-api/types/filters/BUILD.bazel
generated
vendored
10
tests/smoke/vendor/github.com/docker/engine-api/types/filters/BUILD.bazel
generated
vendored
@@ -1,10 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["parse.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/filters",
|
||||
importpath = "github.com/docker/engine-api/types/filters",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//tests/smoke/vendor/github.com/docker/engine-api/types/versions:go_default_library"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/docker/engine-api/types/network/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/docker/engine-api/types/network/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["network.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/network",
|
||||
importpath = "github.com/docker/engine-api/types/network",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
10
tests/smoke/vendor/github.com/docker/engine-api/types/reference/BUILD.bazel
generated
vendored
10
tests/smoke/vendor/github.com/docker/engine-api/types/reference/BUILD.bazel
generated
vendored
@@ -1,10 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["image_reference.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/reference",
|
||||
importpath = "github.com/docker/engine-api/types/reference",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//tests/smoke/vendor/github.com/docker/distribution/reference:go_default_library"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/docker/engine-api/types/registry/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/docker/engine-api/types/registry/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["registry.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/registry",
|
||||
importpath = "github.com/docker/engine-api/types/registry",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/docker/engine-api/types/strslice/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/docker/engine-api/types/strslice/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["strslice.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/strslice",
|
||||
importpath = "github.com/docker/engine-api/types/strslice",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/docker/engine-api/types/time/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/docker/engine-api/types/time/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["timestamp.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/time",
|
||||
importpath = "github.com/docker/engine-api/types/time",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/docker/engine-api/types/versions/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/docker/engine-api/types/versions/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["compare.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/engine-api/types/versions",
|
||||
importpath = "github.com/docker/engine-api/types/versions",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/docker/go-connections/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/docker/go-connections/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["doc.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/go-connections",
|
||||
importpath = "github.com/docker/go-connections",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
13
tests/smoke/vendor/github.com/docker/go-connections/nat/BUILD.bazel
generated
vendored
13
tests/smoke/vendor/github.com/docker/go-connections/nat/BUILD.bazel
generated
vendored
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"nat.go",
|
||||
"parse.go",
|
||||
"sort.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/go-connections/nat",
|
||||
importpath = "github.com/docker/go-connections/nat",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
37
tests/smoke/vendor/github.com/docker/go-connections/sockets/BUILD.bazel
generated
vendored
37
tests/smoke/vendor/github.com/docker/go-connections/sockets/BUILD.bazel
generated
vendored
@@ -1,37 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"inmem_socket.go",
|
||||
"proxy.go",
|
||||
"sockets.go",
|
||||
"sockets_unix.go",
|
||||
"sockets_windows.go",
|
||||
"tcp_socket.go",
|
||||
"unix_socket.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/go-connections/sockets",
|
||||
importpath = "github.com/docker/go-connections/sockets",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//vendor/golang.org/x/net/proxy:go_default_library",
|
||||
] + select({
|
||||
"@io_bazel_rules_go//go/platform:freebsd": [
|
||||
"//vendor/github.com/Sirupsen/logrus:go_default_library",
|
||||
"//vendor/github.com/opencontainers/runc/libcontainer/user:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:linux": [
|
||||
"//vendor/github.com/Sirupsen/logrus:go_default_library",
|
||||
"//vendor/github.com/opencontainers/runc/libcontainer/user:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:solaris": [
|
||||
"//vendor/github.com/Sirupsen/logrus:go_default_library",
|
||||
"//vendor/github.com/opencontainers/runc/libcontainer/user:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:windows": [
|
||||
"//vendor/github.com/Microsoft/go-winio:go_default_library",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
||||
14
tests/smoke/vendor/github.com/docker/go-connections/tlsconfig/BUILD.bazel
generated
vendored
14
tests/smoke/vendor/github.com/docker/go-connections/tlsconfig/BUILD.bazel
generated
vendored
@@ -1,14 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"config.go",
|
||||
"config_client_ciphers.go",
|
||||
"config_legacy_client_ciphers.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/go-connections/tlsconfig",
|
||||
importpath = "github.com/docker/go-connections/tlsconfig",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//vendor/github.com/Sirupsen/logrus:go_default_library"],
|
||||
)
|
||||
13
tests/smoke/vendor/github.com/docker/go-units/BUILD.bazel
generated
vendored
13
tests/smoke/vendor/github.com/docker/go-units/BUILD.bazel
generated
vendored
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"duration.go",
|
||||
"size.go",
|
||||
"ulimit.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/docker/go-units",
|
||||
importpath = "github.com/docker/go-units",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
24
tests/smoke/vendor/github.com/emicklei/go-restful-swagger12/BUILD.bazel
generated
vendored
24
tests/smoke/vendor/github.com/emicklei/go-restful-swagger12/BUILD.bazel
generated
vendored
@@ -1,24 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"api_declaration_list.go",
|
||||
"config.go",
|
||||
"model_builder.go",
|
||||
"model_list.go",
|
||||
"model_property_ext.go",
|
||||
"model_property_list.go",
|
||||
"ordered_route_map.go",
|
||||
"swagger.go",
|
||||
"swagger_builder.go",
|
||||
"swagger_webservice.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/emicklei/go-restful-swagger12",
|
||||
importpath = "github.com/emicklei/go-restful-swagger12",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/emicklei/go-restful:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/emicklei/go-restful/log:go_default_library",
|
||||
],
|
||||
)
|
||||
37
tests/smoke/vendor/github.com/emicklei/go-restful/BUILD.bazel
generated
vendored
37
tests/smoke/vendor/github.com/emicklei/go-restful/BUILD.bazel
generated
vendored
@@ -1,37 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"compress.go",
|
||||
"compressor_cache.go",
|
||||
"compressor_pools.go",
|
||||
"compressors.go",
|
||||
"constants.go",
|
||||
"container.go",
|
||||
"cors_filter.go",
|
||||
"curly.go",
|
||||
"curly_route.go",
|
||||
"doc.go",
|
||||
"entity_accessors.go",
|
||||
"filter.go",
|
||||
"jsr311.go",
|
||||
"logger.go",
|
||||
"mime.go",
|
||||
"options_filter.go",
|
||||
"parameter.go",
|
||||
"path_expression.go",
|
||||
"request.go",
|
||||
"response.go",
|
||||
"route.go",
|
||||
"route_builder.go",
|
||||
"router.go",
|
||||
"service_error.go",
|
||||
"web_service.go",
|
||||
"web_service_container.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/emicklei/go-restful",
|
||||
importpath = "github.com/emicklei/go-restful",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//tests/smoke/vendor/github.com/emicklei/go-restful/log:go_default_library"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/emicklei/go-restful/log/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/emicklei/go-restful/log/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["log.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/emicklei/go-restful/log",
|
||||
importpath = "github.com/emicklei/go-restful/log",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
12
tests/smoke/vendor/github.com/evanphx/json-patch/BUILD.bazel
generated
vendored
12
tests/smoke/vendor/github.com/evanphx/json-patch/BUILD.bazel
generated
vendored
@@ -1,12 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"merge.go",
|
||||
"patch.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/evanphx/json-patch",
|
||||
importpath = "github.com/evanphx/json-patch",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
13
tests/smoke/vendor/github.com/exponent-io/jsonpath/BUILD.bazel
generated
vendored
13
tests/smoke/vendor/github.com/exponent-io/jsonpath/BUILD.bazel
generated
vendored
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"decoder.go",
|
||||
"path.go",
|
||||
"pathaction.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/exponent-io/jsonpath",
|
||||
importpath = "github.com/exponent-io/jsonpath",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/fatih/camelcase/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/fatih/camelcase/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["camelcase.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/fatih/camelcase",
|
||||
importpath = "github.com/fatih/camelcase",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
13
tests/smoke/vendor/github.com/ghodss/yaml/BUILD.bazel
generated
vendored
13
tests/smoke/vendor/github.com/ghodss/yaml/BUILD.bazel
generated
vendored
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"fields.go",
|
||||
"yaml.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/ghodss/yaml",
|
||||
importpath = "github.com/ghodss/yaml",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//tests/smoke/vendor/gopkg.in/yaml.v2:go_default_library"],
|
||||
)
|
||||
14
tests/smoke/vendor/github.com/go-openapi/analysis/BUILD.bazel
generated
vendored
14
tests/smoke/vendor/github.com/go-openapi/analysis/BUILD.bazel
generated
vendored
@@ -1,14 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["analyzer.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/go-openapi/analysis",
|
||||
importpath = "github.com/go-openapi/analysis",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/go-openapi/jsonpointer:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/go-openapi/spec:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/go-openapi/swag:go_default_library",
|
||||
],
|
||||
)
|
||||
10
tests/smoke/vendor/github.com/go-openapi/jsonpointer/BUILD.bazel
generated
vendored
10
tests/smoke/vendor/github.com/go-openapi/jsonpointer/BUILD.bazel
generated
vendored
@@ -1,10 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["pointer.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/go-openapi/jsonpointer",
|
||||
importpath = "github.com/go-openapi/jsonpointer",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//tests/smoke/vendor/github.com/go-openapi/swag:go_default_library"],
|
||||
)
|
||||
13
tests/smoke/vendor/github.com/go-openapi/jsonreference/BUILD.bazel
generated
vendored
13
tests/smoke/vendor/github.com/go-openapi/jsonreference/BUILD.bazel
generated
vendored
@@ -1,13 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["reference.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/go-openapi/jsonreference",
|
||||
importpath = "github.com/go-openapi/jsonreference",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/PuerkitoBio/purell:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/go-openapi/jsonpointer:go_default_library",
|
||||
],
|
||||
)
|
||||
14
tests/smoke/vendor/github.com/go-openapi/loads/BUILD.bazel
generated
vendored
14
tests/smoke/vendor/github.com/go-openapi/loads/BUILD.bazel
generated
vendored
@@ -1,14 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["spec.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/go-openapi/loads",
|
||||
importpath = "github.com/go-openapi/loads",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/go-openapi/analysis:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/go-openapi/spec:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/go-openapi/swag:go_default_library",
|
||||
],
|
||||
)
|
||||
36
tests/smoke/vendor/github.com/go-openapi/spec/BUILD.bazel
generated
vendored
36
tests/smoke/vendor/github.com/go-openapi/spec/BUILD.bazel
generated
vendored
@@ -1,36 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"bindata.go",
|
||||
"contact_info.go",
|
||||
"expander.go",
|
||||
"external_docs.go",
|
||||
"header.go",
|
||||
"info.go",
|
||||
"items.go",
|
||||
"license.go",
|
||||
"operation.go",
|
||||
"parameter.go",
|
||||
"path_item.go",
|
||||
"paths.go",
|
||||
"ref.go",
|
||||
"response.go",
|
||||
"responses.go",
|
||||
"schema.go",
|
||||
"security_scheme.go",
|
||||
"spec.go",
|
||||
"swagger.go",
|
||||
"tag.go",
|
||||
"xml_object.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/go-openapi/spec",
|
||||
importpath = "github.com/go-openapi/spec",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/go-openapi/jsonpointer:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/go-openapi/jsonreference:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/go-openapi/swag:go_default_library",
|
||||
],
|
||||
)
|
||||
21
tests/smoke/vendor/github.com/go-openapi/swag/BUILD.bazel
generated
vendored
21
tests/smoke/vendor/github.com/go-openapi/swag/BUILD.bazel
generated
vendored
@@ -1,21 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"convert.go",
|
||||
"convert_types.go",
|
||||
"json.go",
|
||||
"loading.go",
|
||||
"net.go",
|
||||
"path.go",
|
||||
"util.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/go-openapi/swag",
|
||||
importpath = "github.com/go-openapi/swag",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/mailru/easyjson/jlexer:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/mailru/easyjson/jwriter:go_default_library",
|
||||
],
|
||||
)
|
||||
33
tests/smoke/vendor/github.com/gogo/protobuf/proto/BUILD.bazel
generated
vendored
33
tests/smoke/vendor/github.com/gogo/protobuf/proto/BUILD.bazel
generated
vendored
@@ -1,33 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"clone.go",
|
||||
"decode.go",
|
||||
"decode_gogo.go",
|
||||
"duration.go",
|
||||
"duration_gogo.go",
|
||||
"encode.go",
|
||||
"encode_gogo.go",
|
||||
"equal.go",
|
||||
"extensions.go",
|
||||
"extensions_gogo.go",
|
||||
"lib.go",
|
||||
"lib_gogo.go",
|
||||
"message_set.go",
|
||||
"pointer_unsafe.go",
|
||||
"pointer_unsafe_gogo.go",
|
||||
"properties.go",
|
||||
"properties_gogo.go",
|
||||
"skip_gogo.go",
|
||||
"text.go",
|
||||
"text_gogo.go",
|
||||
"text_parser.go",
|
||||
"timestamp.go",
|
||||
"timestamp_gogo.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/gogo/protobuf/proto",
|
||||
importpath = "github.com/gogo/protobuf/proto",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/gogo/protobuf/sortkeys/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/gogo/protobuf/sortkeys/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["sortkeys.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/gogo/protobuf/sortkeys",
|
||||
importpath = "github.com/gogo/protobuf/sortkeys",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
12
tests/smoke/vendor/github.com/golang/glog/BUILD.bazel
generated
vendored
12
tests/smoke/vendor/github.com/golang/glog/BUILD.bazel
generated
vendored
@@ -1,12 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"glog.go",
|
||||
"glog_file.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/golang/glog",
|
||||
importpath = "github.com/golang/glog",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
22
tests/smoke/vendor/github.com/golang/groupcache/BUILD.bazel
generated
vendored
22
tests/smoke/vendor/github.com/golang/groupcache/BUILD.bazel
generated
vendored
@@ -1,22 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"byteview.go",
|
||||
"groupcache.go",
|
||||
"http.go",
|
||||
"peers.go",
|
||||
"sinks.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/golang/groupcache",
|
||||
importpath = "github.com/golang/groupcache",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [
|
||||
"//tests/smoke/vendor/github.com/golang/groupcache/lru:go_default_library",
|
||||
"//tests/smoke/vendor/github.com/golang/protobuf/proto:go_default_library",
|
||||
"//vendor/github.com/golang/groupcache/consistenthash:go_default_library",
|
||||
"//vendor/github.com/golang/groupcache/groupcachepb:go_default_library",
|
||||
"//vendor/github.com/golang/groupcache/singleflight:go_default_library",
|
||||
],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/golang/groupcache/lru/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/golang/groupcache/lru/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["lru.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/golang/groupcache/lru",
|
||||
importpath = "github.com/golang/groupcache/lru",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
21
tests/smoke/vendor/github.com/golang/protobuf/proto/BUILD.bazel
generated
vendored
21
tests/smoke/vendor/github.com/golang/protobuf/proto/BUILD.bazel
generated
vendored
@@ -1,21 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"clone.go",
|
||||
"decode.go",
|
||||
"encode.go",
|
||||
"equal.go",
|
||||
"extensions.go",
|
||||
"lib.go",
|
||||
"message_set.go",
|
||||
"pointer_unsafe.go",
|
||||
"properties.go",
|
||||
"text.go",
|
||||
"text_parser.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/golang/protobuf/proto",
|
||||
importpath = "github.com/golang/protobuf/proto",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
12
tests/smoke/vendor/github.com/google/gofuzz/BUILD.bazel
generated
vendored
12
tests/smoke/vendor/github.com/google/gofuzz/BUILD.bazel
generated
vendored
@@ -1,12 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"doc.go",
|
||||
"fuzz.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/google/gofuzz",
|
||||
importpath = "github.com/google/gofuzz",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
14
tests/smoke/vendor/github.com/hashicorp/golang-lru/BUILD.bazel
generated
vendored
14
tests/smoke/vendor/github.com/hashicorp/golang-lru/BUILD.bazel
generated
vendored
@@ -1,14 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"2q.go",
|
||||
"arc.go",
|
||||
"lru.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/hashicorp/golang-lru",
|
||||
importpath = "github.com/hashicorp/golang-lru",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = ["//tests/smoke/vendor/github.com/hashicorp/golang-lru/simplelru:go_default_library"],
|
||||
)
|
||||
9
tests/smoke/vendor/github.com/hashicorp/golang-lru/simplelru/BUILD.bazel
generated
vendored
9
tests/smoke/vendor/github.com/hashicorp/golang-lru/simplelru/BUILD.bazel
generated
vendored
@@ -1,9 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = ["lru.go"],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/hashicorp/golang-lru/simplelru",
|
||||
importpath = "github.com/hashicorp/golang-lru/simplelru",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
49
tests/smoke/vendor/github.com/howeyc/gopass/BUILD.bazel
generated
vendored
49
tests/smoke/vendor/github.com/howeyc/gopass/BUILD.bazel
generated
vendored
@@ -1,49 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"pass.go",
|
||||
"terminal.go",
|
||||
"terminal_solaris.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/howeyc/gopass",
|
||||
importpath = "github.com/howeyc/gopass",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = select({
|
||||
"@io_bazel_rules_go//go/platform:android": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:darwin": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:dragonfly": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:freebsd": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:linux": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:nacl": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:netbsd": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:openbsd": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:plan9": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:solaris": [
|
||||
"//tests/smoke/vendor/golang.org/x/sys/unix:go_default_library",
|
||||
],
|
||||
"@io_bazel_rules_go//go/platform:windows": [
|
||||
"//tests/smoke/vendor/golang.org/x/crypto/ssh/terminal:go_default_library",
|
||||
],
|
||||
"//conditions:default": [],
|
||||
}),
|
||||
)
|
||||
14
tests/smoke/vendor/github.com/imdario/mergo/BUILD.bazel
generated
vendored
14
tests/smoke/vendor/github.com/imdario/mergo/BUILD.bazel
generated
vendored
@@ -1,14 +0,0 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "go_default_library",
|
||||
srcs = [
|
||||
"doc.go",
|
||||
"map.go",
|
||||
"merge.go",
|
||||
"mergo.go",
|
||||
],
|
||||
importmap = "installer/tests/smoke/vendor/github.com/imdario/mergo",
|
||||
importpath = "github.com/imdario/mergo",
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user