Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for SingleNamespaceView (0.29 sec)

  1. tests/integration/pilot/cni/cniversionskew_test.go

    	"istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/tests/integration/pilot/common"
    )
    
    var (
    	i istio.Instance
    
    	apps = deployment.SingleNamespaceView{}
    )
    
    const (
    	// TODO: replace this with official 1.11 release once available.
    	NMinusOne    = "1.11.0-beta.1"
    	CNIConfigDir = "tests/integration/pilot/testdata/upgrade"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. tests/integration/security/file_mounted_certs/main_test.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	inst         istio.Instance
    	apps         deployment.SingleNamespaceView
    	client       echo.Instances
    	server       echo.Instances
    	echo1NS      namespace.Instance
    	customConfig []echo.Config
    )
    
    const (
    	PilotCertsPath  = "tests/testdata/certs/pilot"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. tests/integration/ambient/cnirepair/main_test.go

    		Run(func(t framework.TestContext) {
    			apps := common_deploy.NewOrFail(t, t, common_deploy.Config{
    				NoExternalNamespace: true,
    				IncludeExtAuthz:     false,
    			})
    			common.RunAllTrafficTests(t, i, apps.SingleNamespaceView())
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tests/integration/security/external_ca/main_test.go

    	"istio.io/istio/pkg/test/framework/components/istio"
    	"istio.io/istio/pkg/test/framework/label"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/tmpl"
    )
    
    var (
    	apps     deployment.SingleNamespaceView
    	stopChan = make(chan struct{})
    )
    
    func TestMain(m *testing.M) {
    	// Integration test for testing interoperability with external CA's that are integrated with K8s CSR API
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/setup_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    )
    
    const (
    	DefaultBucketCount = 20
    )
    
    var (
    	apps cdeployment.SingleNamespaceView
    
    	mockProm echo.Instances
    	ist      istio.Instance
    	promInst prometheus.Instance
    	ingr     []ingress.Instance
    )
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/traffic.go

    }
    
    func skipAmbient(t framework.TestContext, reason string) skip {
    	return skip{skip: t.Settings().Ambient, reason: reason}
    }
    
    func RunAllTrafficTests(t framework.TestContext, i istio.Instance, apps deployment.SingleNamespaceView) {
    	RunCase := func(name string, f func(t TrafficContext)) {
    		t.NewSubTest(name).Run(func(t framework.TestContext) {
    			f(TrafficContext{TestContext: t, Apps: apps, Istio: i})
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. tests/integration/security/cacert_rotation/main_test.go

    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/tests/integration/security/util/cert"
    	"istio.io/istio/tests/integration/security/util/reachability"
    )
    
    var apps deployment.SingleNamespaceView
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(nil, setupConfig, cert.CreateCASecret)).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. tests/integration/security/util/reachability/context.go

    func isNakedToVM(from echo.Instance, to echo.Target) bool {
    	return from.Config().IsNaked() && to.Config().IsVM()
    }
    
    func CreateCustomInstances(apps *deployment.SingleNamespaceView) error {
    	for index, namespacedName := range apps.EchoNamespace.All.NamespacedNames() {
    		switch {
    		case namespacedName.Name == ASvc:
    			A = apps.EchoNamespace.All[index]
    		case namespacedName.Name == BSvc:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  9. tests/integration/security/sds_ingress/util/util.go

    							ExpectedResponse{StatusCode: http.StatusOK})
    					})
    				}
    			})
    	}
    }
    
    func CreateCustomInstances(apps *deployment.SingleNamespaceView) error {
    	for index, namespacedName := range apps.EchoNamespace.All.NamespacedNames() {
    		switch {
    		case namespacedName.Name == "a":
    			A = apps.EchoNamespace.All[index]
    		case namespacedName.Name == "vm":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. tests/integration/security/sds_ingress/ingress_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    	ingressutil "istio.io/istio/tests/integration/security/sds_ingress/util"
    )
    
    var (
    	inst         istio.Instance
    	apps         deployment.SingleNamespaceView
    	echo1NS      namespace.Instance
    	customConfig []echo.Config
    )
    
    func TestMain(m *testing.M) {
    	// Integration test for the ingress SDS Gateway flow.
    	framework.
    		NewSuite(m).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top