Packages

case class Sysctl(name: String, value: String) extends Product with Serializable

Sysctl defines a kernel parameter to be set

name

Name of a property to set

value

Value of a property to set

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Sysctl
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Sysctl(name: String, value: String)

    name

    Name of a property to set

    value

    Value of a property to set

Value Members

  1. 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.

  2. 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.

  3. val name: String
  4. val value: String