Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for portworxVolume (0.48 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

                        "optional": true,
                        "path": "pathValue"
                      }
                    }
                  ],
                  "defaultMode": 2
                },
                "portworxVolume": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true
                },
                "scaleIO": {
                  "gateway": "gatewayValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

                        "optional": true,
                        "path": "pathValue"
                      }
                    }
                  ],
                  "defaultMode": 2
                },
                "portworxVolume": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true
                },
                "scaleIO": {
                  "gateway": "gatewayValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

          server: serverValue
        persistentVolumeClaim:
          claimName: claimNameValue
          readOnly: true
        photonPersistentDisk:
          fsType: fsTypeValue
          pdID: pdIDValue
        portworxVolume:
          fsType: fsTypeValue
          readOnly: true
          volumeID: volumeIDValue
        projected:
          defaultMode: 2
          sources:
          - clusterTrustBundle:
              labelSelector:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.json

                    },
                    "optional": true,
                    "path": "pathValue"
                  }
                }
              ],
              "defaultMode": 2
            },
            "portworxVolume": {
              "volumeID": "volumeIDValue",
              "fsType": "fsTypeValue",
              "readOnly": true
            },
            "scaleIO": {
              "gateway": "gatewayValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

                        "optional": true,
                        "path": "pathValue"
                      }
                    }
                  ],
                  "defaultMode": 2
                },
                "portworxVolume": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true
                },
                "scaleIO": {
                  "gateway": "gatewayValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

                        "optional": true,
                        "path": "pathValue"
                      }
                    }
                  ],
                  "defaultMode": 2
                },
                "portworxVolume": {
                  "volumeID": "volumeIDValue",
                  "fsType": "fsTypeValue",
                  "readOnly": true
                },
                "scaleIO": {
                  "gateway": "gatewayValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  7. pkg/apis/core/zz_generated.deepcopy.go

    	if in.PhotonPersistentDisk != nil {
    		in, out := &in.PhotonPersistentDisk, &out.PhotonPersistentDisk
    		*out = new(PhotonPersistentDiskVolumeSource)
    		**out = **in
    	}
    	if in.PortworxVolume != nil {
    		in, out := &in.PortworxVolume, &out.PortworxVolume
    		*out = new(PortworxVolumeSource)
    		**out = **in
    	}
    	if in.ScaleIO != nil {
    		in, out := &in.ScaleIO, &out.ScaleIO
    		*out = new(ScaleIOPersistentVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	if in.PhotonPersistentDisk != nil {
    		in, out := &in.PhotonPersistentDisk, &out.PhotonPersistentDisk
    		*out = new(PhotonPersistentDiskVolumeSource)
    		**out = **in
    	}
    	if in.PortworxVolume != nil {
    		in, out := &in.PortworxVolume, &out.PortworxVolume
    		*out = new(PortworxVolumeSource)
    		**out = **in
    	}
    	if in.ScaleIO != nil {
    		in, out := &in.ScaleIO, &out.ScaleIO
    		*out = new(ScaleIOPersistentVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		}
    	}
    	if source.PortworxVolume != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("portworxVolume"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validatePortworxVolumeSource(source.PortworxVolume, fldPath.Child("portworxVolume"))...)
    		}
    	}
    	if source.AzureDisk != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/zz_generated.conversion.go

    	out.AzureDisk = (*core.AzureDiskVolumeSource)(unsafe.Pointer(in.AzureDisk))
    	out.PhotonPersistentDisk = (*core.PhotonPersistentDiskVolumeSource)(unsafe.Pointer(in.PhotonPersistentDisk))
    	out.PortworxVolume = (*core.PortworxVolumeSource)(unsafe.Pointer(in.PortworxVolume))
    	out.ScaleIO = (*core.ScaleIOPersistentVolumeSource)(unsafe.Pointer(in.ScaleIO))
    	out.Local = (*core.LocalVolumeSource)(unsafe.Pointer(in.Local))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top