Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for V6_ONLY (0.08 sec)

  1. pkg/bootstrap/option/instances.go

    	WildcardIPv4        WildcardValue        = "0.0.0.0"
    	WildcardIPv6        WildcardValue        = "::"
    	DNSLookupFamilyIPv4 DNSLookupFamilyValue = "V4_ONLY"
    	DNSLookupFamilyIPv6 DNSLookupFamilyValue = "V6_ONLY"
    	DNSLookupFamilyIPS  DNSLookupFamilyValue = "ALL"
    )
    
    func ProxyConfig(value *model.NodeMetaProxyConfig) Instance {
    	return newOption("config", value)
    }
    
    func PilotSubjectAltName(value []string) Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    				Context: networking.EnvoyFilter_ANY,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_MERGE,
    				Value:     buildPatchStruct(`{"dns_lookup_family":"V6_ONLY"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_CLUSTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_ANY,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances_test.go

    		},
    		{
    			testName: "dns lookup family v6",
    			key:      "dns_lookup_family",
    			option:   option.DNSLookupFamily(option.DNSLookupFamilyIPv6),
    			expected: option.DNSLookupFamilyValue("V6_ONLY"),
    		},
    		{
    			testName: "dns lookup family dual stack",
    			key:      "dns_lookup_family",
    			option:   option.DNSLookupFamily(option.DNSLookupFamilyIPS),
    			expected: option.DNSLookupFamilyValue("ALL"),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top