package kubecaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Information about the condition of a component.

type t
val to_yojson : t -> Yojson.Safe.t
val make : type_:string -> status:string -> ?message:string -> ?error:string -> unit -> t
val error : t -> string option

Condition error code for a component. For example, a health check error code.

val message : t -> string option

Message about the condition for a component. For example, information about a health check.

val status : t -> string

Status of the condition for a component. Valid values for "healthy": "true", "false", or "unknown".

val type_ : t -> string

Type of condition for a component. Valid value: "healthy"

module Object : Object.S with type value := t