Vmware Node Config Args
data class VmwareNodeConfigArgs(val bootDiskSizeGb: Output<String>? = null, val cpus: Output<String>? = null, val enableLoadBalancer: Output<Boolean>? = null, val image: Output<String>? = null, val imageType: Output<String>, val labels: Output<Map<String, String>>? = null, val memoryMb: Output<String>? = null, val replicas: Output<String>? = null, val taints: Output<List<NodeTaintArgs>>? = null) : ConvertibleToJava<VmwareNodeConfigArgs>
Parameters that describe the configuration of all nodes within a given node pool.
Constructors
Link copied to clipboard
fun VmwareNodeConfigArgs(bootDiskSizeGb: Output<String>? = null, cpus: Output<String>? = null, enableLoadBalancer: Output<Boolean>? = null, image: Output<String>? = null, imageType: Output<String>, labels: Output<Map<String, String>>? = null, memoryMb: Output<String>? = null, replicas: Output<String>? = null, taints: Output<List<NodeTaintArgs>>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
The map of Kubernetes labels (key/value pairs) to be applied to each node. These will added in addition to any default label(s) that Kubernetes may apply to the node. In case of conflict in label keys, the applied set may differ depending on the Kubernetes version -- it's best to assume the behavior is undefined and conflicts should be avoided. For more information, including usage and the valid values, see: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/