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
View Source
V1CephFSVolumeSource()
Declaration
public V1CephFSVolumeSource()
View Source
V1CephFSVolumeSource(V1CephFSVolumeSource)
Declaration
protected V1CephFSVolumeSource(V1CephFSVolumeSource original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Monitors
Declaration
[JsonPropertyName("monitors")]
public IList<string> Monitors { get; set; }
Property Value
View Source
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
View Source
ReadOnlyProperty
Declaration
[JsonPropertyName("readOnly")]
public bool? ReadOnlyProperty { get; set; }
Property Value
View Source
SecretFile
Declaration
[JsonPropertyName("secretFile")]
public string SecretFile { get; set; }
Property Value
View Source
SecretRef
Declaration
[JsonPropertyName("secretRef")]
public V1LocalObjectReference 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(V1CephFSVolumeSource?)
Declaration
public virtual bool Equals(V1CephFSVolumeSource? 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 ==(V1CephFSVolumeSource?, V1CephFSVolumeSource?)
Declaration
public static bool operator ==(V1CephFSVolumeSource? left, V1CephFSVolumeSource? right)
Parameters
Returns
View Source
operator !=(V1CephFSVolumeSource?, V1CephFSVolumeSource?)
Declaration
public static bool operator !=(V1CephFSVolumeSource? left, V1CephFSVolumeSource? right)
Parameters
Returns
Implements