Module Values_0.ClusterKubernetesConfigDetailsSource

Detailed Kubernetes configuration showing both the current and desired state of labels and taints for cluster nodes.

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

    The current labels applied to cluster nodes of an instance group.

    *)
  2. desiredLabels : ClusterKubernetesLabels.t option;
    (*

    The desired labels to be applied to cluster nodes of an instance group.

    *)
  3. currentTaints : ClusterKubernetesTaints.t option;
    (*

    The current taints applied to cluster nodes of an instance group.

    *)
  4. desiredTaints : ClusterKubernetesTaints.t option;
    (*

    The desired taints to be applied to cluster nodes of an instance group.

    *)
}
Sourceval make : ?currentLabels:??? -> ?desiredLabels:??? -> ?currentTaints:??? -> ?desiredTaints:??? -> 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