NodeTaintResponse

data class NodeTaintResponse(val effect: String, val key: String, val value: String)

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 NodeTaintResponse(effect: String, key: String, value: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Effect for taint.

Link copied to clipboard
val key: String

Key for taint.

Link copied to clipboard

Value for taint.