Module Values_0.ClusterKubernetesTaintSource

A Kubernetes taint that can be applied to cluster nodes.

Sourcetype nonrec t = {
  1. key : ClusterKubernetesTaintKey.t;
    (*

    The key of the taint.

    *)
  2. value : ClusterKubernetesTaintValue.t option;
    (*

    The value of the taint.

    *)
  3. effect_ : ClusterKubernetesTaintEffect.t;
    (*

    The effect of the taint. Valid values are NoSchedule, PreferNoSchedule, and NoExecute.

    *)
}
Sourceval context_ : string
Sourceval make : ?value:??? -> key:ClusterKubernetesTaintKey.t -> effect_:ClusterKubernetesTaintEffect.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ClusterKubernetesTaintKey.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t