public sealed class NodeTaint : IMessage<NodeTaint>, IEquatable<NodeTaint>, IDeepCloneable<NodeTaint>, IBufferMessage, IMessage
Kubernetes taint is comprised of three fields: key, value, and effect. Effect can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute.
See here for more information, including usage and the valid values.
Implements
IMessage<NodeTaint>, IEquatable<NodeTaint>, IDeepCloneable<NodeTaint>, IBufferMessage, IMessageNamespace
Google.Cloud.Container.V1Assembly
Google.Cloud.Container.V1.dll
Constructors
NodeTaint()
public NodeTaint()
NodeTaint(NodeTaint)
public NodeTaint(NodeTaint other)
Parameter | |
---|---|
Name | Description |
other | NodeTaint |
Properties
Effect
public NodeTaint.Types.Effect Effect { get; set; }
Effect for taint.
Property Value | |
---|---|
Type | Description |
NodeTaint.Types.Effect |
Key
public string Key { get; set; }
Key for taint.
Property Value | |
---|---|
Type | Description |
String |
Value
public string Value { get; set; }
Value for taint.
Property Value | |
---|---|
Type | Description |
String |