Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for localVolumeSource (0.33 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/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)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // TODO: Add other useful fields. apiVersion, kind, uid?
      // +optional
      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: 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 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)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

              }
            },
            "required": [
              "targetPortal",
              "iqn",
              "lun"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.LocalVolumeSource": {
            "description": "Local represents directly-attached storage with node affinity (Beta feature)",
            "properties": {
              "fsType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
Back to top