Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for PdID (0.06 sec)

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

    }
    
    func autoConvert_v1_PhotonPersistentDiskVolumeSource_To_core_PhotonPersistentDiskVolumeSource(in *v1.PhotonPersistentDiskVolumeSource, out *core.PhotonPersistentDiskVolumeSource, s conversion.Scope) error {
    	out.PdID = in.PdID
    	out.FSType = in.FSType
    	return nil
    }
    
    // Convert_v1_PhotonPersistentDiskVolumeSource_To_core_PhotonPersistentDiskVolumeSource is an autogenerated conversion function.
    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 Photon Controller persistent disk resource.
    type PhotonPersistentDiskVolumeSource struct {
    	// pdID is the ID that identifies Photon Controller persistent disk
    	PdID string `json:"pdID" protobuf:"bytes,1,opt,name=pdID"`
    	// fsType is the 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. CHANGELOG/CHANGELOG-1.6.md

    #### Photon
    * Fix photon controller plugin to construct with correct PdID ([#37167](https://github.com/kubernetes/kubernetes/pull/37167), [@luomiao](https://github.com/luomiao))
    
    #### rbd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // Represents a Photon Controller persistent disk resource.
    message PhotonPersistentDiskVolumeSource {
      // pdID is the ID that identifies Photon Controller persistent disk
      optional string pdID = 1;
    
      // fsType is the 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)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "string"
              },
              "pdID": {
                "default": "",
                "description": "pdID is the ID that identifies Photon Controller persistent disk",
                "type": "string"
              }
            },
            "required": [
              "pdID"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.PortworxVolumeSource": {
    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_swagger_doc_generated.go

    	return map_PersistentVolumeStatus
    }
    
    var map_PhotonPersistentDiskVolumeSource = map[string]string{
    	"":       "Represents a Photon Controller persistent disk resource.",
    	"pdID":   "pdID is the ID that identifies Photon Controller persistent disk",
    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

    }
    
    func validatePhotonPersistentDiskVolumeSource(cd *core.PhotonPersistentDiskVolumeSource, fldPath *field.Path) field.ErrorList {
    	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{}
    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. pkg/apis/core/types.go

    }
    
    // PhotonPersistentDiskVolumeSource represents a Photon Controller persistent disk resource.
    type PhotonPersistentDiskVolumeSource struct {
    	// ID that identifies Photon Controller persistent disk
    	PdID 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.
    	FSType 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)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "pdID": {
                "default": "",
                "description": "pdID is the ID that identifies Photon Controller persistent disk",
                "type": "string"
              }
            },
            "required": [
              "pdID"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.PodAffinity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top