Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for gcePersistentDisk (0.27 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// gcePersistentDisk represents a GCE Disk resource that is attached to a
    	// kubelet's host machine and then exposed to the pod.
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
    	// +optional
    	GCEPersistentDisk *GCEPersistentDiskVolumeSource `json:"gcePersistentDisk,omitempty" protobuf:"bytes,3,opt,name=gcePersistentDisk"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

    message PersistentVolumeSource {
      // gcePersistentDisk represents a GCE Disk resource that is attached to a
      // kubelet's host machine and then exposed to the pod. Provisioned by an admin.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
      // +optional
      optional GCEPersistentDiskVolumeSource gcePersistentDisk = 1;
    
    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. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"gcePersistentDisk":    "gcePersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

    message PersistentVolumeSource {
      // gcePersistentDisk represents a GCE Disk resource that is attached to a
      // kubelet's host machine and then exposed to the pod. Provisioned by an admin.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk
      // +optional
      optional GCEPersistentDiskVolumeSource gcePersistentDisk = 1;
    
    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. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_PersistentVolumeSource_To_core_PersistentVolumeSource(in *v1.PersistentVolumeSource, out *core.PersistentVolumeSource, s conversion.Scope) error {
    	out.GCEPersistentDisk = (*core.GCEPersistentDiskVolumeSource)(unsafe.Pointer(in.GCEPersistentDisk))
    	out.AWSElasticBlockStore = (*core.AWSElasticBlockStoreVolumeSource)(unsafe.Pointer(in.AWSElasticBlockStore))
    	out.HostPath = (*core.HostPathVolumeSource)(unsafe.Pointer(in.HostPath))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    		}
    	}
    	if source.GCEPersistentDisk != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("gcePersistentDisk"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateGCEPersistentDiskVolumeSource(source.GCEPersistentDisk, fldPath.Child("persistentDisk"))...)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "pdName": {
                "default": "",
                "description": "pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "pdName": {
                "default": "",
                "description": "pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk",
                "type": "string"
              },
    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/types.go

    	// EmptyDir represents a temporary directory that shares a pod's lifetime.
    	// +optional
    	EmptyDir *EmptyDirVolumeSource
    	// GCEPersistentDisk represents a GCE Disk resource that is attached to a
    	// kubelet's host machine and then exposed to the pod.
    	// +optional
    	GCEPersistentDisk *GCEPersistentDiskVolumeSource
    	// AWSElasticBlockStore represents an AWS EBS disk that is attached to a
    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