Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for FQDN (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/crypto/x509/verify_test.go

    		currentTime:   1677615892,
    		dnsName:       "www.google.com",
    
    		expectedChains: [][]string{
    			{"www.google.com", "GTS CA 1C3", "GTS Root R1"},
    		},
    	},
    	{
    		name:          "Valid (fqdn)",
    		leaf:          googleLeaf,
    		intermediates: []string{gtsIntermediate},
    		roots:         []string{gtsRoot},
    		currentTime:   1677615892,
    		dnsName:       "www.google.com.",
    
    		expectedChains: [][]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    const (
    	None ConfigType = iota
    	Mesh
    	DestinationRule
    	DestinationRuleForOsDefault
    	MeshWideTCPKeepaliveSeconds        = 11
    	DestinationRuleTCPKeepaliveSeconds = 21
    	TestServiceNamespace               = "bar"
    	// FQDN service name in namespace TestServiceNamespace. Note the mesh config domain is empty.
    	TestServiceNHostname = "foo.bar"
    )
    
    func testMesh() *meshconfig.MeshConfig {
    	return &meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	if err != nil {
    		return nil, nil, err
    	}
    	// nodename will be equal to hostname if SetHostnameAsFQDN is nil or false. If SetHostnameFQDN
    	// is true and hostDomainName is defined, nodename will be the FQDN (hostname.hostDomainName)
    	nodename, err := util.GetNodenameForKernel(hostname, hostDomainName, pod.Spec.SetHostnameAsFQDN)
    	if err != nil {
    		return nil, nil, err
    	}
    	opts.Hostname = nodename
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                "type": "string"
              },
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
Back to top