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
ecbf9853
Commit
ecbf9853
authored
Mar 28, 2017
by
Mik Vyatskov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move cluster logging tests to a separate folder
parent
d6c5f059
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
58 additions
and
9 deletions
+58
-9
BUILD
test/e2e/BUILD
+2
-9
BUILD
test/e2e/cluster-logging/BUILD
+49
-0
OWNERS
test/e2e/cluster-logging/OWNERS
+6
-0
es.go
test/e2e/cluster-logging/es.go
+0
-0
es_utils.go
test/e2e/cluster-logging/es_utils.go
+0
-0
sd.go
test/e2e/cluster-logging/sd.go
+0
-0
sd_load.go
test/e2e/cluster-logging/sd_load.go
+0
-0
sd_utils.go
test/e2e/cluster-logging/sd_utils.go
+0
-0
utils.go
test/e2e/cluster-logging/utils.go
+0
-0
e2e_test.go
test/e2e/e2e_test.go
+1
-0
No files found.
test/e2e/BUILD
View file @
ecbf9853
...
...
@@ -14,12 +14,6 @@ go_library(
"addon_update.go",
"apparmor.go",
"cadvisor.go",
"cluster_logging_es.go",
"cluster_logging_es_utils.go",
"cluster_logging_gcl.go",
"cluster_logging_gcl_load.go",
"cluster_logging_gcl_utils.go",
"cluster_logging_utils.go",
"cluster_size_autoscaling.go",
"cluster_upgrade.go",
"cronjob.go",
...
...
@@ -172,9 +166,7 @@ go_library(
"//vendor:golang.org/x/crypto/ssh",
"//vendor:golang.org/x/net/context",
"//vendor:golang.org/x/net/websocket",
"//vendor:golang.org/x/oauth2/google",
"//vendor:google.golang.org/api/googleapi",
"//vendor:google.golang.org/api/logging/v2beta1",
"//vendor:k8s.io/apimachinery/pkg/api/errors",
"//vendor:k8s.io/apimachinery/pkg/api/resource",
"//vendor:k8s.io/apimachinery/pkg/apis/meta/v1",
...
...
@@ -201,7 +193,6 @@ go_library(
"//vendor:k8s.io/client-go/rest",
"//vendor:k8s.io/client-go/tools/cache",
"//vendor:k8s.io/client-go/util/flowcontrol",
"//vendor:k8s.io/client-go/util/integer",
],
)
...
...
@@ -221,6 +212,7 @@ go_test(
"//pkg/api/v1:go_default_library",
"//pkg/client/clientset_generated/clientset:go_default_library",
"//pkg/metrics:go_default_library",
"//test/e2e/cluster-logging:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/e2e/perf:go_default_library",
"//test/e2e/scheduling:go_default_library",
...
...
@@ -257,6 +249,7 @@ filegroup(
srcs = [
":package-srcs",
"//test/e2e/chaosmonkey:all-srcs",
"//test/e2e/cluster-logging:all-srcs",
"//test/e2e/common:all-srcs",
"//test/e2e/framework:all-srcs",
"//test/e2e/generated:all-srcs",
...
...
test/e2e/cluster-logging/BUILD
0 → 100644
View file @
ecbf9853
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
load(
"@io_bazel_rules_go//go:def.bzl",
"go_library",
)
go_library(
name = "go_default_library",
srcs = [
"es.go",
"es_utils.go",
"sd.go",
"sd_load.go",
"sd_utils.go",
"utils.go",
],
tags = ["automanaged"],
deps = [
"//pkg/api:go_default_library",
"//pkg/api/v1:go_default_library",
"//test/e2e/framework:go_default_library",
"//vendor:github.com/onsi/ginkgo",
"//vendor:github.com/onsi/gomega",
"//vendor:golang.org/x/net/context",
"//vendor:golang.org/x/oauth2/google",
"//vendor:google.golang.org/api/logging/v2beta1",
"//vendor:k8s.io/apimachinery/pkg/api/resource",
"//vendor:k8s.io/apimachinery/pkg/apis/meta/v1",
"//vendor:k8s.io/apimachinery/pkg/fields",
"//vendor:k8s.io/apimachinery/pkg/labels",
"//vendor:k8s.io/client-go/util/integer",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [":package-srcs"],
tags = ["automanaged"],
)
test/e2e/cluster-logging/OWNERS
0 → 100644
View file @
ecbf9853
reviewers:
- piosz
- crassirostris
approvers:
- piosz
- crassirostris
test/e2e/cluster
_logging_
es.go
→
test/e2e/cluster
-logging/
es.go
View file @
ecbf9853
File moved
test/e2e/cluster
_logging_
es_utils.go
→
test/e2e/cluster
-logging/
es_utils.go
View file @
ecbf9853
File moved
test/e2e/cluster
_logging_gcl
.go
→
test/e2e/cluster
-logging/sd
.go
View file @
ecbf9853
File moved
test/e2e/cluster
_logging_gcl
_load.go
→
test/e2e/cluster
-logging/sd
_load.go
View file @
ecbf9853
File moved
test/e2e/cluster
_logging_gcl
_utils.go
→
test/e2e/cluster
-logging/sd
_utils.go
View file @
ecbf9853
File moved
test/e2e/cluster
_logging_
utils.go
→
test/e2e/cluster
-logging/
utils.go
View file @
ecbf9853
File moved
test/e2e/e2e_test.go
View file @
ecbf9853
...
...
@@ -19,6 +19,7 @@ package e2e
import
(
"testing"
_
"k8s.io/kubernetes/test/e2e/cluster-logging"
"k8s.io/kubernetes/test/e2e/framework"
_
"k8s.io/kubernetes/test/e2e/perf"
_
"k8s.io/kubernetes/test/e2e/scheduling"
...
...
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