Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 105 for FQDN (0.04 sec)

  1. pkg/config/validation/validation_test.go

    			valid: false,
    		},
    		{
    			name:  "valid FQDN",
    			in:    &networking.WorkloadEntry{Address: "validdns.com", Ports: map[string]uint32{"7777": 7777}},
    			valid: true,
    		},
    		{
    			name:  "invalid FQDN",
    			in:    &networking.WorkloadEntry{Address: "invaliddns.com:9443", Ports: map[string]uint32{"7777": 7777}},
    			valid: false,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/dns/client/dns.go

    	// for hosts that will never resolve (e.g., AAAA for svc1.ns1.svc.cluster.local.svc.cluster.local.)
    	allHosts sets.String
    
    	// The key is a FQDN matching a DNS query (like example.com.), the value is pre-created DNS RR records
    	// of A or AAAA type as appropriate.
    	name4 map[string][]dns.RR
    	name6 map[string][]dns.RR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    			errs = AppendValidation(errs, fmt.Errorf("endpoint address %q is not a valid IP address", addr))
    		} else if err := agent.ValidateFQDN(addr); err != nil { // Otherwise could be an FQDN
    			errs = AppendValidation(errs, fmt.Errorf("endpoint address %q is not a valid FQDN or an IP address", addr))
    		}
    	}
    
    	for name, port := range we.Ports {
    		if servicePorts != nil && !servicePorts.Contains(name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. src/net/http/socks_bundle.go

    			b = append(b, socksAddrTypeIPv6)
    			b = append(b, ip6...)
    		} else {
    			return nil, errors.New("unknown address type")
    		}
    	} else {
    		if len(host) > 255 {
    			return nil, errors.New("FQDN too long")
    		}
    		b = append(b, socksAddrTypeFQDN)
    		b = append(b, byte(len(host)))
    		b = append(b, host...)
    	}
    	b = append(b, byte(port>>8), byte(port))
    	if _, ctxErr = c.Write(b); ctxErr != nil {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute.go

    	temp := domains[:0]
    	for _, d := range domains {
    		if vhdomains.Contains(strings.ToLower(d)) {
    			continue
    		}
    		// Check if the domain is an "expanded" host, and its also a known FQDN
    		// This prevents a case where a domain like "foo.com.cluster.local" gets expanded to "foo.com", overwriting
    		// the real "foo.com"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/network.go

    	// This is defined by a topology.istio.io/network label on the system namespace.
    	network network.ID
    	// Network name for the registry as specified by the MeshNetworks configmap
    	networkFromMeshConfig network.ID
    	// map of svc fqdn to partially built network gateways; the actual gateways will be built from these into networkGatewaysBySvc
    	// this map just enumerates which networks/ports each Service is a gateway for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

            host: concrete.default.svc.cluster.local`,
    		kubeConfig: service,
    		calls: []simulation.Expect{
    			{
    				// This work, Host is just an opaque hostname match
    				Name: "HTTP virtual service applies to alias fqdn",
    				Call: simulation.Call{Address: "1.2.3.4", Port: 80, Protocol: simulation.HTTP, HostHeader: "alias.default.svc.cluster.local", Path: "/one"},
    				Result: simulation.Result{
    					RouteMatched:   "route1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/network.go

    	var out []string
    	errs := istiomultierror.New()
    
    	var mu sync.Mutex
    	var wg sync.WaitGroup
    	doResolve := func(dnsType uint16) {
    		defer wg.Done()
    
    		res := n.client.Query(new(dns.Msg).SetQuestion(dns.Fqdn(name), dnsType))
    
    		mu.Lock()
    		defer mu.Unlock()
    		if res.Rcode == dns.RcodeServerFailure {
    			errs = multierror.Append(errs, fmt.Errorf("upstream dns failure, qtype: %v", dnsType))
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	var endpoints []*model.IstioEndpoint
    	if slice.AddressType == v1.AddressTypeFQDN {
    		// TODO(https://github.com/istio/istio/issues/34995) support FQDN endpointslice
    		return
    	}
    	svc := esc.c.GetService(hostName)
    	discoverabilityPolicy := esc.c.exports.EndpointDiscoverabilityPolicy(svc)
    
    	for _, e := range slice.Endpoints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. pkg/registry/discovery/endpointslice/strategy_test.go

    }
    
    func TestWarningsOnEndpointSliceAddressType(t *testing.T) {
    	tests := []struct {
    		name        string
    		addressType discovery.AddressType
    		wantWarning bool
    	}{
    		{
    			name:        "AddressType = FQDN",
    			addressType: discovery.AddressTypeFQDN,
    			wantWarning: true,
    		},
    		{
    			name:        "AddressType = IPV4",
    			addressType: discovery.AddressTypeIPv4,
    			wantWarning: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
Back to top