Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 542 for scsi (0.12 sec)

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

    	// +optional
    	NFS *NFSVolumeSource `json:"nfs,omitempty" protobuf:"bytes,7,opt,name=nfs"`
    	// iscsi represents an ISCSI Disk resource that is attached to a
    	// kubelet's host machine and then exposed to the pod.
    	// More info: https://examples.k8s.io/volumes/iscsi/README.md
    	// +optional
    	ISCSI *ISCSIVolumeSource `json:"iscsi,omitempty" protobuf:"bytes,8,opt,name=iscsi"`
    	// glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. 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)
  3. samples/security/spire/istio-spire-config.yaml

                  - name: workload-socket
                    mountPath: /run/secrets/workload-spiffe-uds
                    readOnly: true
                volumes:
                  - name: workload-socket
                    csi:
                      driver: "csi.spiffe.io"
                      readOnly: true
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
            label:
              istio: ingressgateway
            k8s:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/storage/v1alpha1/zz_generated.defaults.go

    			v1.SetDefaults_RBDPersistentVolumeSource(in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.RBD)
    		}
    		if in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.ISCSI != nil {
    			v1.SetDefaults_ISCSIPersistentVolumeSource(in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.ISCSI)
    		}
    		if in.Spec.Source.InlineVolumeSpec.PersistentVolumeSource.AzureDisk != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 2.7K 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. pkg/volume/csi/csi_client.go

    	)
    }
    
    // CSI client getter with cache.
    // This provides a method to initialize CSI client with driver name and caches
    // it for later use. When CSI clients have not been discovered yet (e.g.
    // on kubelet restart), client initialization will fail. Users of CSI client (e.g.
    // mounter manager and block mapper) can use this to delay CSI client
    // initialization until needed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 20 10:15:36 UTC 2022
    - 22.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top