Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 156 for ecsi (1.36 sec)

  1. 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)
  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. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/storage/v1alpha1/types_swagger_doc_generated.go

    	"nodeTopology":      "nodeTopology...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. cluster/gce/config-default.sh

    KUBE_CREATE_NODES="${KUBE_CREATE_NODES:-true}"
    
    # An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices
    # Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple
    # configurations by separating them by a semi-colon ex. "2,scsi,fs;1,nvme,block"
    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  8. cluster/gce/config-test.sh

    KUBE_CREATE_NODES=${KUBE_CREATE_NODES:-true}
    
    # An extension to local SSDs allowing users to specify block/fs and SCSI/NVMe devices
    # Format of this variable will be "#,scsi/nvme,block/fs" you can specify multiple
    # configurations by separating them by a semi-colon ex. "2,scsi,fs;1,nvme,block"
    # is a request for 2 SCSI formatted and mounted SSDs and 1 NVMe block device SSD.
    NODE_LOCAL_SSDS_EXT=${NODE_LOCAL_SSDS_EXT:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  9. pkg/volume/csi/nodeinfomanager/nodeinfomanager.go

    limitations under the License.
    */
    
    // Package nodeinfomanager includes internal functions used to add/delete labels to
    // kubernetes nodes for corresponding CSI drivers
    package nodeinfomanager // import "k8s.io/kubernetes/pkg/volume/csi/nodeinfomanager"
    
    import (
    	"context"
    	"encoding/json"
    	goerrors "errors"
    	"fmt"
    	"math"
    	"strings"
    	"sync"
    
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/util/util.go

    		return false, nil
    	}
    
    	if csiMigratedPluginManager.IsMigrationCompleteForPlugin(pluginName) {
    		// All nodes are expected to have migrated CSI plugin installed and
    		// configured when CSI Migration Complete flag is enabled for a plugin.
    		// CSI migration is supported even if there is version skew between
    		// managers and node.
    		return true, nil
    	}
    
    	if len(nodeName) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top