Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 362 for ecsi (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/volume/csi/csi_attacher.go

    			// inline PV scenario - use PV spec to populate VA source.
    			// The volume spec will be populated by CSI translation API
    			// for inline volumes. This allows fields required by the CSI
    			// attacher such as AccessMode and MountOptions (in addition to
    			// fields in the CSI persistent volume source) to be populated
    			// as part of CSI translation for inline volumes.
    			vaSrc = storage.VolumeAttachmentSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/expand/expand_controller_test.go

    			expansionCalled: false,
    		},
    		{
    			name:            "for csi plugin without migration path",
    			pv:              getFakePersistentVolume("vol-5", "com.csi.ceph", "1Gi", "ceph-csi-pvc-vol-6"),
    			pvc:             getFakePersistentVolumeClaim("ceph-csi-pvc", "vol-5", "1Gi", "2Gi", "ceph-csi-pvc-vol-6"),
    			pvcKey:          "default/ceph-csi-pvc",
    			expansionCalled: false,
    			hasError:        false,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. pkg/volume/csi/expander.go

    	csiSource, err := getCSISourceFromSpec(resizeOptions.VolumeSpec)
    	if err != nil {
    		return false, errors.New(log("Expander.NodeExpand failed to get CSI persistent source: %v", err))
    	}
    
    	csClient, err := newCsiDriverClient(csiDriverName(csiSource.Driver))
    	if err != nil {
    		// Treat the absence of the CSI driver as a transient error
    		// See https://github.com/kubernetes/kubernetes/issues/120268
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1alpha1/types.go

    	// Name of the CSI driver
    	// This field is immutable.
    	DriverName string `json:"driverName" protobuf:"bytes,2,opt,name=driverName"`
    
    	// 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: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. samples/security/spire/spire-quickstart.yaml

            # This is the container which runs the SPIFFE CSI driver.
            - name: spiffe-csi-driver
              image: ghcr.io/spiffe/spiffe-csi-driver:0.2.0
              imagePullPolicy: IfNotPresent
              args: [
                  "-workload-api-socket-dir", "/spire-agent-socket",
                  "-csi-socket-path", "/spiffe-csi/csi.sock",
              ]
              env:
                # The CSI driver needs a unique node ID. The node name can be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_metrics.go

    	currentTime := metav1.Now()
    	ctx, cancel := context.WithTimeout(context.Background(), csiTimeout)
    	defer cancel()
    	// Get CSI client
    	csiClient, err := mc.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 nil, volumetypes.NewTransientOperationFailure(err.Error())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller_test.go

    			expectedVolumes: volumesWithAnnotation(volume.AnnDynamicallyProvisioned, "gcr.io/vendor-csi", []*v1.PersistentVolume{newExternalProvisionedVolume("volume5-6", "10Gi", "uid5-6", "claim5-6",...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top