Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
22c3a590
Commit
22c3a590
authored
Jul 26, 2017
by
Manjunath A Kumatagi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bazel
parent
87e23212
Hide whitespace changes
Inline
Side-by-side
Showing
21 changed files
with
48 additions
and
0 deletions
+48
-0
.golint_failures
hack/.golint_failures
+1
-0
BUILD
test/e2e/BUILD
+1
-0
BUILD
test/e2e/apimachinery/BUILD
+1
-0
BUILD
test/e2e/apps/BUILD
+1
-0
BUILD
test/e2e/auth/BUILD
+1
-0
BUILD
test/e2e/common/BUILD
+1
-0
BUILD
test/e2e/framework/BUILD
+1
-0
BUILD
test/e2e/instrumentation/logging/BUILD
+1
-0
BUILD
test/e2e/kubectl/BUILD
+1
-0
BUILD
test/e2e/lifecycle/BUILD
+1
-0
BUILD
test/e2e/network/BUILD
+1
-0
BUILD
test/e2e/node/BUILD
+1
-0
BUILD
test/e2e/scheduling/BUILD
+1
-0
BUILD
test/e2e/servicecatalog/BUILD
+1
-0
BUILD
test/e2e/storage/BUILD
+1
-0
BUILD
test/e2e/upgrades/BUILD
+1
-0
BUILD
test/e2e/upgrades/apps/BUILD
+1
-0
BUILD
test/e2e_federation/BUILD
+1
-0
BUILD
test/e2e_node/BUILD
+2
-0
BUILD
test/utils/BUILD
+1
-0
BUILD
test/utils/image/BUILD
+27
-0
No files found.
hack/.golint_failures
View file @
22c3a590
...
...
@@ -854,3 +854,4 @@ test/integration/scheduler_perf
test/integration/volume
test/list
test/utils
test/utils/image
test/e2e/BUILD
View file @
22c3a590
...
...
@@ -67,6 +67,7 @@ go_library(
"//test/e2e/manifest:go_default_library",
"//test/e2e_federation:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/golang/glog:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/ginkgo/config:go_default_library",
...
...
test/e2e/apimachinery/BUILD
View file @
22c3a590
...
...
@@ -28,6 +28,7 @@ go_library(
"//test/e2e/framework:go_default_library",
"//test/e2e/framework/metrics:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/k8s.io/api/admissionregistration/v1alpha1:go_default_library",
...
...
test/e2e/apps/BUILD
View file @
22c3a590
...
...
@@ -39,6 +39,7 @@ go_library(
"//plugin/pkg/scheduler/schedulercache:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/davecgh/go-spew/spew:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
...
...
test/e2e/auth/BUILD
View file @
22c3a590
...
...
@@ -21,6 +21,7 @@ go_library(
"//pkg/util/version:go_default_library",
"//plugin/pkg/admission/serviceaccount:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/k8s.io/api/certificates/v1beta1:go_default_library",
...
...
test/e2e/common/BUILD
View file @
22c3a590
...
...
@@ -43,6 +43,7 @@ go_library(
"//pkg/security/apparmor:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/golang/glog:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
...
...
test/e2e/framework/BUILD
View file @
22c3a590
...
...
@@ -78,6 +78,7 @@ go_library(
"//test/e2e/manifest:go_default_library",
"//test/e2e/perftype:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/aws/aws-sdk-go/aws:go_default_library",
"//vendor/github.com/aws/aws-sdk-go/aws/awserr:go_default_library",
"//vendor/github.com/aws/aws-sdk-go/aws/session:go_default_library",
...
...
test/e2e/instrumentation/logging/BUILD
View file @
22c3a590
...
...
@@ -16,6 +16,7 @@ go_library(
"//test/e2e/instrumentation/common:go_default_library",
"//test/e2e/instrumentation/logging/elasticsearch:go_default_library",
"//test/e2e/instrumentation/logging/stackdrvier:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/k8s.io/api/core/v1:go_default_library",
...
...
test/e2e/kubectl/BUILD
View file @
22c3a590
...
...
@@ -21,6 +21,7 @@ go_library(
"//test/e2e/generated:go_default_library",
"//test/e2e/scheduling:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/elazarl/goproxy:go_default_library",
"//vendor/github.com/ghodss/yaml:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
...
...
test/e2e/lifecycle/BUILD
View file @
22c3a590
...
...
@@ -28,6 +28,7 @@ go_library(
"//test/e2e/upgrades/apps:go_default_library",
"//test/e2e/upgrades/storage:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//test/utils/junit:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
...
...
test/e2e/network/BUILD
View file @
22c3a590
...
...
@@ -41,6 +41,7 @@ go_library(
"//test/e2e/manifest:go_default_library",
"//test/images/net/nat:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/google.golang.org/api/compute/v0.alpha:go_default_library",
...
...
test/e2e/node/BUILD
View file @
22c3a590
...
...
@@ -21,6 +21,7 @@ go_library(
"//test/e2e/common:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/google/cadvisor/info/v1:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
...
...
test/e2e/scheduling/BUILD
View file @
22c3a590
...
...
@@ -27,6 +27,7 @@ go_library(
"//test/e2e/common:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/github.com/stretchr/testify/assert:go_default_library",
...
...
test/e2e/servicecatalog/BUILD
View file @
22c3a590
...
...
@@ -9,6 +9,7 @@ go_library(
visibility = ["//visibility:public"],
deps = [
"//test/e2e/framework:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/k8s.io/api/core/v1:go_default_library",
...
...
test/e2e/storage/BUILD
View file @
22c3a590
...
...
@@ -39,6 +39,7 @@ go_library(
"//pkg/volume/util/volumehelper:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/e2e/generated:go_default_library",
"//test/utils/image:go_default_library",
"//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",
...
...
test/e2e/upgrades/BUILD
View file @
22c3a590
...
...
@@ -26,6 +26,7 @@ go_library(
"//pkg/util/version:go_default_library",
"//test/e2e/common:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/github.com/onsi/gomega/gstruct:go_default_library",
...
...
test/e2e/upgrades/apps/BUILD
View file @
22c3a590
...
...
@@ -19,6 +19,7 @@ go_library(
"//pkg/util/version:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/e2e/upgrades:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/k8s.io/api/apps/v1beta1:go_default_library",
...
...
test/e2e_federation/BUILD
View file @
22c3a590
...
...
@@ -35,6 +35,7 @@ go_library(
"//test/e2e/framework:go_default_library",
"//test/e2e_federation/framework:go_default_library",
"//test/e2e_federation/upgrades:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
"//vendor/k8s.io/api/batch/v1:go_default_library",
...
...
test/e2e_node/BUILD
View file @
22c3a590
...
...
@@ -37,6 +37,7 @@ go_library(
"//test/e2e/common:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/e2e/framework/metrics:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/blang/semver:go_default_library",
"//vendor/github.com/coreos/go-systemd/util:go_default_library",
"//vendor/github.com/docker/docker/client:go_default_library",
...
...
@@ -128,6 +129,7 @@ go_test(
"//test/e2e/framework:go_default_library",
"//test/e2e_node/services:go_default_library",
"//test/e2e_node/system:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/coreos/go-systemd/util:go_default_library",
"//vendor/github.com/davecgh/go-spew/spew:go_default_library",
"//vendor/github.com/golang/glog:go_default_library",
...
...
test/utils/BUILD
View file @
22c3a590
...
...
@@ -58,6 +58,7 @@ filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//test/utils/image:all-srcs",
"//test/utils/junit:all-srcs",
],
tags = ["automanaged"],
...
...
test/utils/image/BUILD
0 → 100644
View file @
22c3a590
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
go_library(
name = "go_default_library",
srcs = ["manifest.go"],
tags = ["automanaged"],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment