Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 242 for diskfis (0.12 sec)

  1. pkg/volume/fc/fc.go

    type fcDisk struct {
    	volName string
    	podUID  types.UID
    	wwns    []string
    	lun     string
    	wwids   []string
    	plugin  *fcPlugin
    	// Utility interface that provides API calls to the provider to attach/detach disks.
    	manager diskManager
    	// io handler interface
    	io ioHandler
    	volume.MetricsNil
    }
    
    func (fc *fcDisk) GetPath() string {
    	// safe to use PodVolumeDir now: volume teardown occurs before pod is cleaned up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/nodevolumelimits/non_csi.go

    	// GCE instances can have up to 16 PD volumes attached.
    	defaultMaxGCEPDVolumes = 16
    	// defaultMaxAzureDiskVolumes defines the maximum number of PD Volumes for Azure.
    	// Larger Azure VMs can actually have much more disks attached.
    	// TODO We should determine the max based on VM size
    	defaultMaxAzureDiskVolumes = 16
    
    	// ebsVolumeFilterType defines the filter name for ebsVolumeFilter.
    	ebsVolumeFilterType = "EBS"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 30 23:00:56 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  3. helm-releases/minio-2.0.1.tgz

    minio-user secret: secretName: {{ template "minio.secretName" . }} {{- include "minio.tlsKeysVolume" . | indent 8 }} {{- if .Values.persistence.enabled }} volumeClaimTemplates: {{- if gt $drivesPerNode 1 }} {{- range $diskId := until $drivesPerNode}} - metadata: name: export-{{ $diskId }} spec: accessModes: [ {{ $accessMode | quote }} ] {{- if $storageClass }} storageClassName: {{ $storageClass }} {{- end }} resources: requests: storage: {{ $psize }} {{- end }} {{- else }} - metadata: name: export...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 31 09:09:09 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    	"k8s.io/kubernetes/test/utils/ktesting"
    )
    
    const (
    	intreePDUniqueNamePrefix = "kubernetes.io/gce-pd/"
    	csiPDUniqueNamePrefix    = "kubernetes.io/csi/pd.csi.storage.gke.io^projects/UNSPECIFIED/zones/UNSPECIFIED/disks/"
    )
    
    func createADC(t testing.TB, tCtx ktesting.TContext, fakeKubeClient *fake.Clientset,
    	informerFactory informers.SharedInformerFactory, plugins []volume.VolumePlugin) *attachDetachController {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. pkg/volume/iscsi/iscsi.go

    	chapSession   bool
    	secret        map[string]string `datapolicy:"token"`
    	InitiatorName string
    	plugin        *iscsiPlugin
    	// Utility interface that provides API calls to the provider to attach/detach disks.
    	manager diskManager
    	volume.MetricsProvider
    }
    
    func (iscsi *iscsiDisk) GetPath() string {
    	name := iscsiPluginName
    	// safe to use PodVolumeDir now: volume teardown occurs before pod is cleaned up
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers.go

    		signalToRankFunc[evictionapi.SignalContainerFsInodesFree] = signalToRankFunc[evictionapi.SignalImageFsInodesFree]
    
    		// If both imagefs and container fs are on separate disks
    		// we want to track the writeable layer in containerfs signals.
    	} else if withImageFs && imageContainerSplitFs {
    		// with an imagefs, nodefs pod rank func for eviction only includes logs and local volumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. cmd/iam.go

    // LoadUser - reloads a specific user from backend disks or etcd.
    func (sys *IAMSys) LoadUser(ctx context.Context, objAPI ObjectLayer, accessKey string, userType IAMUserType) error {
    	if !sys.Initialized() {
    		return errServerNotInitialized
    	}
    
    	return sys.store.UserNotificationHandler(ctx, accessKey, userType)
    }
    
    // LoadServiceAccount - reloads a specific service account from backend disks or etcd.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. helm-releases/minio-1.0.2.tgz

    minio-user secret: secretName: {{ template "minio.secretName" . }} {{- include "minio.tlsKeysVolume" . | indent 8 }} {{- if .Values.persistence.enabled }} volumeClaimTemplates: {{- if gt $drivesPerNode 1 }} {{- range $diskId := until $drivesPerNode}} - metadata: name: export-{{ $diskId }} spec: accessModes: [ {{ $accessMode | quote }} ] {{- if $storageClass }} storageClassName: {{ $storageClass }} {{- end }} resources: requests: storage: {{ $psize }} {{- end }} {{- else }} - metadata: name: export...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 24 18:58:05 UTC 2021
    - 13.6K bytes
    - Viewed (0)
  9. cmd/peer-rest-server.go

    	}
    
    	hostMap := make(map[string]struct{})
    	for _, host := range values[peerRESTHost] {
    		hostMap[host] = struct{}{}
    	}
    
    	info := collectLocalMetrics(types, collectMetricsOpts{
    		disks: diskMap,
    		hosts: hostMap,
    		jobID: values.Get(peerRESTJobID),
    		depID: values.Get(peerRESTDepID),
    	})
    	return madminRealtimeMetrics.NewJSONWith(&info), nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. helm-releases/minio-3.0.0.tgz

    minio-user secret: secretName: {{ template "minio.secretName" . }} {{- include "minio.tlsKeysVolume" . | indent 8 }} {{- if .Values.persistence.enabled }} volumeClaimTemplates: {{- if gt $drivesPerNode 1 }} {{- range $diskId := until $drivesPerNode}} - metadata: name: export-{{ $diskId }} spec: accessModes: [ {{ $accessMode | quote }} ] {{- if $storageClass }} storageClassName: {{ $storageClass }} {{- end }} resources: requests: storage: {{ $psize }} {{- end }} {{- else }} - metadata: name: export...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 02 01:47:43 UTC 2021
    - 13.8K bytes
    - Viewed (0)
Back to top