Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ecsi (0.05 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    }
    
    // findDetachablePluginBySpec is a variant of VolumePluginMgr.FindAttachablePluginByName() function.
    // The difference is that it bypass the CanAttach() check for CSI plugin, i.e. it assumes all CSI plugin supports detach.
    // The intention here is that a CSI plugin volume can end up in an Uncertain state,  so that a detach
    // operation will help it to detach no matter it actually has the ability to attach/detach.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

          if [[ "${i}" -lt "${scsiblocknum}" ]]; then
            mount-ext "${ssd}" "${devicenum}" "scsi" "block"
          else
            # GKE does not set NODE_LOCAL_SSDS so all non-block devices
            # are assumed to be filesystem devices
            mount-ext "${ssd}" "${devicenum}" "scsi" "fs"
          fi
          i=$((i+1))
        else
          echo "No local SCSI SSD disks found."
        fi
      done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. pkg/api/pod/util_test.go

    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.StorageOS.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					CSI: &api.CSIVolumeSource{
    						NodePublishSecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.CSI.NodePublishSecretRef"}}}}},
    			EphemeralContainers: []api.EphemeralContainer{{
    				EphemeralContainerCommon: api.EphemeralContainerCommon{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    		(*in).DeepCopyInto(*out)
    	}
    	if in.StorageOS != nil {
    		in, out := &in.StorageOS, &out.StorageOS
    		*out = new(StorageOSPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.CSI != nil {
    		in, out := &in.CSI, &out.CSI
    		*out = new(CSIPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		(*in).DeepCopyInto(*out)
    	}
    	if in.StorageOS != nil {
    		in, out := &in.StorageOS, &out.StorageOS
    		*out = new(StorageOSPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.CSI != nil {
    		in, out := &in.CSI, &out.CSI
    		*out = new(CSIPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

        exit 2
      fi
      if [[ "${ssdopts[1]}" != "scsi" && "${ssdopts[1]}" != "nvme" ]]; then
        echo -e "${color_red}Local SSD: Interface must be scsi or nvme, found: ${ssdopts[1]} ${color_norm}" >&2
        exit 2
      fi
      if [[ "${ssdopts[2]}" != "fs" && "${ssdopts[2]}" != "block" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// and inform container to reopen log file after log rotation.
    	kl.containerLogManager.Start()
    	// Adding Registration Callback function for CSI Driver
    	kl.pluginManager.AddHandler(pluginwatcherapi.CSIPlugin, plugincache.PluginHandler(csi.PluginHandler))
    	// Adding Registration Callback function for DRA Plugin
    	if utilfeature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    		{Name: "Name", Type: "string", Format: "name", Description: metav1.ObjectMeta{}.SwaggerDoc()["name"]},
    		{Name: "Drivers", Type: "integer", Description: "Drivers indicates the number of CSI drivers registered on the node"},
    		{Name: "Age", Type: "string", Description: metav1.ObjectMeta{}.SwaggerDoc()["creationTimestamp"]},
    	}
    	_ = h.TableHandler(csiNodeColumnDefinitions, printCSINode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top