Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for podCIDR (0.34 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "podCIDR": "podCIDRValue",
        "podCIDRs": [
          "podCIDRsValue"
        ],
        "providerID": "providerIDValue",
        "unschedulable": true,
        "taints": [
          {
            "key": "keyValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "podCIDR": "podCIDRValue",
        "podCIDRs": [
          "podCIDRsValue"
        ],
        "providerID": "providerIDValue",
        "unschedulable": true,
        "taints": [
          {
            "key": "keyValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Node.yaml

        configMap:
          kubeletConfigKey: kubeletConfigKeyValue
          name: nameValue
          namespace: namespaceValue
          resourceVersion: resourceVersionValue
          uid: uidValue
      externalID: externalIDValue
      podCIDR: podCIDRValue
      podCIDRs:
      - podCIDRsValue
      providerID: providerIDValue
      taints:
      - effect: effectValue
        key: keyValue
        timeAdded: "2004-01-01T01:01:01Z"
        value: valueValue
      unschedulable: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.yaml

        configMap:
          kubeletConfigKey: kubeletConfigKeyValue
          name: nameValue
          namespace: namespaceValue
          resourceVersion: resourceVersionValue
          uid: uidValue
      externalID: externalIDValue
      podCIDR: podCIDRValue
      podCIDRs:
      - podCIDRsValue
      providerID: providerIDValue
      taints:
      - effect: effectValue
        key: keyValue
        timeAdded: "2004-01-01T01:01:01Z"
        value: valueValue
      unschedulable: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/proxy/node.go

    	"sync"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/config"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    )
    
    // NodePodCIDRHandler handles the life cycle of kube-proxy based on the node PodCIDR assigned
    // Implements the config.NodeHandler interface
    // https://issues.k8s.io/111321
    type NodePodCIDRHandler struct {
    	mu       sync.Mutex
    	podCIDRs []string
    	logger   klog.Logger
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. pkg/kubelet/runtime.go

    	s.Lock()
    	defer s.Unlock()
    	s.storageError = err
    }
    
    func (s *runtimeState) setPodCIDR(cidr string) {
    	s.Lock()
    	defer s.Unlock()
    	s.cidr = cidr
    }
    
    func (s *runtimeState) podCIDR() string {
    	s.RLock()
    	defer s.RUnlock()
    	return s.cidr
    }
    
    func (s *runtimeState) runtimeErrors() error {
    	s.RLock()
    	defer s.RUnlock()
    	errs := []error{}
    	if s.lastBaseRuntimeSync.IsZero() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server_linux_test.go

    		},
    		Spec: v1.NodeSpec{
    			PodCIDR:  "10.0.0.0/24",
    			PodCIDRs: []string{"10.0.0.0/24", "2001:db2:1/64"},
    		},
    	}
    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            nodeName,
    			ResourceVersion: "1",
    		},
    	}
    	updatedNode := node.DeepCopy()
    	updatedNode.Spec.PodCIDRs = expected
    	updatedNode.Spec.PodCIDR = expected[0]
    
    	// start with the new node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/node_ipam_controller.go

    // sync instances from cloudprovider.
    // This method returns an error if it is unable to initialize the CIDR bitmap with
    // podCIDRs it has already allocated to nodes. Since we don't allow podCIDR changes
    // currently, this should be handled as a fatal error.
    func NewNodeIpamController(
    	ctx context.Context,
    	nodeInformer coreinformers.NodeInformer,
    	cloud cloudprovider.Interface,
    	kubeClient clientset.Interface,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. pkg/kubelet/container/testing/runtime_mock.go

    // UpdatePodCIDR mocks base method.
    func (m *MockRuntime) UpdatePodCIDR(ctx context.Context, podCIDR string) error {
    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "UpdatePodCIDR", ctx, podCIDR)
    	ret0, _ := ret[0].(error)
    	return ret0
    }
    
    // UpdatePodCIDR indicates an expected call of UpdatePodCIDR.
    func (mr *MockRuntimeMockRecorder) UpdatePodCIDR(ctx, podCIDR any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. common/scripts/kind_provisioner.sh

        # Set up routing rules for inter-cluster direct pod to pod & service communication
        C1_POD_CIDR=$(KUBECONFIG="${C1_KUBECONFIG}" kubectl get node -ojsonpath='{.items[0].spec.podCIDR}')
        C2_POD_CIDR=$(KUBECONFIG="${C2_KUBECONFIG}" kubectl get node -ojsonpath='{.items[0].spec.podCIDR}')
        C1_SVC_CIDR=$(KUBECONFIG="${C1_KUBECONFIG}" kubectl cluster-info dump | sed -n 's/^.*--service-cluster-ip-range=\([^"]*\).*$/\1/p' | head -n 1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top