Class V1Toleration

java.lang.Object
io.micronaut.kubernetes.client.openapi.model.V1Toleration

@Generated("io.micronaut.openapi.generator.JavaMicronautClientCodegen") public class V1Toleration extends Object
The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.
  • Field Details

  • Constructor Details

    • V1Toleration

      public V1Toleration()
  • Method Details

    • getEffect

      public String getEffect()
      Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
      Returns:
      the effect property value
    • setEffect

      public void setEffect(String effect)
      Set the effect property value
    • effect

      public V1Toleration effect(String effect)
      Set effect in a chainable fashion.
      Returns:
      The same instance of V1Toleration for chaining.
    • getKey

      public String getKey()
      Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.
      Returns:
      the key property value
    • setKey

      public void setKey(String key)
      Set the key property value
    • key

      public V1Toleration key(String key)
      Set key in a chainable fashion.
      Returns:
      The same instance of V1Toleration for chaining.
    • getOperator

      public String getOperator()
      Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.
      Returns:
      the operator property value
    • setOperator

      public void setOperator(String operator)
      Set the operator property value
    • operator

      public V1Toleration operator(String operator)
      Set operator in a chainable fashion.
      Returns:
      The same instance of V1Toleration for chaining.
    • getTolerationSeconds

      public Long getTolerationSeconds()
      TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.
      Returns:
      the tolerationSeconds property value
    • setTolerationSeconds

      public void setTolerationSeconds(Long tolerationSeconds)
      Set the tolerationSeconds property value
    • tolerationSeconds

      public V1Toleration tolerationSeconds(Long tolerationSeconds)
      Set tolerationSeconds in a chainable fashion.
      Returns:
      The same instance of V1Toleration for chaining.
    • getValue

      public String getValue()
      Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.
      Returns:
      the value property value
    • setValue

      public void setValue(String value)
      Set the value property value
    • value

      public V1Toleration value(String value)
      Set value in a chainable fashion.
      Returns:
      The same instance of V1Toleration for chaining.
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object