Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 190 for volumeID (0.12 sec)

  1. docs/orchestration/docker-compose/docker-compose.yaml

    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - data1-1:/data1
          - data1-2:/data2
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - data2-1:/data1
          - data2-2:/data2
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - data3-1:/data1
          - data3-2:/data2
    
      minio4:
        <<: *minio-common
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 05:40:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. pkg/controller/volume/ephemeral/controller_test.go

    	}
    
    	return pvc
    }
    
    func makeEphemeralVolume(name string) *v1.Volume {
    	return &v1.Volume{
    		Name: name,
    		VolumeSource: v1.VolumeSource{
    			Ephemeral: &v1.EphemeralVolumeSource{
    				VolumeClaimTemplate: &v1.PersistentVolumeClaimTemplate{},
    			},
    		},
    	}
    }
    
    func makePod(name, namespace string, uid types.UID, volumes ...v1.Volume) *v1.Pod {
    	pvc := &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. pkg/controller/volume/ephemeral/controller.go

    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/component-helpers/storage/ephemeral"
    	"k8s.io/kubernetes/pkg/controller/volume/common"
    	ephemeralvolumemetrics "k8s.io/kubernetes/pkg/controller/volume/ephemeral/metrics"
    	"k8s.io/kubernetes/pkg/controller/volume/events"
    )
    
    // Controller creates PVCs for ephemeral inline volumes in a pod spec.
    type Controller interface {
    	Run(ctx context.Context, workers int)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. pkg/volume/nfs/nfs.go

    func ProbeVolumePlugins(volumeConfig volume.VolumeConfig) []volume.VolumePlugin {
    	return []volume.VolumePlugin{
    		&nfsPlugin{
    			host:   nil,
    			config: volumeConfig,
    		},
    	}
    }
    
    type nfsPlugin struct {
    	host   volume.VolumeHost
    	config volume.VolumeConfig
    }
    
    var _ volume.VolumePlugin = &nfsPlugin{}
    var _ volume.PersistentVolumePlugin = &nfsPlugin{}
    var _ volume.RecyclableVolumePlugin = &nfsPlugin{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. cmd/storage-rest-common.go

    )
    
    const (
    	storageRESTVolume        = "volume"
    	storageRESTVolumes       = "volumes"
    	storageRESTDirPath       = "dir-path"
    	storageRESTFilePath      = "file-path"
    	storageRESTVersionID     = "version-id"
    	storageRESTReadData      = "read-data"
    	storageRESTHealing       = "healing"
    	storageRESTTotalVersions = "total-versions"
    	storageRESTSrcVolume     = "source-volume"
    	storageRESTSrcPath       = "source-path"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

    }
    
    // VolumeAttachmentSource represents a volume that should be attached.
    // Right now only PersistenVolumes can be attached via external attacher,
    // in future we may allow also inline volumes in pods.
    // Exactly one member can be set.
    message VolumeAttachmentSource {
      // persistentVolumeName represents the name of the persistent volume to attach.
      // +optional
      optional string persistentVolumeName = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. cmd/naughty-disk_test.go

    }
    
    func (d *naughtyDisk) MakeVolBulk(ctx context.Context, volumes ...string) (err error) {
    	if err := d.calcError(); err != nil {
    		return err
    	}
    	return d.disk.MakeVolBulk(ctx, volumes...)
    }
    
    func (d *naughtyDisk) MakeVol(ctx context.Context, volume string) (err error) {
    	if err := d.calcError(); err != nil {
    		return err
    	}
    	return d.disk.MakeVol(ctx, volume)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/desired_state_of_wold_selinux_metrics.go

    		},
    		[]string{"access_mode"},
    	)
    	seLinuxPodContextMismatchErrors = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Name:           "volume_manager_selinux_pod_context_mismatch_errors_total",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 12:16:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pkg/volume/plugins_test.go

    	if err == nil {
    		t.Errorf("Should return error if volume spec is nil")
    	}
    
    	volumeSpec := &Spec{}
    	_, err = vpm.FindPluginBySpec(volumeSpec)
    	if err != nil {
    		t.Errorf("Should return test plugin if volume spec is not nil")
    	}
    }
    
    func Test_ValidatePodTemplate(t *testing.T) {
    	pod := &v1.Pod{
    		Spec: v1.PodSpec{
    			Volumes: []v1.Volume{
    				{
    					Name:         "vol",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    	fs.StringVar(&o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.PodTemplateFilePathNFS, "pv-recycler-pod-template-filepath-nfs", o.VolumeConfiguration.PersistentVolumeRecyclerConfiguration.PodTemplateFilePathNFS, "The file path to a pod definition used as a template for NFS persistent volume recycling")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top