Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 120 for families (0.21 sec)

  1. cmd/kube-proxy/app/server.go

    		if dual, _ := netutils.IsDualStackCIDRStrings(config); dual {
    			anyDualStackConfig = true
    			break
    		}
    	}
    
    	// Warn if NodePortAddresses does not limit connections on all IP families that
    	// seem to be in use.
    	cidrsByFamily := proxyutil.MapCIDRsByIPFamily(s.Config.NodePortAddresses)
    	if len(s.Config.NodePortAddresses) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"associated interface(s) must be reachable by the rest of the cluster, and by CLI/web "+
    		"clients. If blank or an unspecified address (0.0.0.0 or ::), all interfaces and IP address families will be used.")
    
    	desc := "The port on which to serve HTTPS with authentication and authorization."
    	if s.Required {
    		desc += " It cannot be switched off with 0."
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	fs.Var(&utilflag.IPVar{Val: &c.Address}, "address", "The IP address for the Kubelet to serve on (set to '0.0.0.0' or '::' for listening on all interfaces and IP address families)")
    	fs.Int32Var(&c.Port, "port", c.Port, "The port for the Kubelet to serve on.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. pkg/apis/core/validation/validation_test.go

    				s.Spec.IPFamilies = nil
    			},
    			numErrs: 0,
    		}, {
    			name: "valid, service with valid ipFamilies (v4)",
    			tweakSvc: func(s *core.Service) {
    				s.Spec.IPFamilies = []core.IPFamily{core.IPv4Protocol}
    			},
    			numErrs: 0,
    		}, {
    			name: "valid, service with valid ipFamilies (v6)",
    			tweakSvc: func(s *core.Service) {
    				s.Spec.IPFamilies = []core.IPFamily{core.IPv6Protocol}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    					IPFamilies: []v1.IPFamily{v1.IPv6Protocol}, // <- set by a api-server defaulting logic
    				},
    			},
    			expectedEndpointFamily: ipv6,
    		},
    		{
    			name:       "v6 legacy headless service, in a dual stack cluster  (connected to a old api-server)",
    			ipFamilies: ipv4ipv6,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP: v1.ClusterIPNone, // <- families are not set by api-server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // This field may hold a maximum of two entries (dual-stack families, in
      // either order).  These families must correspond to the values of the
      // clusterIPs field, if specified. Both clusterIPs and ipFamilies are
      // governed by the ipFamilyPolicy field.
      // +listType=atomic
      // +optional
      repeated string ipFamilies = 19;
    
      // IPFamilyPolicy represents the dual-stack-ness requested or required by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"ipFamilyPolicy":                "IPFamilyPolicy represents the dual-stack-ness requested or required by this Service. If there...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		}
    	}
    
    	// match clusterIPs to their families, if they were provided
    	if !isHeadlessService(service) && len(service.Spec.ClusterIPs) > 0 && len(service.Spec.IPFamilies) > 0 {
    		for i, ip := range service.Spec.ClusterIPs {
    			if i > (len(service.Spec.IPFamilies) - 1) {
    				break // no more families to check
    			}
    
    			// 4=>6
    			if service.Spec.IPFamilies[i] == core.IPv4Protocol && netutils.IsIPv6String(ip) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    have been born into the cause; innumerable young people have married into it; innumerable old people have died out of it. Scores of persons have deliriously found themselves made parties in Jarndyce and Jarndyce, without knowing how or why; whole families have inherited legendary hatreds with the suit. The little plaintiff or defendant, who was promised a new rocking-horse when Jarndyce and Jarndyce should be settled, has grown up, possessed himself of a real horse, and trotted away into the other...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      //
      // This field may hold a maximum of two entries (dual-stack families, in
      // either order).  These families must correspond to the values of the
      // clusterIPs field, if specified. Both clusterIPs and ipFamilies are
      // governed by the ipFamilyPolicy field.
      // +listType=atomic
      // +optional
      repeated string ipFamilies = 19;
    
      // IPFamilyPolicy represents the dual-stack-ness requested or required by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top