Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for localVolumeSource (0.29 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            }
          },
          "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: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/apis/core/validation/validation_test.go

    			core.ResourceName(core.ResourceStorage): resource.MustParse("10G"),
    		},
    		AccessModes: []core.PersistentVolumeAccessMode{core.ReadWriteOnce},
    		PersistentVolumeSource: core.PersistentVolumeSource{
    			Local: &core.LocalVolumeSource{
    				Path: path,
    			},
    		},
    		NodeAffinity:     affinity,
    		StorageClassName: "test-storage-class",
    	}
    }
    
    func TestValidateLocalVolumes(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

                "type": "string"
              }
            },
            "type": "object",
            "x-kubernetes-map-type": "atomic"
          },
          "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: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top