Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 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. 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)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    	return autoConvert_core_NodeSelectorTerm_To_v1_NodeSelectorTerm(in, out, s)
    }
    
    func autoConvert_v1_NodeSpec_To_core_NodeSpec(in *v1.NodeSpec, out *core.NodeSpec, s conversion.Scope) error {
    	// WARNING: in.PodCIDR requires manual conversion: does not exist in peer-type
    	out.PodCIDRs = *(*[]string)(unsafe.Pointer(&in.PodCIDRs))
    	out.ProviderID = in.ProviderID
    	out.Unschedulable = in.Unschedulable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top