Package org.cdk8s.plus24.k8s
Interface KubeNodeProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeNodeProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-11-24T11:18:28.875Z") @Stability(Stable) public interface KubeNodeProps extends software.amazon.jsii.JsiiSerializable
Node is a worker node in Kubernetes.Each node will have a unique identifier in the cache (i.e. in etcd).
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
KubeNodeProps.Builder
A builder forKubeNodeProps
static class
KubeNodeProps.Jsii$Proxy
An implementation forKubeNodeProps
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static KubeNodeProps.Builder
builder()
default ObjectMeta
getMetadata()
Standard object's metadata.default NodeSpec
getSpec()
Spec defines the behavior of a node.
-
-
-
Method Detail
-
getMetadata
@Stability(Stable) @Nullable default ObjectMeta getMetadata()
Standard object's metadata.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
-
getSpec
@Stability(Stable) @Nullable default NodeSpec getSpec()
Spec defines the behavior of a node.https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
-
builder
@Stability(Stable) static KubeNodeProps.Builder builder()
- Returns:
- a
KubeNodeProps.Builder
ofKubeNodeProps
-
-