Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 414 for volumeID (0.15 sec)

  1. docs/tls/kubernetes/README.md

    Whether you are planning to use Kubernetes StatefulSet or Kubernetes Deployment, the steps remain the same.
    
    If you're using certificates provided by a CA, add the below section in your yaml file under `spec.volumes[]`
    
    ```yaml
        volumes:
          - name: secret-volume
            secret:
              secretName: tls-ssl-minio
              items:
              - key: public.crt
                path: public.crt
              - key: private.key
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K 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/volume/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package volume includes internal representations of external volume types
    // as well as utility methods required to mount/unmount volumes to kubelets.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 781 bytes
    - Viewed (0)
  4. .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)
  5. operator/cmd/mesh/testdata/manifest-generate/input/sidecar_template.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      values:
        sidecarInjectorWebhook:
          defaultTemplates: ["sidecar", "credential-volume"]
          templates:
            credential-volume: |
              spec:
                volumes:
                - name: application-credentials
                  secret:
                    secretName: secret
                containers:
                - name: istio-proxy
                  volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 26 17:54:11 UTC 2021
    - 566 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/volume/metrics_block.go

    var _ MetricsProvider = &metricsBlock{}
    
    // metricsBlock represents a MetricsProvider that detects the size of the
    // BlockMode Volume.
    type metricsBlock struct {
    	// the device node where the volume is attached to.
    	device string
    }
    
    // NewMetricsStatfs creates a new metricsBlock with the device node of the
    // Volume.
    func NewMetricsBlock(device string) MetricsProvider {
    	return &metricsBlock{device}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top