Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for ceph (0.05 sec)

  1. pkg/controller/volume/expand/expand_controller_test.go

    		},
    		{
    			name:            "for csi plugin without migration path",
    			pv:              getFakePersistentVolume("vol-5", "com.csi.ceph", "1Gi", "ceph-csi-pvc-vol-6"),
    			pvc:             getFakePersistentVolumeClaim("ceph-csi-pvc", "vol-5", "1Gi", "2Gi", "ceph-csi-pvc-vol-6"),
    			pvcKey:          "default/ceph-csi-pvc",
    			expansionCalled: false,
    			hasError:        false,
    		},
    	}
    
    	for _, tc := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    // can't be scheduled there.
    // This is GCE, Amazon EBS, ISCSI and Ceph RBD specific for now:
    // - GCE PD allows multiple mounts as long as they're all read-only
    // - AWS EBS forbids any two pods mounting the same volume ID
    // - Ceph RBD forbids if any two pods share at least same monitor, and match pool and image, and the image is read-only
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults.go

    		obj.RadosUser = "admin"
    	}
    	if obj.Keyring == "" {
    		obj.Keyring = "/etc/ceph/keyring"
    	}
    }
    
    func SetDefaults_RBDPersistentVolumeSource(obj *v1.RBDPersistentVolumeSource) {
    	if obj.RBDPool == "" {
    		obj.RBDPool = "rbd"
    	}
    	if obj.RadosUser == "" {
    		obj.RadosUser = "admin"
    	}
    	if obj.Keyring == "" {
    		obj.Keyring = "/etc/ceph/keyring"
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/apis/core/fuzzer/fuzzer.go

    				r.RBDPool = "rbd"
    			}
    			r.RadosUser = c.RandString()
    			if r.RadosUser == "" {
    				r.RadosUser = "admin"
    			}
    			r.Keyring = c.RandString()
    			if r.Keyring == "" {
    				r.Keyring = "/etc/ceph/keyring"
    			}
    		},
    		func(r *core.RBDPersistentVolumeSource, c fuzz.Continue) {
    			r.RBDPool = c.RandString()
    			if r.RBDPool == "" {
    				r.RBDPool = "rbd"
    			}
    			r.RadosUser = c.RandString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    ## Changes by Kind
    
    ### Deprecation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	const testPlugin = "non-migrated-plugin"
    	const migratedPlugin = "kubernetes.io/gce-pd"
    	const migratedDriver = "pd.csi.storage.gke.io"
    	const nonmigratedPlugin = "kubernetes.io/rbd"
    	const nonmigratedDriver = "rbd.csi.ceph.com"
    	tests := []struct {
    		name                 string
    		volumeAnnotations    map[string]string
    		expVolumeAnnotations map[string]string
    		claimAnnotations     map[string]string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // Removed capabilities
      // +optional
      repeated string drop = 2;
    }
    
    // Represents a Ceph Filesystem mount that lasts the lifetime of a pod
    // Cephfs volumes do not support ownership management or SELinux relabeling.
    message CephFSPersistentVolumeSource {
      // monitors is Required: Monitors is a collection of Ceph monitors
      // More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":           "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.",
    	"monitors":   "monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it",
    	"path":       "path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    }
    
    // CephFSVolumeSource represents a Ceph Filesystem mount that lasts the lifetime of a pod
    // Cephfs volumes do not support ownership management or SELinux relabeling.
    type CephFSVolumeSource struct {
    	// Required: Monitors is a collection of Ceph monitors
    	Monitors []string
    	// Optional: Used as the mounted root, rather than the full Ceph tree, default is /
    	// +optional
    	Path string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string drop = 2;
    }
    
    // Represents a Ceph Filesystem mount that lasts the lifetime of a pod
    // Cephfs volumes do not support ownership management or SELinux relabeling.
    message CephFSPersistentVolumeSource {
      // monitors is Required: Monitors is a collection of Ceph monitors
      // More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top