Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for discoveryAddress (0.2 sec)

  1. pilot/pkg/bootstrap/server_test.go

    }
    
    func TestGetDNSNames(t *testing.T) {
    	tests := []struct {
    		name             string
    		customHost       string
    		discoveryAddress string
    		revision         string
    		sans             []string
    	}{
    		{
    			name:             "no customHost",
    			customHost:       "",
    			discoveryAddress: "istiod.istio-system.svc.cluster.local",
    			revision:         "default",
    			sans: []string{
    				"istio-pilot.istio-system.svc",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    	return e.pushContext
    }
    
    // GetDiscoveryAddress parses the DiscoveryAddress specified via MeshConfig.
    func (e *Environment) GetDiscoveryAddress() (host.Name, string, error) {
    	proxyConfig := mesh.DefaultProxyConfig()
    	if e.Mesh().DefaultConfig != nil {
    		proxyConfig = e.Mesh().DefaultConfig
    	}
    	hostname, port, err := net.SplitHostPort(proxyConfig.DiscoveryAddress)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. pkg/istio-agent/agent.go

    		return err
    	}
    
    	_, err = grpcxds.GenerateBootstrapFile(grpcxds.GenerateBootstrapOptions{
    		Node:             node,
    		XdsUdsPath:       a.cfg.XdsUdsPath,
    		DiscoveryAddress: a.proxyConfig.DiscoveryAddress,
    		CertDir:          a.secOpts.OutputKeyCertToDir,
    	}, a.cfg.GRPCBootstrapPath)
    	if err != nil {
    		return err
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    				Tracing: &meshconfig.Tracing{
    					CustomTags:       tc.in.CustomTags,
    					MaxPathTagLength: tc.in.MaxPathTagLength,
    					Sampling:         tc.in.Sampling,
    				},
    				DiscoveryAddress: "istiod.istio-system.svc:15012",
    			}
    			listeners := buildListeners(t, TestOptions{MeshConfig: m}, nil)
    			httpProxy := xdstest.ExtractListener("127.0.0.1_15007", listeners)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top