Class V1DaemonSetSpec
DaemonSetSpec is the specification of a daemon set.
Inheritance
V1DaemonSetSpec
Assembly: KubernetesClient.dll
Syntax
public record V1DaemonSetSpec : IEquatable<V1DaemonSetSpec>
Constructors
View Source
V1DaemonSetSpec()
Declaration
View Source
V1DaemonSetSpec(V1DaemonSetSpec)
Declaration
protected V1DaemonSetSpec(V1DaemonSetSpec original)
Parameters
Properties
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
MinReadySeconds
The minimum number of seconds for which a newly created DaemonSet pod should be
ready without any of its container crashing, for it to be considered available.
Defaults to 0 (pod will be considered available as soon as it is ready).
Declaration
[JsonPropertyName("minReadySeconds")]
public int? MinReadySeconds { get; set; }
Property Value
View Source
RevisionHistoryLimit
The number of old history to retain to allow rollback. This is a pointer to
distinguish between explicit zero and not specified. Defaults to 10.
Declaration
[JsonPropertyName("revisionHistoryLimit")]
public int? RevisionHistoryLimit { get; set; }
Property Value
View Source
Selector
Declaration
[JsonPropertyName("selector")]
public V1LabelSelector Selector { get; set; }
Property Value
View Source
Template
Declaration
[JsonPropertyName("template")]
public V1PodTemplateSpec Template { get; set; }
Property Value
View Source
UpdateStrategy
An update strategy to replace existing DaemonSet pods with new pods.
Declaration
[JsonPropertyName("updateStrategy")]
public V1DaemonSetUpdateStrategy UpdateStrategy { 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(V1DaemonSetSpec?)
Declaration
public virtual bool Equals(V1DaemonSetSpec? 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 ==(V1DaemonSetSpec?, V1DaemonSetSpec?)
Declaration
public static bool operator ==(V1DaemonSetSpec? left, V1DaemonSetSpec? right)
Parameters
Returns
View Source
operator !=(V1DaemonSetSpec?, V1DaemonSetSpec?)
Declaration
public static bool operator !=(V1DaemonSetSpec? left, V1DaemonSetSpec? right)
Parameters
Returns
Implements