Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CreateCustomInstances (0.25 sec)

  1. tests/integration/security/ca_custom_root/main_test.go

    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    			return createCustomInstances(&apps)
    		}).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	// Add alternate root certificate to list of trusted anchors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tests/integration/security/filebased_tls_origination/main_test.go

    			Namespaces: []namespace.Getter{
    				namespace.Future(&appNS),
    				namespace.Future(&serviceNS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    			return createCustomInstances(&apps)
    		}).
    		Run()
    }
    
    func setupConfig(ctx resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.ControlPlaneValues = tmpl.MustEvaluate(`
    {{- if not .isExternalControlPlane }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. tests/integration/security/sds_ingress/quic/ingress_test.go

    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    			return ingressutil.CreateCustomInstances(&apps)
    		}).
    		Run()
    }
    
    // TestTlsGatewaysWithQUIC deploys multiple TLS gateways with SDS enabled, and creates kubernetes that store
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. tests/integration/security/file_mounted_certs/main_test.go

    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    			return createCustomInstances(&apps)
    		}).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    
    	cfg.ControlPlaneValues = `
    components:
      egressGateways:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. tests/integration/security/cacert_rotation/main_test.go

    		Setup(istio.Setup(nil, setupConfig, cert.CreateCASecret)).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{})).
    		Setup(func(ctx resource.Context) error {
    			return reachability.CreateCustomInstances(&apps)
    		}).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfgYaml := `
    values:
      pilot:
        env:
          ISTIO_MULTIROOT_MESH: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. 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]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  7. tests/integration/security/sds_ingress/util/util.go

    						SendQUICRequestsOrFail(t, ing, h.Host, h.CredentialName, callType, tlsContext,
    							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]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  8. tests/integration/security/sds_ingress/ingress_test.go

    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    			return ingressutil.CreateCustomInstances(&apps)
    		}).
    		Run()
    }
    
    // TestSingleTlsGateway_SecretRotation tests a single TLS ingress gateway with SDS enabled.
    // Verifies behavior in these scenarios.
    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