Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for CreateCustomInstances (7.54 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/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