Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 728 for NodeName (0.17 sec)

  1. pkg/volume/csi/csi_block_test.go

    		t.Fatalf("Failed to make a new Mapper: %v", err)
    	}
    
    	pvName := pv.GetName()
    	nodeName := string(plug.host.GetNodeName())
    
    	csiMapper.csiClient = setupClient(t, true)
    
    	attachID := getAttachmentName(csiMapper.volumeID, string(csiMapper.driverName), string(nodeName))
    	attachment := makeTestAttachment(attachID, nodeName, pvName)
    	attachment.Status.Attached = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/fakegenerator.go

    	return f.recordFuncCall("GenerateDetachVolumeFunc"), nil
    }
    
    func (f *fakeOGCounter) GenerateVolumesAreAttachedFunc(attachedVolumes []AttachedVolume, nodeName types.NodeName, actualStateOfWorld ActualStateOfWorldAttacherUpdater) (volumetypes.GeneratedOperations, error) {
    	return f.recordFuncCall("GenerateVolumesAreAttachedFunc"), nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. cmd/kubemark/app/hollow_node.go

    		return bootstrap.LoadClientCert(context.TODO(), c.KubeconfigPath, c.BootstrapKubeconfigPath, c.CertDirectory, types.NodeName(c.NodeName))
    	}
    	return nil
    }
    
    func (c *hollowNodeConfig) createHollowKubeletOptions() *kubemark.HollowKubeletOptions {
    	return &kubemark.HollowKubeletOptions{
    		NodeName:            c.NodeName,
    		KubeletPort:         c.KubeletPort,
    		KubeletReadOnlyPort: c.KubeletReadOnlyPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    					ResourceVersion: 2,
    				},
    				{
    					Type:            watch.Modified,
    					PrevObject:      &v1.Pod{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "2"}},
    					PrevObjFields:   fields.Set{"spec.nodeName": ""},
    					Object:          &v1.Pod{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "3"}},
    					ObjFields:       fields.Set{"spec.nodeName": "host"},
    					ResourceVersion: 3,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

        private boolean testNode(XmlNode node) {
            if (test == null) {
                return true;
            }
            if (test instanceof NodeNameTest) {
                String nodeName = node.getName();
                if (nodeName == null || nodeName.isEmpty()) {
                    return false;
                }
    
                NodeNameTest nodeNameTest = (NodeNameTest) test;
                String namespaceURI = nodeNameTest.getNamespaceURI();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    			}
    		}
    	}
    
    	pods, err := adc.podLister.List(labels.Everything())
    	if err != nil {
    		t.Fatalf("Run failed with error. Expected: <no error> Actual: %v", err)
    	}
    	for _, pod := range pods {
    		uniqueName := fmt.Sprintf("%s/%s", controllervolumetesting.TestPluginName, pod.Spec.Volumes[0].Name)
    		nodeName := types.NodeName(pod.Spec.NodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. pkg/controller/daemon/update.go

    				// record the replacement
    				if allowedNewNodes == nil {
    					allowedNewNodes = make([]string, 0, len(nodeToDaemonPods))
    				}
    				allowedNewNodes = append(allowedNewNodes, nodeName)
    			default:
    				node, err := dsc.nodeLister.Get(nodeName)
    				if err != nil {
    					return fmt.Errorf("couldn't get node for nodeName %q: %v", nodeName, err)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/etcd/etcd_test.go

    		},
    		{
    			name: "two pods; one is missing annotation",
    			pods: []testresources.FakeStaticPod{
    				{
    					NodeName:    "cp-0",
    					Component:   constants.Etcd,
    					Annotations: map[string]string{constants.EtcdAdvertiseClientUrlsAnnotationKey: "https://1.2.3.4:2379"},
    				},
    				{
    					NodeName:  "cp-1",
    					Component: constants.Etcd,
    				},
    			},
    			expectedEndpoints: []string{"https://1.2.3.4:2379"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/defaultbinder/default_binder.go

    	logger := klog.FromContext(ctx)
    	logger.V(3).Info("Attempting to bind pod to node", "pod", klog.KObj(p), "node", klog.KRef("", nodeName))
    	binding := &v1.Binding{
    		ObjectMeta: metav1.ObjectMeta{Namespace: p.Namespace, Name: p.Name, UID: p.UID},
    		Target:     v1.ObjectReference{Kind: "Node", Name: nodeName},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Endpoints.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top