Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mountOptions (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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