mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 06:27:05 +00:00
Merge pull request #64112 from BenTheElder/stackdrvier
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. correct test logging package stackdrvier -> stackdriver **What this PR does / why we need it**: corrects the name of the stackdriver logging test package **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
This commit is contained in:
commit
7136cbce50
@ -16,7 +16,7 @@ go_library(
|
|||||||
"//test/e2e/framework:go_default_library",
|
"//test/e2e/framework:go_default_library",
|
||||||
"//test/e2e/instrumentation/common:go_default_library",
|
"//test/e2e/instrumentation/common:go_default_library",
|
||||||
"//test/e2e/instrumentation/logging/elasticsearch:go_default_library",
|
"//test/e2e/instrumentation/logging/elasticsearch:go_default_library",
|
||||||
"//test/e2e/instrumentation/logging/stackdrvier:go_default_library",
|
"//test/e2e/instrumentation/logging/stackdriver:go_default_library",
|
||||||
"//vendor/github.com/onsi/ginkgo:go_default_library",
|
"//vendor/github.com/onsi/ginkgo:go_default_library",
|
||||||
"//vendor/github.com/onsi/gomega:go_default_library",
|
"//vendor/github.com/onsi/gomega:go_default_library",
|
||||||
"//vendor/k8s.io/api/core/v1:go_default_library",
|
"//vendor/k8s.io/api/core/v1:go_default_library",
|
||||||
@ -35,7 +35,7 @@ filegroup(
|
|||||||
srcs = [
|
srcs = [
|
||||||
":package-srcs",
|
":package-srcs",
|
||||||
"//test/e2e/instrumentation/logging/elasticsearch:all-srcs",
|
"//test/e2e/instrumentation/logging/elasticsearch:all-srcs",
|
||||||
"//test/e2e/instrumentation/logging/stackdrvier:all-srcs",
|
"//test/e2e/instrumentation/logging/stackdriver:all-srcs",
|
||||||
"//test/e2e/instrumentation/logging/utils:all-srcs",
|
"//test/e2e/instrumentation/logging/utils:all-srcs",
|
||||||
],
|
],
|
||||||
tags = ["automanaged"],
|
tags = ["automanaged"],
|
||||||
|
@ -18,5 +18,5 @@ package logging
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
_ "k8s.io/kubernetes/test/e2e/instrumentation/logging/elasticsearch"
|
_ "k8s.io/kubernetes/test/e2e/instrumentation/logging/elasticsearch"
|
||||||
_ "k8s.io/kubernetes/test/e2e/instrumentation/logging/stackdrvier"
|
_ "k8s.io/kubernetes/test/e2e/instrumentation/logging/stackdriver"
|
||||||
)
|
)
|
||||||
|
@ -12,7 +12,7 @@ go_library(
|
|||||||
"soak.go",
|
"soak.go",
|
||||||
"utils.go",
|
"utils.go",
|
||||||
],
|
],
|
||||||
importpath = "k8s.io/kubernetes/test/e2e/instrumentation/logging/stackdrvier",
|
importpath = "k8s.io/kubernetes/test/e2e/instrumentation/logging/stackdriver",
|
||||||
deps = [
|
deps = [
|
||||||
"//test/e2e/framework:go_default_library",
|
"//test/e2e/framework:go_default_library",
|
||||||
"//test/e2e/instrumentation/common:go_default_library",
|
"//test/e2e/instrumentation/common:go_default_library",
|
Loading…
Reference in New Issue
Block a user