Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for rbd (0.09 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.VolumeAttachment.yaml

          quobyte:
            group: groupValue
            readOnly: true
            registry: registryValue
            tenant: tenantValue
            user: userValue
            volume: volumeValue
          rbd:
            fsType: fsTypeValue
            image: imageValue
            keyring: keyringValue
            monitors:
            - monitorsValue
            pool: poolValue
            readOnly: true
            secretRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1.VolumeAttachment.yaml

          quobyte:
            group: groupValue
            readOnly: true
            registry: registryValue
            tenant: tenantValue
            user: userValue
            volume: volumeValue
          rbd:
            fsType: fsTypeValue
            image: imageValue
            keyring: keyringValue
            monitors:
            - monitorsValue
            pool: poolValue
            readOnly: true
            secretRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumespec.go

    	b.NFS = value
    	return b
    }
    
    // WithRBD sets the RBD field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the RBD field is set to the value of the last call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. pkg/volume/testing/testing.go

    	} else if spec.Volume != nil && spec.Volume.RBD != nil {
    		volumeName = spec.Volume.RBD.RBDImage
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.GCEPersistentDisk != nil {
    		volumeName = spec.PersistentVolume.Spec.GCEPersistentDisk.PDName
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.RBD != nil {
    		volumeName = spec.PersistentVolume.Spec.RBD.RBDImage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions_test.go

    func TestRBDDiskConflicts(t *testing.T) {
    	volState := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			RBD: &v1.RBDVolumeSource{
    				CephMonitors: []string{"a", "b"},
    				RBDPool:      "foo",
    				RBDImage:     "bar",
    				FSType:       "ext4",
    			},
    		},
    	}
    	volState2 := v1.Volume{
    		VolumeSource: v1.VolumeSource{
    			RBD: &v1.RBDVolumeSource{
    				CephMonitors: []string{"c", "d"},
    				RBDPool:      "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults_test.go

    		".Spec.Volumes[0].VolumeSource.RBD.Keyring":                                                   `"/etc/ceph/keyring"`,
    		".Spec.Volumes[0].VolumeSource.RBD.RBDPool":                                                   `"rbd"`,
    		".Spec.Volumes[0].VolumeSource.RBD.RadosUser":                                                 `"admin"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/defaults.go

    	if obj.RBDPool == "" {
    		obj.RBDPool = "rbd"
    	}
    	if obj.RadosUser == "" {
    		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"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/testing/testvolumespec.go

    			return spec.PersistentVolume.Spec.PersistentVolumeSource.NFS.Server, nil
    		} else if spec.PersistentVolume.Spec.PersistentVolumeSource.RBD != nil {
    			return spec.PersistentVolume.Spec.PersistentVolumeSource.RBD.RBDImage, nil
    		}
    		return "", fmt.Errorf("GetVolumeName called with unexpected PersistentVolume: %v", spec)
    	} else {
    		return "", nil
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 17 08:48:30 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  9. pkg/api/pod/warnings.go

    		}
    		if v.RBD != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.28, non-functional in v1.31+", fieldPath.Child("spec", "volumes").Index(i).Child("rbd")))
    		}
    	}
    
    	// duplicate hostAliases (#91670, #58477)
    	if len(podSpec.HostAliases) > 1 {
    		items := sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. pkg/api/v1/pod/util_test.go

    									Name: "Spec.Volumes[*].VolumeSource.Projected.Sources[*].Secret"}}}}}}}, {
    				VolumeSource: v1.VolumeSource{
    					RBD: &v1.RBDVolumeSource{
    						SecretRef: &v1.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.RBD.SecretRef"}}}}, {
    				VolumeSource: v1.VolumeSource{
    					Secret: &v1.SecretVolumeSource{
    						SecretName: "Spec.Volumes[*].VolumeSource.Secret.SecretName"}}}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
Back to top