Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mountOptions (0.27 sec)

  1. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
              },
              "mountOptions": {
                "description": "mountOptions controls the mountOptions for dynamically provisioned PersistentVolumes of this storage class. e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.",
                "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	out.PersistentVolumeReclaimPolicy = core.PersistentVolumeReclaimPolicy(in.PersistentVolumeReclaimPolicy)
    	out.StorageClassName = in.StorageClassName
    	out.MountOptions = *(*[]string)(unsafe.Pointer(&in.MountOptions))
    	out.VolumeMode = (*core.PersistentVolumeMode)(unsafe.Pointer(in.VolumeMode))
    	out.NodeAffinity = (*core.VolumeNodeAffinity)(unsafe.Pointer(in.NodeAffinity))
    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.go

    	// mountOptions is the list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
    	// simply fail if one is invalid.
    	// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options
    	// +optional
    	// +listType=atomic
    	MountOptions []string `json:"mountOptions,omitempty" protobuf:"bytes,7,opt,name=mountOptions"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string storageClassName = 6;
    
      // mountOptions is the list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
      // simply fail if one is invalid.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options
      // +optional
      repeated string mountOptions = 7;
    
    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/types_swagger_doc_generated.go

    	"storageClassName":              "storageClassName is the name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.",
    	"mountOptions":                  "mountOptions is the list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string storageClassName = 6;
    
      // mountOptions is the list of mount options, e.g. ["ro", "soft"]. Not validated - mount will
      // simply fail if one is invalid.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options
      // +optional
      // +listType=atomic
      repeated string mountOptions = 7;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    #### Storage
    
    * [stable] Mount options
    
      * The ability to specify mount options for volumes is moved from beta to stable.
    
      * A new `MountOptions` field in the `PersistentVolume` spec is available to specify mount options. This field replaces an annotation.
    
      * A new `MountOptions` field in the `StorageClass` spec allows configuration of mount options for dynamically provisioned volumes.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// +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
    	// volumeMode defines if a volume is intended to be used with a formatted filesystem
    	// or to remain in raw block state. Value of Filesystem is implied when not included in spec.
    	// +optional
    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