Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 121 for driverNames (0.44 sec)

  1. pkg/volume/util/volumeattributesclass.go

    	list, err := lister.List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    
    	defaultClasses := []*storagev1alpha1.VolumeAttributesClass{}
    	for _, class := range list {
    		if IsDefaultVolumeAttributesClassAnnotation(class.ObjectMeta) && class.DriverName == driverName {
    			defaultClasses = append(defaultClasses, class)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/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 Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclass_test.go

    	"k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/apis/resource"
    	"k8s.io/utils/pointer"
    )
    
    func testClass(name, driverName string) *resource.ResourceClass {
    	return &resource.ResourceClass{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		DriverName: driverName,
    	}
    }
    
    func TestValidateClass(t *testing.T) {
    	goodName := "foo"
    	now := metav1.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClassParameters.yaml

    apiVersion: resource.k8s.io/v1alpha2
    filters:
    - driverName: driverNameValue
      namedResources:
        selector: selectorValue
    generatedFrom:
      apiGroup: apiGroupValue
      kind: kindValue
      name: nameValue
      namespace: namespaceValue
    kind: ResourceClassParameters
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/resource.k8s.io.v1alpha2.ResourceClaim.json

          "kind": "kindValue",
          "name": "nameValue"
        },
        "allocationMode": "allocationModeValue"
      },
      "status": {
        "driverName": "driverNameValue",
        "allocation": {
          "resourceHandles": [
            {
              "driverName": "driverNameValue",
              "data": "dataValue"
            }
          ],
          "availableOnNodes": {
            "nodeSelectorTerms": [
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. tests/connection_test.go

    	}
    
    	if actualName != expectedName {
    		t.Errorf("WithSingleConnection() method should get correct value, expect: %v, got %v", expectedName, actualName)
    	}
    }
    
    func getSetSQL(driverName string) (string, string) {
    	switch driverName {
    	case mysql.Dialector{}.Name():
    		return "SET @testName := ?", "SELECT @testName"
    	default:
    		return "", ""
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 28 14:16:42 UTC 2022
    - 963 bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_mounter.go

    		volDataKey.specVolID:           c.spec.Name(),
    		volDataKey.volHandle:           volumeHandle,
    		volDataKey.driverName:          string(c.driverName),
    		volDataKey.nodeName:            nodeName,
    		volDataKey.volumeLifecycleMode: string(c.volumeLifecycleMode),
    		volDataKey.attachmentID:        getAttachmentName(volumeHandle, string(c.driverName), nodeName),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  9. pkg/kubelet/cm/dra/state/state_checkpoint.go

    	// CDIDevices is a map of DriverName --> CDI devices returned by the
    	// GRPC API call NodePrepareResource
    	CDIDevices map[string][]string
    }
    
    // ClaimInfoStateWithoutResourceHandles is an old implementation of the ClaimInfoState
    // TODO: remove in Beta
    type ClaimInfoStateWithoutResourceHandles struct {
    	// Name of the DRA driver
    	DriverName string
    
    	// ClassName is a resource class of the claim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"":               "ResourceHandle holds opaque resource data for processing by a specific kubelet plugin.",
    	"driverName":     "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top