Package org.cdk8s.plus24
Class Node
- java.lang.Object
-
- software.amazon.jsii.JsiiObject
-
- org.cdk8s.plus24.Node
-
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.75.0 (build 63bb957)", date="2023-02-20T02:42:01.899Z") @Stability(Stable) public class Node extends software.amazon.jsii.JsiiObject
Represents a node in the cluster.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LabeledNode
labeled(@NotNull NodeLabelQuery... labelSelector)
Match a node by its labels.static NamedNode
named(String nodeName)
Match a node by its name.static TaintedNode
tainted(@NotNull NodeTaintQuery... taintSelector)
Match a node by its taints.-
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
-
-
-
-
Method Detail
-
labeled
@Stability(Stable) @NotNull public static LabeledNode labeled(@NotNull @NotNull NodeLabelQuery... labelSelector)
Match a node by its labels.- Parameters:
labelSelector
- This parameter is required.
-
named
@Stability(Stable) @NotNull public static NamedNode named(@NotNull String nodeName)
Match a node by its name.- Parameters:
nodeName
- This parameter is required.
-
tainted
@Stability(Stable) @NotNull public static TaintedNode tainted(@NotNull @NotNull NodeTaintQuery... taintSelector)
Match a node by its taints.- Parameters:
taintSelector
- This parameter is required.
-
-