Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for rbd (0.46 sec)

  1. pkg/apis/apps/v1/zz_generated.defaults.go

    			corev1.SetDefaults_SecretVolumeSource(a.VolumeSource.Secret)
    		}
    		if a.VolumeSource.ISCSI != nil {
    			corev1.SetDefaults_ISCSIVolumeSource(a.VolumeSource.ISCSI)
    		}
    		if a.VolumeSource.RBD != nil {
    			corev1.SetDefaults_RBDVolumeSource(a.VolumeSource.RBD)
    		}
    		if a.VolumeSource.DownwardAPI != nil {
    			corev1.SetDefaults_DownwardAPIVolumeSource(a.VolumeSource.DownwardAPI)
    			for j := range a.VolumeSource.DownwardAPI.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 40.8K bytes
    - Viewed (0)
  2. pkg/apis/batch/v1beta1/zz_generated.defaults.go

    			v1.SetDefaults_SecretVolumeSource(a.VolumeSource.Secret)
    		}
    		if a.VolumeSource.ISCSI != nil {
    			v1.SetDefaults_ISCSIVolumeSource(a.VolumeSource.ISCSI)
    		}
    		if a.VolumeSource.RBD != nil {
    			v1.SetDefaults_RBDVolumeSource(a.VolumeSource.RBD)
    		}
    		if a.VolumeSource.DownwardAPI != nil {
    			v1.SetDefaults_DownwardAPIVolumeSource(a.VolumeSource.DownwardAPI)
    			for j := range a.VolumeSource.DownwardAPI.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 20:39:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1beta1/zz_generated.defaults.go

    			v1.SetDefaults_SecretVolumeSource(a.VolumeSource.Secret)
    		}
    		if a.VolumeSource.ISCSI != nil {
    			v1.SetDefaults_ISCSIVolumeSource(a.VolumeSource.ISCSI)
    		}
    		if a.VolumeSource.RBD != nil {
    			v1.SetDefaults_RBDVolumeSource(a.VolumeSource.RBD)
    		}
    		if a.VolumeSource.DownwardAPI != nil {
    			v1.SetDefaults_DownwardAPIVolumeSource(a.VolumeSource.DownwardAPI)
    			for j := range a.VolumeSource.DownwardAPI.Items {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 20.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller_test.go

    	}
    }
    
    func TestAnnealMigrationAnnotations(t *testing.T) {
    	// The gce-pd plugin is used to test a migrated plugin (as the feature is
    	// locked as of 1.25), and rbd is used as a non-migrated plugin (still alpha
    	// as of 1.25). As plugins are migrated, rbd should be changed to a non-
    	// migrated plugin. If there are no other non-migrated plugins, then those
    	// test cases are moot and they can be removed (keeping only the test cases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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