CephFSVolumeSource

io.k8s.api.core.v1.CephFSVolumeSource
See theCephFSVolumeSource companion object
final case class CephFSVolumeSource(monitors: Seq[String], path: Option[String], readOnly: Option[Boolean], secretRef: Option[LocalObjectReference], secretFile: Option[String], user: Option[String])

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

Attributes

Companion
object
Source
CephFSVolumeSource.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def addMonitors(newValues: String*): CephFSVolumeSource

Appends new values to monitors

Appends new values to monitors

Attributes

Source
CephFSVolumeSource.scala
def mapMonitors(f: Seq[String] => Seq[String]): CephFSVolumeSource

transforms monitors to result of function

transforms monitors to result of function

Attributes

Source
CephFSVolumeSource.scala
def mapPath(f: String => String): CephFSVolumeSource

if path has a value, transforms to the result of function

if path has a value, transforms to the result of function

Attributes

Source
CephFSVolumeSource.scala
def mapReadOnly(f: Boolean => Boolean): CephFSVolumeSource

if readOnly has a value, transforms to the result of function

if readOnly has a value, transforms to the result of function

Attributes

Source
CephFSVolumeSource.scala
def mapSecretFile(f: String => String): CephFSVolumeSource

if secretFile has a value, transforms to the result of function

if secretFile has a value, transforms to the result of function

Attributes

Source
CephFSVolumeSource.scala

if secretRef has a value, transforms to the result of function

if secretRef has a value, transforms to the result of function

Attributes

Source
CephFSVolumeSource.scala
def mapUser(f: String => String): CephFSVolumeSource

if user has a value, transforms to the result of function

if user has a value, transforms to the result of function

Attributes

Source
CephFSVolumeSource.scala
def withMonitors(value: Seq[String]): CephFSVolumeSource

Returns a new data with monitors set to new value

Returns a new data with monitors set to new value

Attributes

Source
CephFSVolumeSource.scala
def withPath(value: String): CephFSVolumeSource

Returns a new data with path set to new value

Returns a new data with path set to new value

Attributes

Source
CephFSVolumeSource.scala
def withReadOnly(value: Boolean): CephFSVolumeSource

Returns a new data with readOnly set to new value

Returns a new data with readOnly set to new value

Attributes

Source
CephFSVolumeSource.scala
def withSecretFile(value: String): CephFSVolumeSource

Returns a new data with secretFile set to new value

Returns a new data with secretFile set to new value

Attributes

Source
CephFSVolumeSource.scala

Returns a new data with secretRef set to new value

Returns a new data with secretRef set to new value

Attributes

Source
CephFSVolumeSource.scala
def withUser(value: String): CephFSVolumeSource

Returns a new data with user set to new value

Returns a new data with user set to new value

Attributes

Source
CephFSVolumeSource.scala

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product