Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DNSAutoAllocate (0.3 sec)

  1. pkg/model/proxy.go

    	DNSCapture StringBool `json:"DNS_CAPTURE,omitempty"`
    
    	// DNSAutoAllocate indicates whether the workload should have auto allocated addresses for ServiceEntry
    	// This allows resolving ServiceEntries, which is especially useful for distinguishing TCP traffic
    	// This depends on DNSCapture.
    	DNSAutoAllocate StringBool `json:"DNS_AUTO_ALLOCATE,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute.go

    			ClusterID:               string(node.Metadata.ClusterID),
    			DNSDomain:               node.DNSDomain,
    			DNSCapture:              bool(node.Metadata.DNSCapture),
    			DNSAutoAllocate:         bool(node.Metadata.DNSAutoAllocate),
    			AllowAny:                util.IsAllowAnyOutbound(node),
    			ListenerPort:            listenerPort,
    			Services:                services,
    			VirtualServices:         virtualServices,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. pilot/pkg/xds/bench_test.go

    	}
    
    	key := &route.Cache{
    		RouteName:        "something",
    		ClusterID:        "my-cluster",
    		DNSDomain:        "some.domain.example.com",
    		DNSCapture:       true,
    		DNSAutoAllocate:  false,
    		ListenerPort:     1234,
    		Services:         services,
    		DestinationRules: drs,
    		EnvoyFilterKeys:  []string{ns + "1/a", ns + "2/b", ns + "3/c"},
    	}
    	return key
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/service.go

    			addresses := s.ClusterVIPs.GetAddressesFor(node.Metadata.ClusterID)
    			if len(addresses) > 0 {
    				return addresses[0]
    			}
    		}
    
    		if node.Metadata.DNSCapture && node.Metadata.DNSAutoAllocate && s.DefaultAddress == constants.UnspecifiedIP {
    			if node.SupportsIPv4() && s.AutoAllocatedIPv4Address != "" {
    				return s.AutoAllocatedIPv4Address
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top