Rolling back network policy tests

This commit is contained in:
Amim Knabben 2021-01-27 17:34:06 -05:00
parent 77b194a5d0
commit 9a8a74f79a
4 changed files with 2414 additions and 0 deletions

View File

@ -26,6 +26,7 @@ go_library(
"ingressclass.go",
"kube_proxy.go",
"loadbalancer.go",
"network_policy.go",
"network_tiers.go",
"networking.go",
"networking_perf.go",
@ -87,6 +88,7 @@ go_library(
"//test/e2e/framework/service:go_default_library",
"//test/e2e/framework/skipper:go_default_library",
"//test/e2e/framework/ssh:go_default_library",
"//test/e2e/network/netpol:go_default_library",
"//test/e2e/network/scale:go_default_library",
"//test/e2e/storage/utils:go_default_library",
"//test/utils:go_default_library",

View File

@ -7,6 +7,7 @@ go_library(
srcs = [
"kubemanager.go",
"model.go",
"network_legacy.go",
"network_policy.go",
"network_policy_api.go",
"policies.go",
@ -27,8 +28,10 @@ go_library(
"//staging/src/k8s.io/apimachinery/pkg/watch:go_default_library",
"//staging/src/k8s.io/client-go/kubernetes:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/e2e/framework/node:go_default_library",
"//test/e2e/framework/pod:go_default_library",
"//test/e2e/framework/skipper:go_default_library",
"//test/e2e/storage/utils:go_default_library",
"//test/utils/image:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/pkg/errors:go_default_library",

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,22 @@
/*
Copyright 2021 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package network
import (
// synthetic import of netpol suite, until these tests are replaced entirely, so that its included properly
_ "k8s.io/kubernetes/test/e2e/network/netpol"
)