Sysctl

case class Sysctl(name: String, value: String)

Sysctl defines a kernel parameter to be set

Value Params
name

Name of a property to set

value

Value of a property to set

Companion
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def getName: IO[K8sFailure, String]

Name of a property to set

Name of a property to set

This effect always succeeds, it is safe to use the field name directly.

def getValue: IO[K8sFailure, String]

Value of a property to set

Value of a property to set

This effect always succeeds, it is safe to use the field value directly.

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product