Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 246 for volumeID (0.22 sec)

  1. .github/workflows/multipart/docker-compose-site1.yaml

      site1-minio1:
        <<: *minio-common
        hostname: site1-minio1
        volumes:
          - site1-data1-1:/data1
          - site1-data1-2:/data2
    
      site1-minio2:
        <<: *minio-common
        hostname: site1-minio2
        volumes:
          - site1-data2-1:/data1
          - site1-data2-2:/data2
    
      site1-minio3:
        <<: *minio-common
        hostname: site1-minio3
        volumes:
          - site1-data3-1:/data1
          - site1-data3-2:/data2
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Sep 30 10:13:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pkg/volume/git_repo/git_repo.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/volume"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/utils/exec"
    	utilstrings "k8s.io/utils/strings"
    )
    
    // This is the primary entrypoint for volume plugins.
    func ProbeVolumePlugins() []volume.VolumePlugin {
    	return []volume.VolumePlugin{&gitRepoPlugin{nil}}
    }
    
    type gitRepoPlugin struct {
    	host volume.VolumeHost
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. 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)
  4. .github/workflows/mint/minio-erasure.yaml

          - minio1
    
    ## By default this config uses default local driver,
    ## For custom volumes replace with volume driver configuration.
    volumes:
      edata1-1:
      edata1-2:
      edata1-3:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. .github/workflows/mint/minio-pools.yaml

        hostname: minio4
        volumes:
          - pdata4-1:/pdata1
          - pdata4-2:/pdata2
    
      minio5:
        <<: *minio-common
        hostname: minio5
        volumes:
          - pdata5-1:/pdata1
          - pdata5-2:/pdata2
    
      minio6:
        <<: *minio-common
        hostname: minio6
        volumes:
          - pdata6-1:/pdata1
          - pdata6-2:/pdata2
    
      minio7:
        <<: *minio-common
        hostname: minio7
        volumes:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 03 21:18:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top