Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for RBDVolumeSource (0.45 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.RBDVolumeSource)(nil), (*core.RBDVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_RBDVolumeSource_To_core_RBDVolumeSource(a.(*v1.RBDVolumeSource), b.(*core.RBDVolumeSource), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// +optional
    	EndpointsNamespace *string
    }
    
    // RBDVolumeSource represents a Rados Block Device mount that lasts the lifetime of a pod.
    // RBD volumes support ownership management and SELinux relabeling.
    type RBDVolumeSource struct {
    	// Required: CephMonitors is a collection of Ceph monitors
    	CephMonitors []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)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional bool readOnly = 8;
    }
    
    // Represents a Rados Block Device mount that lasts the lifetime of a pod.
    // RBD volumes support ownership management and SELinux relabeling.
    message RBDVolumeSource {
      // monitors is a collection of Ceph monitors.
      // More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
      repeated string monitors = 1;
    
      // image is the rados image name.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional bool readOnly = 8;
    }
    
    // Represents a Rados Block Device mount that lasts the lifetime of a pod.
    // RBD volumes support ownership management and SELinux relabeling.
    message RBDVolumeSource {
      // monitors is a collection of Ceph monitors.
      // More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it
      // +listType=atomic
      repeated string monitors = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// 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
    	RBD *RBDVolumeSource `json:"rbd,omitempty" protobuf:"bytes,11,opt,name=rbd"`
    	// flexVolume represents a generic volume resource that is
    	// provisioned/attached using an exec based plugin.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "registry",
              "volume"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.RBDVolumeSource": {
            "description": "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.",
            "properties": {
              "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"readOnly":  "readOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it",
    }
    
    func (RBDVolumeSource) SwaggerDoc() map[string]string {
    	return map_RBDVolumeSource
    }
    
    var map_RangeAllocation = map[string]string{
    	"":         "RangeAllocation is not a public type.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath, targetPath, "must not start with '..'"))
    	}
    	return allErrs
    }
    
    func validateRBDVolumeSource(rbd *core.RBDVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(rbd.CephMonitors) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("monitors"), ""))
    	}
    	if len(rbd.RBDImage) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top