mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-04 04:08:16 +00:00 
			
		
		
		
	Rolling back network policy tests
This commit is contained in:
		@@ -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",
 | 
			
		||||
 
 | 
			
		||||
@@ -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",
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2387
									
								
								test/e2e/network/netpol/network_legacy.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2387
									
								
								test/e2e/network/netpol/network_legacy.go
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							
							
								
								
									
										22
									
								
								test/e2e/network/network_policy.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								test/e2e/network/network_policy.go
									
									
									
									
									
										Normal 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"
 | 
			
		||||
)
 | 
			
		||||
		Reference in New Issue
	
	Block a user