Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 150 for Pd (0.05 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

    //
    // A GCE PD must exist before mounting to a container. The disk must
    // also be in the same GCE project and zone as the kubelet. A GCE PD
    // can only be mounted as read/write once or read-only many times. GCE
    // PDs support ownership management and SELinux relabeling.
    message GCEPersistentDiskVolumeSource {
      // pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			Name: string(nodeName),
    		},
    		Spec: v1.NodeSpec{},
    		Status: v1.NodeStatus{
    			VolumesAttached: []v1.AttachedVolume{
    				{
    					Name:       v1.UniqueVolumeName(fmt.Sprintf("fake-plugin/%s", "pd.csi.storage.gke.io-fake-device1")),
    					DevicePath: "fake/path",
    				},
    			},
    		},
    	}
    	volumePluginMgr, fakePlugin := volumetesting.GetTestKubeletVolumePluginMgrWithNode(t, node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

    * Assume volume is detached if node doesn't exist ([#29485](https://github.com/kubernetes/kubernetes/pull/29485), [@saad-ali](https://github.com/saad-ali))
    * Make PD E2E Tests Wait for Detach to Prevent Kernel Errors ([#29031](https://github.com/kubernetes/kubernetes/pull/29031), [@saad-ali](https://github.com/saad-ali))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. pkg/volume/util/util.go

    	// MountsInGlobalPDPath is name of the directory appended to a volume plugin
    	// name to create the place for volume mounts in the global PD path.
    	MountsInGlobalPDPath = "mounts"
    
    	// VolumeGidAnnotationKey is the of the annotation on the PersistentVolume
    	// object that specifies a supplemental GID.
    	VolumeGidAnnotationKey = "pv.beta.kubernetes.io/gid"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    //
    // A GCE PD must exist before mounting to a container. The disk must
    // also be in the same GCE project and zone as the kubelet. A GCE PD
    // can only be mounted as read/write once or read-only many times. GCE
    // PDs support ownership management and SELinux relabeling.
    type GCEPersistentDiskVolumeSource struct {
    	// pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE.
    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. pkg/apis/core/validation/validation.go

    }
    
    func validateGCEPersistentDiskVolumeSource(pd *core.GCEPersistentDiskVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(pd.PDName) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("pdName"), ""))
    	}
    	if pd.Partition < 0 || pd.Partition > 255 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("partition"), pd.Partition, pdPartitionErrorMsg))
    	}
    	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)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "readOnly": {
              "description": "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
              "type": "boolean"
            },
            "secretRef": {
    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. pkg/apis/storage/types.go

    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// provisioner is the driver expected to handle this StorageClass.
    	// This is an optionally-prefixed name, like a label key.
    	// For example: "kubernetes.io/gce-pd" or "kubernetes.io/aws-ebs".
    	// This value may not be empty.
    	Provisioner string
    
    	// parameters holds parameters for the provisioner.
    	// These values are opaque to the  system and are passed directly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  9. src/unicode/tables.go

    	Other  = _C // Other/C is the set of Unicode control and special characters, category C.
    	C      = _C
    	Pc     = _Pc // Pc is the set of Unicode characters in category Pc (Punctuation, connector).
    	Pd     = _Pd // Pd is the set of Unicode characters in category Pd (Punctuation, dash).
    	Pe     = _Pe // Pe is the set of Unicode characters in category Pe (Punctuation, close).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  10. pkg/features/kube_features.go

    	//
    	// Disables the Azure File in-tree driver.
    	InTreePluginAzureFileUnregister featuregate.Feature = "InTreePluginAzureFileUnregister"
    
    	// owner: @Jiawei0227
    	// alpha: v1.21
    	//
    	// Disables the GCE PD in-tree driver.
    	InTreePluginGCEUnregister featuregate.Feature = "InTreePluginGCEUnregister"
    
    	// owner: @adisky
    	// alpha: v1.21
    	//
    	// Disables the OpenStack Cinder in-tree driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top