Class NodeTaint (2.4.0)

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.

Inheritance

Object > NodeTaint

Namespace

Google.Cloud.Container.V1

Assembly

Google.Cloud.Container.V1.dll

Constructors

NodeTaint()

public NodeTaint()

NodeTaint(NodeTaint)

public NodeTaint(NodeTaint other)
Parameter
NameDescription
otherNodeTaint

Properties

Effect

public NodeTaint.Types.Effect Effect { get; set; }

Effect for taint.

Property Value
TypeDescription
NodeTaint.Types.Effect

Key

public string Key { get; set; }

Key for taint.

Property Value
TypeDescription
String

Value

public string Value { get; set; }

Value for taint.

Property Value
TypeDescription
String