Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 212 for rbd (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/core/fuzzer/fuzzer.go

    			s.Type = core.SecretTypeOpaque
    		},
    		func(r *core.RBDVolumeSource, c fuzz.Continue) {
    			r.RBDPool = c.RandString()
    			if r.RBDPool == "" {
    				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"
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NFSVolumeSource nfs = 5;
    
      // rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
      // More info: https://examples.k8s.io/volumes/rbd/README.md
      // +optional
      optional RBDPersistentVolumeSource rbd = 6;
    
      // iscsi represents an ISCSI Disk resource that is attached to a
    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

    	"pool":      "pool is the rados pool name. Default is rbd. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
    	"user":      "user is the rados user name. Default is admin. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
    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/api/pod/warnings_test.go

    		},
    
    		{
    			name: "rbd",
    			template: &api.PodTemplateSpec{Spec: api.PodSpec{
    				Volumes: []api.Volume{
    					{Name: "s", VolumeSource: api.VolumeSource{RBD: &api.RBDVolumeSource{}}},
    				}},
    			},
    			expected: []string{`spec.volumes[0].rbd: deprecated in v1.28, non-functional in v1.31+`},
    		},
    		{
    			name: "duplicate hostAlias",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NFSVolumeSource nfs = 5;
    
      // rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
      // More info: https://examples.k8s.io/volumes/rbd/README.md
      // +optional
      optional RBDPersistentVolumeSource rbd = 6;
    
      // iscsi represents an ISCSI Disk resource that is attached to a
    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