Node Taint Args
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)