Module Values_0.ClusterKubernetesConfigSource

Kubernetes configuration that specifies labels and taints to be applied to cluster nodes in an instance group.

Sourcetype nonrec t = {
  1. labels : ClusterKubernetesLabels.t option;
    (*

    Key-value pairs of labels to be applied to cluster nodes.

    *)
  2. taints : ClusterKubernetesTaints.t option;
    (*

    List of taints to be applied to cluster nodes.

    *)
}
Sourceval make : ?labels:??? -> ?taints:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ClusterKubernetesTaintKey.t ]) list ] list | `Map of ([> `String of ClusterKubernetesLabelKey.t ] * [> `String of ClusterKubernetesLabelValue.t ]) list ]) 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