Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for SingleNamespaceView (0.5 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/policy_attachment_only/main_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    var (
    	// Namespaces
    	echo1NS  namespace.Instance
    	serverNS namespace.Instance
    
    	// Servers
    	apps             deployment.SingleNamespaceView
    	authzServer      authz.Server
    	localAuthzServer authz.Server
    	jwtServer        jwt.Server
    
    	i istio.Instance
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. tests/integration/ambient/traffic_test.go

    		Run(func(t framework.TestContext) {
    			apps := deployment.NewOrFail(t, t, deployment.Config{
    				NoExternalNamespace: true,
    				IncludeExtAuthz:     false,
    			})
    			common.RunAllTrafficTests(t, i, apps.SingleNamespaceView())
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/localwatcher/localsecretwatcher_test.go

    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = deployment.SingleNamespaceView{}
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireExternalControlPlaneTopology().
    		RequireMinVersion(17).
    		RequireMinClusters(2).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tests/integration/security/remote_jwks/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 (
    	ist       istio.Instance
    	apps      deployment.SingleNamespaceView
    	jwtServer jwt.Server
    	echoNS    namespace.Instance
    	systemNs  namespace.Instance
    )
    
    // remote_jwks is to test fully delegating Envoy to fetch JWKs server (PILOT_JWT_ENABLE_REMOTE_JWKS: envoy).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 01:47:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. tests/integration/security/https_jwt/main_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	ist       istio.Instance
    	apps      deployment.SingleNamespaceView
    	jwtServer jwt.Server
    	echoNS    namespace.Instance
    	systemNs  namespace.Instance
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 09:55:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. tests/integration/security/ecc_signature_algorithm/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"
    )
    
    var (
    	inst istio.Instance
    	apps deployment.SingleNamespaceView
    )
    
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		// Needed as it requires an environmental variable
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&inst, setupConfig)).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 05 22:29:44 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. tests/integration/security/ca_custom_root/main_test.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	inst              istio.Instance
    	apps              deployment.SingleNamespaceView
    	client            echo.Instances
    	server            echo.Instances
    	serverNakedFoo    echo.Instances
    	serverNakedBar    echo.Instances
    	serverNakedFooAlt echo.Instances
    	customConfig      []echo.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. tests/integration/pilot/main_test.go

    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = deployment.SingleNamespaceView{}
    )
    
    // TestMain defines the entrypoint for pilot tests using a standard Istio installation.
    // If a test requires a custom install it should go into its own package, otherwise it should go
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. tests/integration/security/sds_ingress/quic/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.
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top