Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 542 for scsi (0.07 sec)

  1. common-protos/k8s.io/api/storage/v1/generated.proto

      // This list might grow, but the prefix will be used.
      // "csi.storage.k8s.io/pod.name": pod.Name
      // "csi.storage.k8s.io/pod.namespace": pod.Namespace
      // "csi.storage.k8s.io/pod.uid": string(pod.UID)
      // "csi.storage.k8s.io/ephemeral": "true" if the volume is an ephemeral inline volume
      //                                 defined by a CSIVolumeSource, otherwise "false"
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pkg/volume/util/metrics_test.go

    			name:         "get full qualified plugin name without using CSI plugin",
    			pluginName:   fakePluginName,
    			spec:         &volume.Spec{},
    			wantFullName: fakePluginName,
    		},
    		{
    			name:       "get full qualified plugin name with CSI ephemeral volume",
    			pluginName: fakePluginName,
    			spec: &volume.Spec{
    				Volume: &v1.Volume{
    					VolumeSource: v1.VolumeSource{
    						CSI: &v1.CSIVolumeSource{
    							Driver: fakeInlineCSIDriverName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 04 08:28:28 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // initiatorName is the custom iSCSI Initiator Name.
      // If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface
      // <target portal>:<volume name> will be created for the connection.
      // +optional
      optional string initiatorName = 12;
    }
    
    // Represents an ISCSI disk.
    // ISCSI volumes can only be mounted as read/write once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    			driver:                "info",
    			volumeContext:         nil,
    			expectedVolumeContext: map[string]string{"csi.storage.k8s.io/pod.uid": "test-pod", "csi.storage.k8s.io/serviceAccount.name": "test-service-account", "csi.storage.k8s.io/pod.name": "test-pod", "csi.storage.k8s.io/pod.namespace": "test-ns", "csi.storage.k8s.io/ephemeral": "false"},
    		},
    		{
    			name:                  "add pod info -> keep existing volumeContext",
    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/storage/v1alpha1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // Name of the CSI driver
      // This field is immutable.
      optional string driverName = 2;
    
      // parameters hold volume attributes defined by the CSI driver. These values
      // are opaque to the Kubernetes and are passed directly to the CSI driver.
      // The underlying storage provider supports changing these attributes on an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block_test.go

    	if !ok {
    		t.Error("csi server may not have received NodePublishVolume call")
    	}
    
    	if !reflect.DeepEqual(pvol.VolumeContext, map[string]string{"csi.storage.k8s.io/pod.uid": "test-pod", "csi.storage.k8s.io/serviceAccount.name": "", "csi.storage.k8s.io/pod.name": "test-pod", "csi.storage.k8s.io/pod.namespace": "test-ns", "csi.storage.k8s.io/ephemeral": "false"}) {
    		t.Error("csi mapper check pod info failed")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. pkg/volume/csi/testing/testing.go

    		}
    	}
    
    	host := volumetest.NewFakeVolumeHostWithCSINodeName(t,
    		tmpDir,
    		client,
    		csi.ProbeVolumePlugins(),
    		"fakeNode",
    		csiDriverLister,
    		nil,
    	)
    	plugMgr := host.GetPluginMgr()
    
    	plug, err := plugMgr.FindPluginByName(csi.CSIPluginName)
    	if err != nil {
    		t.Fatalf("can't find plugin %v", csi.CSIPluginName)
    	}
    
    	return plugMgr, &plug, tmpDir
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 07 00:11:50 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation_test.go

    		csi:  &core.CSIVolumeSource{Driver: "comgooglestoragecsigcepd"},
    	}, {
    		name: "driver name: ok dot only",
    		csi:  &core.CSIVolumeSource{Driver: "io.kubernetes.storage.csi.flex"},
    	}, {
    		name: "driver name: ok dash only",
    		csi:  &core.CSIVolumeSource{Driver: "io-kubernetes-storage-csi-flex"},
    	}, {
    		name:     "driver name: invalid underscore",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  9. pkg/volume/util/metrics.go

    		if spec.Volume != nil && spec.Volume.CSI != nil {
    			return fmt.Sprintf("%s:%s", pluginName, spec.Volume.CSI.Driver)
    		}
    		if spec.PersistentVolume != nil && spec.PersistentVolume.Spec.CSI != nil {
    			return fmt.Sprintf("%s:%s", pluginName, spec.PersistentVolume.Spec.CSI.Driver)
    		}
    	}
    	return pluginName
    }
    
    // RecordOperationLatencyMetric records the end to end latency for certain operation
    // into metric volume_operation_total_seconds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 23 23:05:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

                      one default per CSI Driver. If a VolumeSnapshot does not specify
                      a SnapshotClass, VolumeSnapshotSource will be checked to figure
                      out what the associated CSI Driver is, and the default VolumeSnapshotClass
                      associated with that CSI Driver will be used. If more than one VolumeSnapshotClass
                      exist for a given CSI Driver and more than one have been marked
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
Back to top