Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for PortworxVolumeSource (0.59 sec)

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

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.PortworxVolumeSource)(nil), (*core.PortworxVolumeSource)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_PortworxVolumeSource_To_core_PortworxVolumeSource(a.(*v1.PortworxVolumeSource), b.(*core.PortworxVolumeSource), 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. common-protos/k8s.io/api/core/v1/generated.proto

      // +kubebuilder:validation:MaxLength=316
      optional string error = 3;
    }
    
    // PortworxVolumeSource represents a Portworx volume resource.
    message PortworxVolumeSource {
      // volumeID uniquely identifies a Portworx volume
      optional string volumeID = 1;
    
      // fSType represents 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)
  3. pkg/apis/core/types.go

    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    	FSType string
    }
    
    // PortworxVolumeSource represents a Portworx volume resource.
    type PortworxVolumeSource struct {
    	// VolumeID uniquely identifies a Portworx volume
    	VolumeID string
    	// FSType represents the filesystem type to mount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // +kubebuilder:validation:MaxLength=316
      optional string error = 3;
    }
    
    // PortworxVolumeSource represents a Portworx volume resource.
    message PortworxVolumeSource {
      // volumeID uniquely identifies a Portworx volume
      optional string volumeID = 1;
    
      // fSType represents 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. staging/src/k8s.io/api/core/v1/types.go

    	Kind *AzureDataDiskKind `json:"kind,omitempty" protobuf:"bytes,6,opt,name=kind,casttype=AzureDataDiskKind"`
    }
    
    // PortworxVolumeSource represents a Portworx volume resource.
    type PortworxVolumeSource struct {
    	// volumeID uniquely identifies a Portworx volume
    	VolumeID string `json:"volumeID" protobuf:"bytes,1,opt,name=volumeID"`
    	// fSType represents the filesystem type to mount
    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__storage.k8s.io__v1_openapi.json

                "type": "string"
              }
            },
            "required": [
              "pdID"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.PortworxVolumeSource": {
            "description": "PortworxVolumeSource represents a Portworx volume resource.",
            "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)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (PortStatus) SwaggerDoc() map[string]string {
    	return map_PortStatus
    }
    
    var map_PortworxVolumeSource = map[string]string{
    	"":         "PortworxVolumeSource represents a Portworx volume resource.",
    	"volumeID": "volumeID uniquely identifies a Portworx volume",
    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. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            "type": "object"
          },
          "io.k8s.api.core.v1.PortworxVolumeSource": {
            "description": "PortworxVolumeSource represents a Portworx volume resource.",
            "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)
  9. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	if len(cd.PdID) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("pdID"), ""))
    	}
    	return allErrs
    }
    
    func validatePortworxVolumeSource(pwx *core.PortworxVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(pwx.VolumeID) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("volumeID"), ""))
    	}
    	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 (0)
Back to top