Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for volumePath (0.53 sec)

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

    }
    
    func autoConvert_v1_VsphereVirtualDiskVolumeSource_To_core_VsphereVirtualDiskVolumeSource(in *v1.VsphereVirtualDiskVolumeSource, out *core.VsphereVirtualDiskVolumeSource, s conversion.Scope) error {
    	out.VolumePath = in.VolumePath
    	out.FSType = in.FSType
    	out.StoragePolicyName = in.StoragePolicyName
    	out.StoragePolicyID = in.StoragePolicyID
    	return nil
    }
    
    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. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // Represents a vSphere volume resource.
    type VsphereVirtualDiskVolumeSource struct {
    	// volumePath is the path that identifies vSphere volume vmdk
    	VolumePath string `json:"volumePath" protobuf:"bytes,1,opt,name=volumePath"`
    	// fsType is filesystem type to mount.
    	// Must be a filesystem type supported by the host operating system.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "volumePath": {
                "default": "",
                "description": "volumePath is the path that identifies vSphere volume vmdk",
                "type": "string"
              }
            },
            "required": [
              "volumePath"
            ],
            "type": "object"
          },
          "io.k8s.api.storage.v1.CSIDriver": {
    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. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // +optional
      optional EphemeralVolumeSource ephemeral = 29;
    }
    
    // Represents a vSphere volume resource.
    message VsphereVirtualDiskVolumeSource {
      // volumePath is the path that identifies vSphere volume vmdk
      optional string volumePath = 1;
    
      // fsType is filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_VolumeSource
    }
    
    var map_VsphereVirtualDiskVolumeSource = map[string]string{
    	"":                  "Represents a vSphere volume resource.",
    	"volumePath":        "volumePath is the path that identifies vSphere volume vmdk",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "volumePath": {
                "default": "",
                "description": "volumePath is the path that identifies vSphere volume vmdk",
                "type": "string"
              }
            },
            "required": [
              "volumePath"
            ],
            "type": "object"
          },
    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. pkg/apis/core/validation/validation.go

    	return allErrs
    }
    
    func validateVsphereVolumeSource(cd *core.VsphereVirtualDiskVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(cd.VolumePath) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("volumePath"), ""))
    	}
    	return allErrs
    }
    
    func validatePhotonPersistentDiskVolumeSource(cd *core.PhotonPersistentDiskVolumeSource, fldPath *field.Path) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.6.md

    * Fix panic in vSphere cloud provider ([#38423](https://github.com/kubernetes/kubernetes/pull/38423), [@BaluDontu](https://github.com/BaluDontu))
    * Fix space issue in volumePath with vSphere Cloud Provider ([#38338](https://github.com/kubernetes/kubernetes/pull/38338), [@BaluDontu](https://github.com/BaluDontu))
    
    ### Federation
    
    #### kubefed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      //
      // +optional
      optional EphemeralVolumeSource ephemeral = 29;
    }
    
    // Represents a vSphere volume resource.
    message VsphereVirtualDiskVolumeSource {
      // volumePath is the path that identifies vSphere volume vmdk
      optional string volumePath = 1;
    
      // fsType is filesystem type to mount.
      // Must be a filesystem type supported by the host operating system.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	SecretNamespace *string
    }
    
    // VsphereVirtualDiskVolumeSource represents a vSphere volume resource.
    type VsphereVirtualDiskVolumeSource struct {
    	// Path that identifies vSphere volume vmdk
    	VolumePath string
    	// Filesystem type to mount.
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top