Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 105 for Fqdn (0.8 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/registry/discovery/endpointslice/strategy.go

    		}
    	}
    	return names
    }
    
    // warnOnDeprecatedAddressType returns a warning for endpointslices with FQDN AddressType
    func warnOnDeprecatedAddressType(addressType discovery.AddressType) []string {
    	if addressType == discovery.AddressTypeFQDN {
    		return []string{fmt.Sprintf("%s: FQDN endpoints are deprecated", field.NewPath("spec").Child("addressType"))}
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/jwt/server.go

    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    )
    
    // Server for JWT tokens.
    type Server interface {
    	Namespace() namespace.Instance
    	FQDN() string
    	HTTPPort() int
    	HTTPSPort() int
    	JwksURI() string
    }
    
    // New creates a new JWT Server.
    func New(ctx resource.Context, ns namespace.Instance) (Server, error) {
    	return newKubeServer(ctx, ns)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 06 18:43:28 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top