BareMetalNodeConfigArgs

data class BareMetalNodeConfigArgs(val labels: Output<Map<String, String>>? = null, val nodeIp: Output<String>? = null) : ConvertibleToJava<BareMetalNodeConfigArgs>

BareMetalNodeConfig lists machine addresses to access Nodes.

Constructors

Link copied to clipboard
constructor(labels: Output<Map<String, String>>? = null, nodeIp: Output<String>? = null)

Properties

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

The labels assigned to this node. An object containing a list of key/value pairs. The labels here, unioned with the labels set on BareMetalNodePoolConfig are the set of labels that will be applied to the node. If there are any conflicts, the BareMetalNodeConfig labels take precedence. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

Link copied to clipboard
val nodeIp: Output<String>? = null

The default IPv4 address for SSH access and Kubernetes node. Example: 192.168.0.1

Functions

Link copied to clipboard
open override fun toJava(): BareMetalNodeConfigArgs