Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for storageClassName (0.26 sec)

  1. pkg/apis/core/validation/validation.go

    	}
    
    	if spec.StorageClassName != nil && len(*spec.StorageClassName) > 0 {
    		for _, msg := range ValidateClassName(*spec.StorageClassName, false) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("storageClassName"), *spec.StorageClassName, msg))
    		}
    	}
    	if spec.VolumeMode != nil && !supportedVolumeModes.Has(*spec.VolumeMode) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value
    	// means that this volume does not belong to any StorageClass.
    	// +optional
    	StorageClassName string `json:"storageClassName,omitempty" protobuf:"bytes,6,opt,name=storageClassName"`
    	// mountOptions is the list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
    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. pkg/apis/core/v1/zz_generated.conversion.go

    	if err := Convert_v1_VolumeResourceRequirements_To_core_VolumeResourceRequirements(&in.Resources, &out.Resources, s); err != nil {
    		return err
    	}
    	out.VolumeName = in.VolumeName
    	out.StorageClassName = (*string)(unsafe.Pointer(in.StorageClassName))
    	out.VolumeMode = (*core.PersistentVolumeMode)(unsafe.Pointer(in.VolumeMode))
    	out.DataSource = (*core.TypedLocalObjectReference)(unsafe.Pointer(in.DataSource))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"volumeName":                "volumeName is the binding reference to the PersistentVolume backing this claim.",
    	"storageClassName":          "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string volumeName = 3;
    
      // storageClassName is the name of the StorageClass required by the claim.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
      // +optional
      optional string storageClassName = 5;
    
      // volumeMode defines what type of volume is required by the claim.
    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. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string volumeName = 3;
    
      // storageClassName is the name of the StorageClass required by the claim.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
      // +optional
      optional string storageClassName = 5;
    
      // volumeMode defines what type of volume is required by the claim.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                  }
                ],
                "description": "scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes."
              },
              "storageClassName": {
                "description": "storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
                "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. pkg/apis/core/types.go

    	PersistentVolumeReclaimPolicy PersistentVolumeReclaimPolicy
    	// Name of StorageClass to which this persistent volume belongs. Empty value
    	// means that this volume does not belong to any StorageClass.
    	// +optional
    	StorageClassName string
    	// A list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
    	// simply fail if one is invalid.
    	// +optional
    	MountOptions []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. CHANGELOG/CHANGELOG-1.30.md

    - The PersistentVolume controller no longer automatically assigns a default `StorageClass` to Persistent Volume Claims (PVCs) with an empty `storageClassName`.
       ([#122704](https://github.com/kubernetes/kubernetes/pull/122704), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  }
                ],
                "description": "selector is a label query over volumes to consider for binding."
              },
              "storageClassName": {
                "description": "storageClassName is the name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1",
                "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)
Back to top