Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Fqdn (0.19 sec)

  1. src/net/dnsclient_unix.go

    	}
    	var queryFn func(fqdn string, qtype dnsmessage.Type)
    	var responseFn func(fqdn string, qtype dnsmessage.Type) result
    	if conf.singleRequest {
    		queryFn = func(fqdn string, qtype dnsmessage.Type) {}
    		responseFn = func(fqdn string, qtype dnsmessage.Type) result {
    			dnsWaitGroup.Add(1)
    			defer dnsWaitGroup.Done()
    			p, server, err := r.tryOneName(ctx, conf, fqdn, qtype)
    			return result{p, server, err}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. pkg/test/framework/components/authz/kube.go

    }
    
    func (s *serverImpl) Providers() []Provider {
    	return append([]Provider{}, s.providers...)
    }
    
    func (s *serverImpl) templateArgs() map[string]any {
    	fqdn := fmt.Sprintf("ext-authz.%s.svc.cluster.local", s.ns.Name())
    	return map[string]any{
    		"fqdn":     fqdn,
    		"httpName": httpName,
    		"grpcName": grpcName,
    		"httpPort": httpPort,
    		"grpcPort": grpcPort,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/config/validation/agent/validation_test.go

    func TestValidateFQDN(t *testing.T) {
    	tests := []struct {
    		fqdn  string
    		valid bool
    		name  string
    	}{
    		{
    			fqdn:  strings.Repeat("x", 256),
    			valid: false,
    			name:  "long FQDN",
    		},
    		{
    			fqdn:  "",
    			valid: false,
    			name:  "empty FQDN",
    		},
    		{
    			fqdn:  "istio.io",
    			valid: true,
    			name:  "standard FQDN",
    		},
    		{
    			fqdn:  "istio.io.",
    			valid: true,
    			name:  "unambiguous FQDN",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/proxyconfig.go

    	}
    
    	clusterConfigCmd.PersistentFlags().StringVarP(&outputFormat, "output", "o", summaryOutput, "Output format: one of json|yaml|short")
    	clusterConfigCmd.PersistentFlags().StringVar(&fqdn, "fqdn", "", "Filter clusters by substring of Service FQDN field")
    	clusterConfigCmd.PersistentFlags().StringVar(&direction, "direction", "", "Filter clusters by Direction field")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  5. pilot/pkg/networking/grpcgen/lds.go

    		host, port, err := net.SplitHostPort(name)
    		hasPort := err == nil
    
    		// attempt to expand shortname to FQDN
    		requestedName := name
    		if hasPort {
    			requestedName = host
    		}
    		allNames := []string{requestedName}
    		if fqdn := tryFindFQDN(requestedName, node); fqdn != "" {
    			allNames = append(allNames, fqdn)
    		}
    
    		for _, name := range allNames {
    			ln, ok := filter[name]
    			if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/discovery/v1/types.go

    	AddressTypeIPv4 = AddressType(v1.IPv4Protocol)
    
    	// AddressTypeIPv6 represents an IPv6 Address.
    	AddressTypeIPv6 = AddressType(v1.IPv6Protocol)
    
    	// AddressTypeFQDN represents a FQDN.
    	AddressTypeFQDN = AddressType("FQDN")
    )
    
    // Endpoint represents a single logical "backend" implementing a service.
    type Endpoint struct {
    	// addresses of this endpoint. The contents of this field are interpreted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/extensionprovider_test.go

    			name:    "pure ip6 address",
    		},
    		{
    			service: "istio-pilot.istio-system.svc.cluster.local",
    			valid:   true,
    			name:    "standard kubernetes FQDN",
    		},
    		{
    			service: "istio-pilot.istio-system.svc.cluster.local:3000",
    			valid:   false,
    			name:    "standard kubernetes FQDN with port",
    		},
    		{
    			service: "bar/istio.io",
    			valid:   true,
    			name:    "extension provider service with namespace",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    		}
    	}
    	return nil
    }
    
    // ValidateFQDN checks a fully-qualified domain name
    func ValidateFQDN(fqdn string) error {
    	if err := CheckDNS1123Preconditions(fqdn); err != nil {
    		return err
    	}
    	return ValidateDNS1123Labels(fqdn)
    }
    
    // ValidateProxyAddress checks that a network address is well-formed
    func ValidateProxyAddress(hostAddr string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.proto

      // Name represents the name for the service.
      // For Kubernetes, this is the Service name.
      string name = 1;
      // Namespace represents the namespace for the service.
      string namespace = 2;
      // Hostname represents the FQDN of the service.
      // For Kubernetes, this would be <name>.<namespace>.svc.<cluster domain>.
      // TODO: support this field
      string hostname = 3;
      // Address represents the addresses the service can be reached at.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    		d := d
    		if len(d) == 0 {
    			continue
    		}
    
    		fqdn := d[0].Config().ClusterLocalFQDN()
    		cases = append(cases, TrafficTestCase{
    			name: d[0].Config().Service,
    			// This creates a Gateway with a TCP listener that will accept TCP traffic from host
    			// `fqdn` and forward that traffic back to `fqdn`, from srcPort to targetPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top