Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 88 for FQDN (0.03 sec)

  1. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: reviews-fqdn
      namespace: default
    spec:
      http:
      - route:
        - destination:
            host: reviews.default.svc.cluster.local # FQDN representation is valid and should not generate an error
            subset: v1
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/net/dnsconfig_unix_test.go

    		longName := longDomain[len(longDomain)-254+1+shortestSuffix:]
    		if longName[0] == '.' || longName[1] == '.' {
    			longName = "aa." + longName[3:]
    		}
    		for _, fqdn := range conf.nameList(longName) {
    			if len(fqdn) > 254 {
    				t.Errorf("got %d; want less than or equal to 254", len(fqdn))
    			}
    		}
    
    		// Now test a name that's too long for suffixing.
    		unsuffixable := "a." + longName[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/network_test.go

    			t.Fatalf("expected no gateways")
    		}
    	})
    }
    
    type fakeDNSServer struct {
    	*dns.Server
    	ttl     uint32
    	failure bool
    
    	mu sync.Mutex
    	// map fqdn hostname -> successful query count
    	hosts map[string]int
    }
    
    func newFakeDNSServer(ttl uint32, hosts sets.String) *fakeDNSServer {
    	var wg sync.WaitGroup
    	wg.Add(1)
    	s := &fakeDNSServer{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    Istio Version:       1.21.0-1226
    Istio Proxy Version: ee85c5f28702f00621aed895915fca565796b9e4
    Envoy Version:       0.0.0
    
    NAME                                                                SERVICE FQDN                          PORT     SUBSET     DIRECTION       TYPE       DESTINATION RULE
    cluster/agent                                                       cluster/agent                         -        -          -               STATIC     
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pkg/test/framework/components/jwt/kube.go

    	ns namespace.Instance
    }
    
    func (s *serverImpl) FQDN() string {
    	return fmt.Sprintf("%s.%s.svc.cluster.local", serviceName, s.ns.Name())
    }
    
    func (s *serverImpl) HTTPPort() int {
    	return httpPort
    }
    
    func (s *serverImpl) HTTPSPort() int {
    	return httpsPort
    }
    
    func (s *serverImpl) JwksURI() string {
    	uri := fmt.Sprintf("http://%s:%d/jwks", s.FQDN(), s.HTTPPort())
    	return uri
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/names.go

    //
    // ensure signerName is of the form domain.com/something and up to 571 characters.
    // This length and format is specified to accommodate signerNames like:
    // <fqdn>/<resource-namespace>.<resource-name>.
    // The max length of a FQDN is 253 characters (DNS1123Subdomain max length)
    // The max length of a namespace name is 63 characters (DNS1123Label max length)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. 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)
  8. pkg/apis/discovery/types.go

    	AddressTypeIPv4 = AddressType(api.IPv4Protocol)
    	// AddressTypeIPv6 represents an IPv6 Address.
    	AddressTypeIPv6 = AddressType(api.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: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/discovery/v1beta1/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: Sun Sep 17 09:26:19 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  10. 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)
Back to top