Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for podCIDR (0.3 sec)

  1. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&c.MaxPods, "max-pods", c.MaxPods, "Number of Pods that can run on this Kubelet.")
    
    	fs.StringVar(&c.PodCIDR, "pod-cidr", c.PodCIDR, "The CIDR to use for pod IP addresses, only used in standalone mode.  In cluster mode, this is obtained from the master. For IPv6, the maximum number of IP's allocated is 65536")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  2. cluster/gce/config-default.sh

      export AUTOSCALER_EXPANDER_CONFIG="${KUBE_AUTOSCALER_EXPANDER_CONFIG:---expander=price}"
    fi
    
    # Optional: Enable allocation of pod IPs using IP aliases.
    #
    # BETA FEATURE.
    #
    # IP_ALIAS_SIZE is the size of the podCIDR allocated to a node.
    # IP_ALIAS_SUBNETWORK is the subnetwork to allocate from. If empty, a
    #   new subnetwork will be created for the cluster.
    ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. cluster/gce/config-test.sh

      export AUTOSCALER_EXPANDER_CONFIG=${KUBE_AUTOSCALER_EXPANDER_CONFIG:---expander=price}
    fi
    
    # Optional: Enable allocation of pod IPs using IP aliases.
    #
    # BETA FEATURE.
    #
    # IP_ALIAS_SIZE is the size of the podCIDR allocated to a node.
    # IP_ALIAS_SUBNETWORK is the subnetwork to allocate from. If empty, a
    #   new subnetwork will be created for the cluster.
    ENABLE_IP_ALIASES=${KUBE_GCE_ENABLE_IP_ALIASES:-true}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    	node := originalNode.DeepCopy()
    
    	podCIDRChanged := false
    	if len(node.Spec.PodCIDRs) != 0 {
    		// Pod CIDR could have been updated before, so we cannot rely on
    		// node.Spec.PodCIDR being non-empty. We also need to know if pod CIDR is
    		// actually changed.
    		var err error
    		podCIDRs := strings.Join(node.Spec.PodCIDRs, ",")
    		if podCIDRChanged, err = kl.updatePodCIDR(ctx, podCIDRs); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    	// maxPods is the number of pods that can run on this Kubelet.
    	MaxPods int32
    	// The CIDR to use for pod IP addresses, only used in standalone mode.
    	// In cluster mode, this is obtained from the master.
    	PodCIDR string
    	// The maximum number of processes per pod.  If -1, the kubelet defaults to the node allocatable pid capacity.
    	PodPidsLimit int64
    	// ResolverConfig is the resolver configuration file used as the basis
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top