CephFSVolumeSourcePatchArgs

data class CephFSVolumeSourcePatchArgs(val monitors: Output<List<String>>? = null, val path: Output<String>? = null, val readOnly: Output<Boolean>? = null, val secretFile: Output<String>? = null, val secretRef: Output<LocalObjectReferencePatchArgs>? = null, val user: Output<String>? = null) : ConvertibleToJava<CephFSVolumeSourcePatchArgs>

Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.

Constructors

Link copied to clipboard
constructor(monitors: Output<List<String>>? = null, path: Output<String>? = null, readOnly: Output<Boolean>? = null, secretFile: Output<String>? = null, secretRef: Output<LocalObjectReferencePatchArgs>? = null, user: Output<String>? = null)

Properties

Link copied to clipboard
val monitors: Output<List<String>>? = null

monitors is Required: Monitors is a collection of Ceph monitors More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

Link copied to clipboard
val path: Output<String>? = null

path is Optional: Used as the mounted root, rather than the full Ceph tree, default is /

Link copied to clipboard
val readOnly: Output<Boolean>? = null

readOnly is Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

Link copied to clipboard
val secretFile: Output<String>? = null

secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

Link copied to clipboard

secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

Link copied to clipboard
val user: Output<String>? = null

user is optional: User is the rados user name, default is admin More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it

Functions

Link copied to clipboard
open override fun toJava(): CephFSVolumeSourcePatchArgs