com.coralogix.zio.k8s.model.core.v1
PersistentVolumeClaimVolumeSource
Companion object PersistentVolumeClaimVolumeSource
case class PersistentVolumeClaimVolumeSource(claimName: String, readOnly: Optional[Boolean] = Optional.Absent) extends Product with Serializable
PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).
- claimName
ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
- readOnly
Will force the ReadOnly setting in VolumeMounts. Default false.
- Alphabetic
- By Inheritance
- PersistentVolumeClaimVolumeSource
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
PersistentVolumeClaimVolumeSource(claimName: String, readOnly: Optional[Boolean] = Optional.Absent)
- claimName
ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
- readOnly
Will force the ReadOnly setting in VolumeMounts. Default false.
Value Members
- val claimName: String
-
def
getClaimName: IO[K8sFailure, String]
ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume.
ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims
This effect always succeeds, it is safe to use the field claimName directly.
-
def
getReadOnly: IO[K8sFailure, Boolean]
Will force the ReadOnly setting in VolumeMounts.
Will force the ReadOnly setting in VolumeMounts. Default false.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val readOnly: Optional[Boolean]