Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for volumeID (0.33 sec)

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

    	// volume is a string that references an already created Quobyte volume by name.
    	Volume string `json:"volume" protobuf:"bytes,2,opt,name=volume"`
    
    	// readOnly here will force the Quobyte volume to be mounted with read-only permissions.
    	// Defaults to false.
    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
    
    	// user to map volume access to
    	// Defaults to serivceaccount user
    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. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Volume)(nil), (*core.Volume)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_Volume_To_core_Volume(a.(*v1.Volume), b.(*core.Volume), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.Volume)(nil), (*v1.Volume)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    var map_CinderVolumeSource = map[string]string{
    	"":          "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.",
    	"volumeID":  "volumeID used to identify the volume in cinder. More info: https://examples.k8s.io/mysql-cinder-pd/README.md",
    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

    // Represents a cinder volume resource in Openstack.
    // A Cinder volume must exist before mounting to a container.
    // The volume must also be in the same region as the kubelet.
    // Cinder volumes support ownership management and SELinux relabeling.
    message CinderPersistentVolumeSource {
      // volumeID used to identify the volume in cinder.
      // More info: https://examples.k8s.io/mysql-cinder-pd/README.md
      optional string volumeID = 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/validation/validation.go

    	// this was done to preserve backwards compatibility
    
    	if pod.Spec.ServiceAccountName == "" {
    		for vi, volume := range pod.Spec.Volumes {
    			path := specPath.Child("volumes").Index(vi).Child("projected")
    			if volume.Projected != nil {
    				for si, source := range volume.Projected.Sources {
    					saPath := path.Child("sources").Index(si).Child("serviceAccountToken")
    					if source.ServiceAccountToken != 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)
  6. pkg/apis/core/types.go

    }
    
    // CinderVolumeSource represents a cinder volume resource in Openstack. A Cinder volume
    // must exist before mounting to a container. The volume must also be
    // in the same region as the kubelet. Cinder volumes support ownership
    // management and SELinux relabeling.
    type CinderVolumeSource struct {
    	// Unique id of the volume used to identify the cinder volume.
    	VolumeID string
    	// Filesystem type to mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "boolean"
              },
              "volumeID": {
                "default": "",
                "description": "volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
                "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)
  8. CHANGELOG/CHANGELOG-1.28.md

    - Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached, Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@jsafrane](https://github.com/jsafrane))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

       ([#122285](https://github.com/kubernetes/kubernetes/pull/122285), [@sanposhiho](https://github.com/sanposhiho))
    - Removed the incorrect warning event `FileSystemResizeFailed` during pod creation if it uses a readonly volume and the capacity of the volume is greater than or equal to its requested storage.
       ([#122508](https://github.com/kubernetes/kubernetes/pull/122508), [@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. CHANGELOG/CHANGELOG-1.27.md

    - Add e2e test to node expand volume with secret ([#115451](https://github.com/kubernetes/kubernetes/pull/115451), [@zhucan](https://github.com/zhucan)) [SIG Storage and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top