Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for localVolumeSource (0.43 sec)

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.LocalVolumeSource)(nil), (*core.LocalVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_LocalVolumeSource_To_core_LocalVolumeSource(a.(*v1.LocalVolumeSource), b.(*core.LocalVolumeSource), 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/zz_generated.deepcopy.go

    func (in *LocalVolumeSource) DeepCopyInto(out *LocalVolumeSource) {
    	*out = *in
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalVolumeSource.
    func (in *LocalVolumeSource) DeepCopy() *LocalVolumeSource {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *LocalVolumeSource) DeepCopyInto(out *LocalVolumeSource) {
    	*out = *in
    	if in.FSType != nil {
    		in, out := &in.FSType, &out.FSType
    		*out = new(string)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalVolumeSource.
    func (in *LocalVolumeSource) DeepCopy() *LocalVolumeSource {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *LocalVolumeSource) Reset()      { *m = LocalVolumeSource{} }
    func (*LocalVolumeSource) ProtoMessage() {}
    func (*LocalVolumeSource) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{88}
    }
    func (m *LocalVolumeSource) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *LocalVolumeSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// mode, like fsGroup, and the result can be other mode bits set.
    	// +optional
    	Mode *int32
    }
    
    // LocalVolumeSource represents directly-attached storage with node affinity (Beta feature)
    type LocalVolumeSource struct {
    	// The full path to the volume on the node.
    	// It can be either a directory or block device (disk, partition, ...).
    	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)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      optional string name = 1;
    }
    
    // Local represents directly-attached storage with node affinity (Beta feature)
    message LocalVolumeSource {
      // path of the full path to the volume on the node.
      // It can be either a directory or block device (disk, partition, ...).
      optional string path = 1;
    
      // fsType is the filesystem type to mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	ScaleIO *ScaleIOPersistentVolumeSource `json:"scaleIO,omitempty" protobuf:"bytes,19,opt,name=scaleIO"`
    	// local represents directly-attached storage with node affinity
    	// +optional
    	Local *LocalVolumeSource `json:"local,omitempty" protobuf:"bytes,20,opt,name=local"`
    	// storageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (LocalVolumeSource) SwaggerDoc() map[string]string {
    	return map_LocalVolumeSource
    }
    
    var map_ModifyVolumeStatus = map[string]string{
    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/validation/validation.go

    	}
    	if sio.VolumeName == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("volumeName"), ""))
    	}
    	return allErrs
    }
    
    func validateLocalVolumeSource(ls *core.LocalVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if ls.Path == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("path"), ""))
    		return allErrs
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  10. pkg/generated/openapi/zz_generated.openapi.go

    		"k8s.io/api/core/v1.LocalObjectReference":                                                               schema_k8sio_api_core_v1_LocalObjectReference(ref),
    		"k8s.io/api/core/v1.LocalVolumeSource":                                                                  schema_k8sio_api_core_v1_LocalVolumeSource(ref),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top