Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 158 for PdID (0.11 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.5.md

    * kubelet: don't reject pods without adding them to the pod manager ([#37661](https://github.com/kubernetes/kubernetes/pull/37661), [@yujuhong](https://github.com/yujuhong))
    * Fix photon controller plugin to construct with correct PdID ([#37167](https://github.com/kubernetes/kubernetes/pull/37167), [@luomiao](https://github.com/luomiao))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. api/openapi-spec/v3/apis__apps__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 May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "pdID": {
              "description": "ID that identifies Photon Controller persistent disk",
              "type": "string"
            }
          },
          "required": [
            "pdID"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.Pod": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top