Class V1RBDVolumeSource
Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD
volumes support ownership management and SELinux relabeling.
Inheritance
V1RBDVolumeSource
Assembly: KubernetesClient.dll
Syntax
public record V1RBDVolumeSource : IEquatable<V1RBDVolumeSource>
Constructors
V1RBDVolumeSource()
Declaration
public V1RBDVolumeSource()
V1RBDVolumeSource(V1RBDVolumeSource)
Declaration
protected V1RBDVolumeSource(V1RBDVolumeSource original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
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
Image
Declaration
[JsonPropertyName("image")]
public string Image { get; set; }
Property Value
Keyring
Declaration
[JsonPropertyName("keyring")]
public string Keyring { get; set; }
Property Value
Monitors
Declaration
[JsonPropertyName("monitors")]
public IList<string> Monitors { get; set; }
Property Value
Pool
Declaration
[JsonPropertyName("pool")]
public string Pool { get; set; }
Property Value
ReadOnlyProperty
Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { get; set; }
Property Value
SecretRef
Declaration
[JsonPropertyName("secretRef")]
public V1LocalObjectReference SecretRef { get; set; }
Property Value
User
Declaration
[JsonPropertyName("user")]
public string User { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1RBDVolumeSource?)
Declaration
public virtual bool Equals(V1RBDVolumeSource? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1RBDVolumeSource?, V1RBDVolumeSource?)
Declaration
public static bool operator ==(V1RBDVolumeSource? left, V1RBDVolumeSource? right)
Parameters
Returns
operator !=(V1RBDVolumeSource?, V1RBDVolumeSource?)
Declaration
public static bool operator !=(V1RBDVolumeSource? left, V1RBDVolumeSource? right)
Parameters
Returns
Implements