Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SetupForDestination (0.25 sec)

  1. pkg/test/framework/components/echo/echotest/setup.go

    func (t *T) SetupForServicePair(setupFn svcPairSetupFn) *T {
    	t.deploymentPairSetup = append(t.deploymentPairSetup, setupFn)
    	return t
    }
    
    // SetupForDestination is run each time the destination Service (but not destination cluster) changes.
    func (t *T) SetupForDestination(setupFn dstSetupFn) *T {
    	t.destinationDeploymentSetup = append(t.destinationDeploymentSetup, setupFn)
    	return t
    }
    
    func (t *T) hasDestinationSetup() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. tests/integration/security/sds_ingress/ingress_test.go

    				host     = "testsingletlsgateway-secretrotation.example.com"
    			)
    			allInstances := []echo.Instances{ingressutil.A, ingressutil.VM}
    			for _, instances := range allInstances {
    				echotest.New(t, instances).
    					SetupForDestination(func(t framework.TestContext, to echo.Target) error {
    						ingressutil.SetupConfig(t, echo1NS, ingressutil.TestConfig{
    							Mode:           "SIMPLE",
    							CredentialName: credName,
    							Host:           host,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. tests/integration/security/https_jwt/https_jwt_test.go

    							}))
    					},
    				},
    			}
    
    			for _, c := range cases {
    				t.NewSubTest(c.name).Run(func(t framework.TestContext) {
    					echotest.New(t, apps.All.Instances()).
    						SetupForDestination(func(t framework.TestContext, to echo.Target) error {
    							args := map[string]string{
    								"Namespace": ns.Name(),
    								"dst":       to.Config().Service,
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tests/integration/security/remote_jwks/remote_jwks_test.go

    						)
    					},
    				},
    			}
    
    			for _, c := range cases {
    				t.NewSubTest(c.name).Run(func(t framework.TestContext) {
    					echotest.New(t, apps.All.Instances()).
    						SetupForDestination(func(t framework.TestContext, to echo.Target) error {
    							args := map[string]string{
    								"Namespace": ns.Name(),
    								"dst":       to.Config().Service,
    								"delay":     c.delay,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. tests/integration/security/sds_ingress/util/util.go

    func RunTestMultiMtlsGateways(ctx framework.TestContext, inst istio.Instance, ns namespace.Getter) { // nolint:interfacer
    	var credNames []string
    	var tests []TestConfig
    	echotest.New(ctx, A).
    		SetupForDestination(func(ctx framework.TestContext, to echo.Target) error {
    			for i := 1; i < 6; i++ {
    				cred := fmt.Sprintf("runtestmultimtlsgateways-%d", i)
    				tests = append(tests, TestConfig{
    					Mode:           "MUTUAL",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
Back to top