Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 363 for ecsi (0.04 sec)

  1. 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)
  2. 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)
  3. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            activityHelper.useEcsFormat = true;
            activityHelper.login(OptionalThing.empty());
            assertEquals(
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. 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)
  5. 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 (1)
  6. pkg/apis/storage/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: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_plugin.go

    	}
    
    	// Storing endpoint of newly registered CSI driver into the map, where CSI driver name will be the key
    	// all other CSI components will be able to get the actual socket of CSI drivers by its name.
    	csiDrivers.Set(pluginName, Driver{
    		endpoint:                endpoint,
    		highestSupportedVersion: highestSupportedVersion,
    	})
    
    	// Get node info from the driver.
    	csi, err := newCsiDriverClient(csiDriverName(pluginName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/util/util_test.go

    				},
    			},
    			wantPersistentVolume: &v1.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "pd.csi.storage.gke.io-test-disk",
    				},
    				Spec: v1.PersistentVolumeSpec{
    					PersistentVolumeSource: v1.PersistentVolumeSource{
    						CSI: &v1.CSIPersistentVolumeSource{
    							Driver:           "pd.csi.storage.gke.io",
    							VolumeHandle:     "projects/UNSPECIFIED/zones/UNSPECIFIED/disks/test-disk",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    passed if podInfoOnMount is set to true. 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\n                                defined by a CSIVolumeSource, otherwise \"false\"\n\n\"csi.storage.k8s.io/ephemeral\" is a new feature in Kubernetes 1.16. It is only required for drivers...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  10. 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)
Back to top