Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for dns_lookup_family (0.29 sec)

  1. pkg/bootstrap/testdata/tracing_datadog_golden.json

              }
            }
          }
          
          ,
          {
            "name": "datadog_agent",
            "connect_timeout": "1s",
            "type": "STRICT_DNS",
            "respect_dns_ttl": true,
            "dns_lookup_family": "V4_ONLY",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "datadog_agent",
              "endpoints": [{
                "lb_endpoints": [{
                  "endpoint": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/metrics_no_statsd_golden.json

            "respect_dns_ttl": true,
            "dns_lookup_family": "V4_ONLY",
            "connect_timeout": "1s",
            "lb_policy": "ROUND_ROBIN",
            "typed_extension_protocol_options": {
              "envoy.extensions.upstreams.http.v3.HttpProtocolOptions": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. pkg/bootstrap/testdata/running_golden.json

               }
              }
            }
          }
          
          ,
          {
            "name": "zipkin",
            "type": "STRICT_DNS",
            "respect_dns_ttl": true,
            "dns_lookup_family": "V4_ONLY",
            "dns_refresh_rate": "30s",
            "connect_timeout": "1s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "zipkin",
              "endpoints": [{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. pkg/bootstrap/testdata/runningsds_golden.json

               }
              }
            }
          }
          
          ,
          {
            "name": "zipkin",
            "type": "STRICT_DNS",
            "respect_dns_ttl": true,
            "dns_lookup_family": "V4_ONLY",
            "dns_refresh_rate": "30s",
            "connect_timeout": "1s",
            "lb_policy": "ROUND_ROBIN",
            "load_assignment": {
              "cluster_name": "zipkin",
              "endpoints": [{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. pkg/bootstrap/option/instances.go

    	return newOption("additional_wildcard", value)
    }
    
    func DualStack(value bool) Instance {
    	return newOption("dual_stack", value)
    }
    
    func DNSLookupFamily(value DNSLookupFamilyValue) Instance {
    	return newOption("dns_lookup_family", value)
    }
    
    func OutlierLogPath(value string) Instance {
    	return newOptionOrSkipIfZero("outlier_log_path", value)
    }
    
    func ApplicationLogJSON(value bool) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/tracing_lightstep_golden.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. pkg/bootstrap/testdata/tracing_tls_golden.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_tls_custom_sni_golden.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    	}
    	sidecarInboundServiceOut := []*cluster.Cluster{
    		{
    			Name: "inbound|7443||", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    			DnsLookupFamily: cluster.Cluster_V6_ONLY, LbPolicy: cluster.Cluster_RING_HASH,
    		},
    	}
    
    	gatewayInput := []*cluster.Cluster{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pkg/bootstrap/config.go

    			option.Localhost(option.LocalhostIPv4),
    			option.Wildcard(option.WildcardIPv4),
    			option.DNSLookupFamily(option.DNSLookupFamilyIPv4))
    	} else if network.AllIPv6(cfg.Metadata.InstanceIPs) {
    		// IPv6 only
    		opts = append(opts,
    			option.Localhost(option.LocalhostIPv6),
    			option.Wildcard(option.WildcardIPv6),
    			option.DNSLookupFamily(option.DNSLookupFamilyIPv6))
    	} else {
    		// Dual Stack
    		if features.EnableDualStack {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top