Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 121 for driverNames (0.15 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/resource.k8s.io.v1alpha2.ResourceClaim.json

          "kind": "kindValue",
          "name": "nameValue"
        },
        "allocationMode": "allocationModeValue"
      },
      "status": {
        "driverName": "driverNameValue",
        "allocation": {
          "resourceHandles": [
            {
              "driverName": "driverNameValue",
              "data": "dataValue",
              "structuredData": {
                "vendorClassParameters": {
                  "apiVersion": "example.com/v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

    message ResourceHandle {
      // DriverName specifies the name of the resource driver whose kubelet
      // plugin should be invoked to process this ResourceHandle's data once it
      // lands on a node. This may differ from the DriverName set in
      // ResourceClaimStatus this ResourceHandle is embedded in.
      optional string driverName = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaim.yaml

              - valuesValue
            matchFields:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
        resourceHandles:
        - data: dataValue
          driverName: driverNameValue
          structuredData:
            nodeName: nodeNameValue
            results:
            - namedResources:
                name: nameValue
              vendorRequestParameters:
                apiVersion: example.com/v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    			if data[volDataKey.volHandle] != csiMounter.volumeID {
    				t.Error("volume data file unexpected volHandle:", data[volDataKey.volHandle])
    			}
    			if data[volDataKey.driverName] != string(csiMounter.driverName) {
    				t.Error("volume data file unexpected driverName:", data[volDataKey.driverName])
    			}
    			if data[volDataKey.nodeName] != string(csiMounter.plugin.host.GetNodeName()) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/resource.k8s.io.v1alpha2.ResourceClassParameters.json

      },
      "vendorParameters": [
        {
          "driverName": "driverNameValue",
          "parameters": {
            "apiVersion": "example.com/v1",
            "kind": "CustomType",
            "spec": {
              "replicas": 1
            },
            "status": {
              "available": 1
            }
          }
        }
      ],
      "filters": [
        {
          "driverName": "driverNameValue",
          "namedResources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/resource.k8s.io.v1alpha2.ResourceClaim.yaml

            matchFields:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
        resourceHandles:
        - data: dataValue
          driverName: driverNameValue
        shareable: true
      deallocationRequested: true
      driverName: driverNameValue
      reservedFor:
      - apiGroup: apiGroupValue
        name: nameValue
        resource: resourceValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. pkg/registry/storage/volumeattributesclass/strategy_test.go

    		t.Errorf("VolumeAttributesClassStrategy should not allow create on update")
    	}
    
    	class := &storage.VolumeAttributesClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "valid-class",
    		},
    		DriverName: "fake",
    		Parameters: map[string]string{
    			"foo": "bar",
    		},
    	}
    
    	Strategy.PrepareForCreate(ctx, class)
    
    	errs := Strategy.Validate(ctx, class)
    	if len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/dra/claiminfo.go

    	// kubelet plugin whose name matches resourceClaim.Status.DriverName.
    	resourceHandles := claim.Status.Allocation.ResourceHandles
    	if len(resourceHandles) == 0 {
    		resourceHandles = make([]resourcev1alpha2.ResourceHandle, 1)
    	}
    	claimInfoState := state.ClaimInfoState{
    		DriverName:      claim.Status.DriverName,
    		ClassName:       claim.Spec.ResourceClassName,
    		ClaimUID:        claim.UID,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_block_test.go

    	}
    
    	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)
  10. pkg/scheduler/framework/plugins/nodevolumelimits/csi.go

    				return err
    			}
    		}
    
    		driverName, volumeHandle := pl.getCSIDriverInfo(logger, csiNode, pvc)
    		if driverName == "" || volumeHandle == "" {
    			logger.V(5).Info("Could not find a CSI driver name or volume handle, not counting volume")
    			continue
    		}
    
    		volumeUniqueName := fmt.Sprintf("%s/%s", driverName, volumeHandle)
    		volumeLimitKey := volumeutil.GetCSIAttachLimitKey(driverName)
    		result[volumeUniqueName] = volumeLimitKey
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top