Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for FQDN (0.43 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		{"a.com": []byte("bar")},
    		{"k8s.io": []byte("bar")},
    		{"dev.k8s.io": []byte("bar")},
    		{"dev.k8s.io.": []byte("bar")},
    		{"foo.example.com": []byte("bar")},
    		{"this.is.a.really.long.fqdn": []byte("bar")},
    		{"bbc.co.uk": []byte("bar")},
    		{"10.0.0.1": []byte("bar")}, // DNS labels can start with numbers and there is no requirement for letters.
    		{"hyphens-are-good.k8s.io": []byte("bar")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    	Routes []*route.Route
    }
    
    // BuildSidecarVirtualHostWrapper creates virtual hosts from the given set of virtual Services
    // and a list of Services from the service registry. Services are indexed by FQDN hostnames.
    // The list of Services is also passed to allow maintaining consistent ordering.
    func BuildSidecarVirtualHostWrapper(routeCache *Cache, node *model.Proxy, push *model.PushContext, serviceRegistry map[host.Name]*model.Service,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.2.md

    details can be found in the [DNS README](https://github.com/kubernetes/kubernetes/blob/release-1.2/cluster/saltbase/salt/kube-dns/README.md#a-records-and-hostname-based-on-pod-annotations---a-beta-feature-in-kubernetes-v12). Changes were...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceregistry_test.go

    	expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", []string{"1.2.3.4:80"}, nil)
    
    	// create an FQDN endpoint that should be ignored
    	createEndpointSliceWithType(t, s.KubeClient().Kube(), "slice1", "service",
    		namespace, []v1.EndpointPort{{Name: "http", Port: 80}}, []string{"foo.com"}, discovery.AddressTypeFQDN)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. 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)
  6. pkg/proxy/endpointschangetracker_test.go

    			paramRemoveSlice:       false,
    			expectedReturnVal:      false,
    			expectedCurrentChange:  nil,
    		},
    		// ensure that only valide address types are processed
    		"add an FQDN slice (invalid address type)": {
    			startingSlices: []*discovery.EndpointSlice{
    				generateEndpointSlice("svc1", "ns1", 1, 3, 999, 999, []string{"host1", "host2"}, []*int32{ptr.To[int32](80), ptr.To[int32](443)}),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
      // In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).
      // In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN.
      // If a pod does not have FQDN, this has no effect.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default).
    	// In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname).
    	// In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN.
    	// If a pod does not have FQDN, this has no effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"os":        ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. 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)
Back to top