Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 474 for CSI (0.02 sec)

  1. staging/src/k8s.io/api/storage/v1/types.go

    	// 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1beta1/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.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1beta1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_drivers_store.go

    limitations under the License.
    */
    
    package csi
    
    import (
    	"sync"
    
    	utilversion "k8s.io/apimachinery/pkg/util/version"
    )
    
    // Driver is a description of a CSI Driver, defined by an endpoint and the
    // highest CSI version supported
    type Driver struct {
    	endpoint                string
    	highestSupportedVersion *utilversion.Version
    }
    
    // DriversStore holds a list of CSI Drivers
    type DriversStore struct {
    	store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_plugin_test.go

    			case rec.Spec.Volume != nil:
    				if rec.Spec.Volume.CSI == nil {
    					t.Error("missing CSIVolumeSource in constructed volume.Spec")
    				}
    				if rec.Spec.Volume.CSI.Driver != tc.originSpec.Volume.CSI.Driver {
    					t.Error("unexpected driver in constructed volume source:", rec.Spec.Volume.CSI.Driver)
    				}
    
    			case rec.Spec.PersistentVolume != nil:
    				if rec.Spec.PersistentVolume.Spec.CSI == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                        creation case, this field will be filled in by the CSI snapshotter
                        sidecar with the "creation_time" value returned from CSI "CreateSnapshot"
                        gRPC call. For a pre-existing snapshot, this field will be filled
                        with the "creation_time" value returned from the CSI "ListSnapshots"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  9. pkg/volume/csimigration/plugin_manager.go

    	"errors"
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/component-base/featuregate"
    	csilibplugins "k8s.io/csi-translation-lib/plugins"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/volume"
    )
    
    // PluginNameMapper contains utility methods to retrieve names of plugins
    // that support a spec, map intree <=> migrated CSI plugin names, etc
    type PluginNameMapper interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter.go

    	klog.V(4).Infof(log("Mounter.SetUpAt(%s)", dir))
    
    	csi, err := c.csiClientGetter.Get()
    	if err != nil {
    		// Treat the absence of the CSI driver as a transient error
    		// See https://github.com/kubernetes/kubernetes/issues/120268
    		return volumetypes.NewTransientOperationFailure(log("mounter.SetUpAt failed to get CSI client: %v", err))
    	}
    
    	ctx, cancel := createCSIOperationContext(c.spec, csiTimeout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top