Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for FQDN (0.04 sec)

  1. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    	"endpoints":   "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1/generated.proto

      // immutable after creation. The following address types are currently
      // supported:
      // * IPv4: Represents an IPv4 Address.
      // * IPv6: Represents an IPv6 Address.
      // * FQDN: Represents a Fully Qualified Domain Name.
      optional string addressType = 4;
    
      // endpoints is a list of unique endpoints in this slice. Each slice may
      // include a maximum of 1000 endpoints.
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. tests/integration/ambient/waypoint_test.go

      annotations:
        networking.istio.io/address-type: IPAddress
        networking.istio.io/service-type: ClusterIP
    spec:
      gatewayClassName: istio
      listeners:
      - name: {{.Service}}-fqdn
        hostname: {{.Service}}.{{.Namespace}}.svc.cluster.local
        port: {{.Port}}
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: Same
      - name: {{.Service}}-svc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/memory/discovery.go

    type ServiceDiscovery struct {
    	services map[host.Name]*model.Service
    
    	handlers model.ControllerHandlers
    
    	networkGateways []model.NetworkGateway
    	model.NetworkGatewaysHandler
    
    	// EndpointShards table. Key is the fqdn of the service, ':', port
    	instancesByPortNum  map[string][]*model.ServiceInstance
    	instancesByPortName map[string][]*model.ServiceInstance
    
    	// Used by GetProxyServiceInstance, used to configure inbound (list of services per IP)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 23:10:01 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top