Class V1RBDPersistentVolumeSource
Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD
volumes support ownership management and SELinux relabeling.
Inheritance
V1RBDPersistentVolumeSource
Assembly: KubernetesClient.dll
Syntax
public record V1RBDPersistentVolumeSource : IEquatable<V1RBDPersistentVolumeSource>
Constructors
View Source
V1RBDPersistentVolumeSource()
Declaration
public V1RBDPersistentVolumeSource()
View Source
V1RBDPersistentVolumeSource(V1RBDPersistentVolumeSource)
Declaration
protected V1RBDPersistentVolumeSource(V1RBDPersistentVolumeSource original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
FsType
fsType is the filesystem type of the volume that you want to mount. Tip: Ensure
that the filesystem type is supported by the host operating system. Examples:
"ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. More
info: https://kubernetes.io/docs/concepts/storage/volumes#rbd
Declaration
[JsonPropertyName("fsType")]
public string FsType { get; set; }
Property Value
View Source
Image
Declaration
[JsonPropertyName("image")]
public string Image { get; set; }
Property Value
View Source
Keyring
Declaration
[JsonPropertyName("keyring")]
public string Keyring { get; set; }
Property Value
View Source
Monitors
Declaration
[JsonPropertyName("monitors")]
public IList<string> Monitors { get; set; }
Property Value
View Source
Pool
Declaration
[JsonPropertyName("pool")]
public string Pool { get; set; }
Property Value
View Source
ReadOnlyProperty
Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { get; set; }
Property Value
View Source
SecretRef
Declaration
[JsonPropertyName("secretRef")]
public V1SecretReference SecretRef { get; set; }
Property Value
View Source
User
Declaration
[JsonPropertyName("user")]
public string User { get; set; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1RBDPersistentVolumeSource?)
Declaration
public virtual bool Equals(V1RBDPersistentVolumeSource? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1RBDPersistentVolumeSource?, V1RBDPersistentVolumeSource?)
Declaration
public static bool operator ==(V1RBDPersistentVolumeSource? left, V1RBDPersistentVolumeSource? right)
Parameters
Returns
View Source
operator !=(V1RBDPersistentVolumeSource?, V1RBDPersistentVolumeSource?)
Declaration
public static bool operator !=(V1RBDPersistentVolumeSource? left, V1RBDPersistentVolumeSource? right)
Parameters
Returns
Implements