Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for podCIDR (0.15 sec)

  1. pkg/apis/core/validation/validation.go

    		} else {
    			for idx, value := range oldNode.Spec.PodCIDRs {
    				if value != node.Spec.PodCIDRs[idx] {
    					allErrs = append(allErrs, field.Forbidden(field.NewPath("spec", "podCIDRs"), "node updates may not change podCIDR except from \"\" to valid"))
    				}
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    	// TODO: Call NewProxier after refactoring out the goroutine
    	// invocation into a Run() method.
    	ipfamily := v1.IPv4Protocol
    	podCIDR := "10.0.0.0/8"
    	if ipt.IsIPv6() {
    		ipfamily = v1.IPv6Protocol
    		podCIDR = "fd00:10::/64"
    	}
    	detectLocal := proxyutil.NewDetectLocalByCIDR(podCIDR)
    
    	networkInterfacer := proxyutiltest.NewFakeNetwork()
    	itf := net.Interface{Index: 0, MTU: 0, Name: "lo", HardwareAddr: nil, Flags: 0}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    type NodeSpec struct {
    	// PodCIDR represents the pod IP range assigned to the node.
    	// +optional
    	PodCIDR string `json:"podCIDR,omitempty" protobuf:"bytes,1,opt,name=podCIDR"`
    
    	// podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this
    	// field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for
    	// each of IPv4 and IPv6.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    
      // podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this
      // field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for
      // each of IPv4 and IPv6.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":              "NodeSpec describes the attributes that a node is created with.",
    	"podCIDR":       "PodCIDR represents the pod IP range assigned to the node.",
    	"podCIDRs":      "podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for each of IPv4 and IPv6.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    // NodeSpec describes the attributes that a node is created with.
    message NodeSpec {
      // PodCIDR represents the pod IP range assigned to the node.
      // +optional
      optional string podCIDR = 1;
    
      // podCIDRs represents the IP ranges assigned to the node for usage by Pods on that node. If this
      // field is specified, the 0th entry must match the podCIDR field. It may contain at most 1 value for
      // each of IPv4 and IPv6.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    {
      "name": "k8s-pod-network",
      "cniVersion": "0.3.1",
      "plugins": [
        {
          "type": "ptp",
          "mtu": 1460,
          "ipam": {
            "type": "host-local",
            "subnet": "{{.PodCIDR}}",
            "routes": [
              {
                "dst": "0.0.0.0/0"
              }
            ]
          }
        },
        {
          "type": "portmap",
          "capabilities": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	if utilfeature.DefaultFeatureGate.Enabled(features.EventedPLEG) {
    		klet.runtimeState.addHealthCheck("EventedPLEG", klet.eventedPleg.Healthy)
    	}
    	if _, err := klet.updatePodCIDR(ctx, kubeCfg.PodCIDR); err != nil {
    		klog.ErrorS(err, "Pod CIDR update failed")
    	}
    
    	// setup containerGC
    	containerGC, err := kubecontainer.NewContainerGC(klet.containerRuntime, containerGCPolicy, klet.sourcesReady)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

         # Note: Standalone mode is used by GKE
        declare quoted_master_ip_range
        quoted_master_ip_range=$(yaml-quote "${MASTER_IP_RANGE}")
         cat <<EOF
    podCidr: ${quoted_master_ip_range}
    EOF
      fi
    }
    
    # cat the Kubelet config yaml in common between linux nodes and windows nodes
    function print-common-node-kubelet-config {
      cat <<EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - Enabled traces for KMSv2 encrypt/decrypt operations. ([#121095](https://github.com/kubernetes/kubernetes/pull/121095), [@aramase](https://github.com/aramase))
    - Fixed `kube-proxy` panicking on exit when the `Node` object changed its `PodCIDR`. ([#120375](https://github.com/kubernetes/kubernetes/pull/120375), [@pegasas](https://github.com/pegasas))
    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