Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for discovery_address (0.3 sec)

  1. pilot/pkg/networking/grpcgen/grpcgen_test.go

    			Metadata: &model.BootstrapNodeMetadata{
    				NodeMetadata: model.NodeMetadata{
    					Namespace: namespace,
    					Generator: "grpc",
    					ClusterID: constants.DefaultClusterName,
    				},
    			},
    		},
    		DiscoveryAddress: fmt.Sprintf("127.0.0.1:%d", xdsPort),
    		CertDir:          path.Join(env.IstioSrc, "tests/testdata/certs/default"),
    	})
    	if err != nil {
    		return []byte{}
    	}
    	bootstrapBytes, err := json.Marshal(bootstrap)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_test.go

    func setupXdsProxyWithDownstreamOptions(t *testing.T, opts []grpc.ServerOption) *XdsProxy {
    	secOpts := &security.Options{
    		FileMountedCerts: true,
    	}
    	proxyConfig := mesh.DefaultProxyConfig()
    	proxyConfig.DiscoveryAddress = "buffcon"
    
    	// While the actual test runs on plain text, these are setup to build the default dial options
    	// with out these it looks for default cert location and fails.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/istio-agent/agent_test.go

    		DNSDomain:   "fake-namespace.svc.cluster.local",
    		Type:        model.SidecarProxy,
    		IPAddresses: []string{"127.0.0.1"},
    	}
    	resp.ProxyConfig = mesh.DefaultProxyConfig()
    	resp.ProxyConfig.DiscoveryAddress = setupDiscovery(t, resp.XdsAuthenticator, ca.KeyCertBundle.GetRootCertPem(), resp.bootstrapGenerator)
    	rootCert := filepath.Join(env.IstioSrc, "./tests/testdata/certs/pilot/root-cert.pem")
    	resp.AgentConfig = AgentOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. pkg/adsc/adsc.go

    	// For getting the certificate, using same code as SDS server.
    	// Either the JWTPath or the certs must be present.
    	JWTPath string
    
    	// XDSSAN is the expected SAN of the XDS server. If not set, the ProxyConfig.DiscoveryAddress is used.
    	XDSSAN string
    
    	// XDSRootCAFile explicitly set the root CA to be used for the XDS connection.
    	// Mirrors Envoy file.
    	XDSRootCAFile string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top