NodeTaintArgs

data class NodeTaintArgs(val effect: Output<NodeTaintEffect>? = null, val key: Output<String>? = null, val value: Output<String>? = null) : ConvertibleToJava<NodeTaintArgs>

Kubernetes taint is composed 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.

Constructors

Link copied to clipboard
fun NodeTaintArgs(effect: Output<NodeTaintEffect>? = null, key: Output<String>? = null, value: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val effect: Output<NodeTaintEffect>? = null

Effect for taint.

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

Key for taint.

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

Value for taint.