Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for volumeID (0.23 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. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. api/openapi-spec/v3/apis__storage.k8s.io__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: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.21.md

    ### Generic Ephemeral Volumes
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top