Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SingleNamespaceView (0.16 sec)

  1. pkg/test/framework/components/echo/common/deployment/echos.go

    	t.Helper()
    	out, err := New(ctx, cfg)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return out
    }
    
    // SingleNamespaceView converts this Echos into a SingleNamespaceView.
    func (e *Echos) SingleNamespaceView() SingleNamespaceView {
    	return SingleNamespaceView{
    		EchoNamespace: e.NS[0],
    		External:      e.External,
    		All:           e.NS[0].All.Append(e.External.All.Services()),
    		echos:         e,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K 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/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)
  4. 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)
  5. 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