Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for servicecidrs (0.2 sec)

  1. pkg/controlplane/instance.go

    			controller := defaultservicecidr.NewController(
    				c.Extra.ServiceIPRange,
    				c.Extra.SecondaryServiceIPRange,
    				client,
    			)
    			// The default serviceCIDR must exist before the apiserver is healthy
    			// otherwise the allocators for Services will not work.
    			controller.Start(hookContext)
    			return nil
    		})
    	}
    
    	return s, nil
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. api/api-rules/violation_exceptions.list

    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,NodeIPAMControllerConfiguration,ServiceCIDR
    API rule violation: names_match,k8s.io/kube-controller-manager/config/v1alpha1,NodeLifecycleControllerConfiguration,LargeClusterSizeThreshold
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

      #   POD_CIDR: the pod CIDR assigned to this node.
      #   POD_GATEWAY: the gateway IP.
      #   MGMT_IP: the IP address assigned to the node's primary network interface
      #     (i.e. the internal IP of the GCE VM).
      #   SERVICE_CIDR: the CIDR used for kubernetes services.
      #   DNS_SERVER_IP: the cluster's DNS server IP address.
      #   DNS_DOMAIN: the cluster's DNS domain, e.g. "cluster.local".
      #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    	ipv4CIDR := "10.1.0.0/16"
    	ipv6CIDR := "fd00:1:1::/64"
    
    	tests := []struct {
    		ccc      networking.ServiceCIDR
    		options  printers.GenerateOptions
    		expected []metav1.TableRow
    	}{
    		{
    			// Test name, IPv4 only.
    			ccc: networking.ServiceCIDR{
    				ObjectMeta: metav1.ObjectMeta{Name: "test1"},
    				Spec: networking.ServiceCIDRSpec{
    					CIDRs: []string{ipv4CIDR},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    			expectedErrorSubString: "--service-cluster-ip-range can not contain more than two entries",
    			options: &NodeIPAMControllerOptions{
    				&nodeipamconfig.NodeIPAMControllerConfiguration{
    					ServiceCIDR:          "10.0.0.0/16,244.0.0.0/16,3000::/108",
    					NodeCIDRMaskSize:     48,
    					NodeCIDRMaskSizeIPv4: 48,
    					NodeCIDRMaskSizeIPv6: 108,
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    						SchemaProps: spec.SchemaProps{
    							Description: "items is the list of ServiceCIDRs.",
    							Type:        []string{"array"},
    							Items: &spec.SchemaOrArray{
    								Schema: &spec.Schema{
    									SchemaProps: spec.SchemaProps{
    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/networking/v1alpha1.ServiceCIDR"),
    									},
    								},
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printServiceCIDR(obj *networking.ServiceCIDR, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    
    	cidrs := strings.Join(obj.Spec.CIDRs, ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.29.md

    - Added `optionalOldSelf` to `x-kubernetes-validations` to support ratcheting CRD schema constraints. ([#121034](https://github.com/kubernetes/kubernetes/pull/121034), [@alexzielenski](https://github.com/alexzielenski))
    - Added a new `ServiceCIDR` type that allows to dynamically configure the cluster range used to allocate `Service ClusterIPs` addresses. ([#116516](https://github.com/kubernetes/kubernetes/pull/116516), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top