Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for customConfig (0.26 sec)

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

    			err := SetupApps(ctx, namespace.Future(&echo1NS), &customConfig)
    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(func(ctx resource.Context) error {
    			config = deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    				},
    				Configs: echo.ConfigFuture(&customConfig),
    			}
    			err := addDefaultConfig(ctx, config, &customConfig)
    			if err != nil {
    				return err
    			}
    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

    			Version:     "v1",
    			Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    		}},
    		Cluster: ctx.Clusters().Default(),
    	}
    	customConfig = append(customConfig, client, server, internalClient, externalService)
    	*customCfg = customConfig
    	return nil
    }
    
    func createCustomInstances(apps *deployment.TwoNamespaceView) error {
    	for index, namespacedName := range apps.Ns1.All.NamespacedNames() {
    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/file_mounted_certs/main_test.go

    				annotation.ProxyConfig.Name: `{"controlPlaneAuthPolicy":"MUTUAL_TLS","proxyMetadata":` + strings.Replace(ProxyMetadataJSON, "\n", "", -1) + `}`,
    			},
    		}},
    	}
    	customConfig = append(customConfig, client, server)
    	*customCfg = customConfig
    	return nil
    }
    
    func createCustomInstances(apps *deployment.SingleNamespaceView) error {
    	for index, namespacedName := range apps.EchoNamespace.All.NamespacedNames() {
    		switch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. tests/integration/security/sds_ingress/quic/ingress_test.go

    			// currently VM does not work in this test
    			err := ingressutil.SetupTest(ctx, &customConfig, namespace.Future(&echo1NS))
    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{
    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. tests/integration/security/util/framework.go

    	headlessNakedSvc := EchoConfig(HeadlessNakedSvc, true, map[string]string{annotation.SidecarInject.Name: "false"})
    
    	customConfig = append(customConfig, a, b, c, d, e, multiversionCfg, nakedSvc, vmCfg, externalSvc, headlessSvc, headlessNakedSvc)
    	*customCfg = customConfig
    	return nil
    }
    
    // IsMultiversion matches instances that have Multi-version specific setup.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. tests/integration/security/sds_ingress/util/util.go

    }
    
    func SetupTest(ctx resource.Context, customCfg *[]echo.Config, customNs namespace.Getter) error {
    	var customConfig []echo.Config
    	buildVM := !ctx.Settings().Skip(echo.VM)
    	a := EchoConfig(ASvc, customNs.Get(), false)
    	vm := EchoConfig(VMSvc, customNs.Get(), buildVM)
    	customConfig = append(customConfig, a, vm)
    	*customCfg = customConfig
    	return nil
    }
    
    type TestConfig struct {
    	Mode           string
    	CredentialName string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  7. tests/integration/security/sds_ingress/ingress_test.go

    			// currently VM does not work in this test
    			err := ingressutil.SetupTest(ctx, &customConfig, namespace.Future(&echo1NS))
    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{
    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    			Configs: echo.ConfigFuture(&customConfig),
    		})).
    		Setup(func(ctx resource.Context) error {
    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