Class V1CephFSVolumeSource
Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs
volumes do not support ownership management or SELinux relabeling.
Inheritance
V1CephFSVolumeSource
Assembly: KubernetesClient.dll
Syntax
public record V1CephFSVolumeSource : IEquatable<V1CephFSVolumeSource>
Constructors
V1CephFSVolumeSource()
Declaration
public V1CephFSVolumeSource()
V1CephFSVolumeSource(V1CephFSVolumeSource)
Declaration
protected V1CephFSVolumeSource(V1CephFSVolumeSource original)
Parameters
Properties
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Monitors
Declaration
[JsonPropertyName("monitors")]
public IList<string> Monitors { get; set; }
Property Value
Path
path is Optional: Used as the mounted root, rather than the full Ceph tree,
default is /
Declaration
[JsonPropertyName("path")]
public string Path { get; set; }
Property Value
ReadOnlyProperty
Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { get; set; }
Property Value
SecretFile
Declaration
[JsonPropertyName("secretFile")]
public string SecretFile { 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(V1CephFSVolumeSource?)
Declaration
public virtual bool Equals(V1CephFSVolumeSource? 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 ==(V1CephFSVolumeSource?, V1CephFSVolumeSource?)
Declaration
public static bool operator ==(V1CephFSVolumeSource? left, V1CephFSVolumeSource? right)
Parameters
Returns
operator !=(V1CephFSVolumeSource?, V1CephFSVolumeSource?)
Declaration
public static bool operator !=(V1CephFSVolumeSource? left, V1CephFSVolumeSource? right)
Parameters
Returns
Implements