Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for Fqdn (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		}
    	}
    }
    
    func TestIsFullyQualifiedDomainName(t *testing.T) {
    	goodValues := []string{
    		"a.com",
    		"k8s.io",
    		"dev.k8s.io",
    		"dev.k8s.io.",
    		"foo.example.com",
    		"this.is.a.really.long.fqdn",
    		"bbc.co.uk",
    		"10.0.0.1", // DNS labels can start with numbers and there is no requirement for letters.
    		"hyphens-are-good.k8s.io",
    		strings.Repeat("a", 63) + ".k8s.io",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/calloptions.go

    }
    
    // GetHost returns the best default host for the call. Returns the first host defined from the following
    // sources (in order of precedence): Host header, target's DefaultHostHeader, Address, target's FQDN.
    func (o CallOptions) GetHost() string {
    	// First, use the host header, if specified.
    	if h := o.HTTP.Headers.Get(headers.Host); len(h) > 0 {
    		return h
    	}
    
    	// Next use the target's default, if specified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. istioctl/pkg/describe/describe.go

    	facts := []string{}
    	mismatchNotes := []string{}
    	match := false
    	for _, dest := range route.Route {
    		fqdn := string(model.ResolveShortnameToFQDN(dest.Destination.Host, config.Meta{Namespace: vs.Namespace}))
    		if extendFQDN(fqdn) == svcHost {
    			if dest.Destination.Subset != "" {
    				if slices.Contains(nonmatchingSubsets, dest.Destination.Subset) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/status.go

    			c.enqueueAll()
    		}
    	}))
    	// Mesh may have changed ingress fields, enqueue everything
    	c.meshConfig.AddMeshHandler(c.enqueueAll)
    	return c
    }
    
    // runningAddresses returns a list of IP addresses and/or FQDN in the namespace
    // where the ingress controller is currently running
    func (s *StatusSyncer) runningAddresses() []string {
    	addrs := make([]string, 0)
    	ingressService := s.meshConfig.Mesh().IngressService
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/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
    - 8K bytes
    - Viewed (0)
  9. pkg/apis/certificates/validation/validation_test.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:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/conversion.go

    			ServicePortName:       portEntry.Name,
    			Labels:                svc.Attributes.Labels,
    			DiscoverabilityPolicy: discoverabilityPolicy,
    		})
    	}
    	return out
    }
    
    // ServiceHostname produces FQDN for a k8s service
    func ServiceHostname(name, namespace, domainSuffix string) host.Name {
    	return host.Name(name + "." + namespace + "." + "svc" + "." + domainSuffix) // Format: "%s.%s.svc.%s"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top