Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for nodeEnd (0.14 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSINode.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "drivers": [
          {
            "name": "nameValue",
            "nodeID": "nodeIDValue",
            "topologyKeys": [
              "topologyKeysValue"
            ],
            "allocatable": {
              "count": 1
            }
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.CSINode.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "drivers": [
          {
            "name": "nameValue",
            "nodeID": "nodeIDValue",
            "topologyKeys": [
              "topologyKeysValue"
            ],
            "allocatable": {
              "count": 1
            }
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    	expectInFlightPods(t, q)
    	// This NodeAdd event moves unschedulablePodInfo and highPriorityPodInfo to the backoffQ,
    	// because of the queueing hint function registered for NodeAdd/fooPlugin.
    	q.MoveAllToActiveOrBackoffQueue(logger, NodeAdd, nil, nil, nil)
    	q.Add(logger, medPriorityPodInfo.Pod)
    	if q.activeQ.Len() != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/serviceaccount/claims.go

    		}
    		podName = podref.Name
    		podUID = podref.UID
    	}
    
    	var nodeName, nodeUID string
    	if noderef != nil {
    		switch {
    		case podref != nil:
    			if utilfeature.DefaultFeatureGate.Enabled(features.ServiceAccountTokenPodNodeInfo) {
    				// for pod-bound tokens, just extract the node claims
    				nodeName = noderef.Name
    				nodeUID = noderef.UID
    			}
    		case podref == nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. pkg/controller/util/node/controller_utils.go

    func DeletePods(ctx context.Context, kubeClient clientset.Interface, pods []*v1.Pod, recorder record.EventRecorder, nodeName, nodeUID string, daemonStore appsv1listers.DaemonSetLister) (bool, error) {
    	remaining := false
    	var updateErrList []error
    	logger := klog.FromContext(ctx)
    
    	if len(pods) > 0 {
    		RecordNodeEvent(ctx, recorder, nodeName, nodeUID, v1.EventTypeNormal, "DeletingAllPods", fmt.Sprintf("Deleting all Pods from Node %v.", nodeName))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation.go

    // validateCSINodeDriverNodeID tests if Name in CSINodeDriver is a valid node id.
    func validateCSINodeDriverNodeID(nodeID string, fldPath *field.Path, validationOpts CSINodeValidationOptions) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	// nodeID is always required
    	if len(nodeID) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath, nodeID))
    	}
    	maxLength := csiNodeIDMaxLength
    	if validationOpts.AllowLongNodeID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    			info.Extra = make(map[string][]string)
    		}
    		info.Extra[NodeNameKey] = []string{sa.NodeName}
    		// node UID is optional and will only be set if the node name is set
    		if sa.NodeUID != "" {
    			info.Extra[NodeUIDKey] = []string{sa.NodeUID}
    		}
    	}
    
    	return info
    }
    
    // CredentialIDForJTI converts a given JTI string into a credential identifier for use in a
    // users 'extra' info.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSINode.yaml

        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      drivers:
      - allocatable:
          count: 1
        name: nameValue
        nodeID: nodeIDValue
        topologyKeys:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 991 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.CSINode.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "drivers": [
          {
            "name": "nameValue",
            "nodeID": "nodeIDValue",
            "topologyKeys": [
              "topologyKeysValue"
            ],
            "allocatable": {
              "count": 1
            }
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.CSINode.json

            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "drivers": [
          {
            "name": "nameValue",
            "nodeID": "nodeIDValue",
            "topologyKeys": [
              "topologyKeysValue"
            ],
            "allocatable": {
              "count": 1
            }
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top