package kubecaml

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

Stateful_set_condition describes the state of a statefulset at a certain point.

type t
val to_yojson : t -> Yojson.Safe.t
val make : type_:string -> status:string -> ?reason:string -> ?message:string -> ?last_transition_time: Kubernetes.Definitions.Apimachinery.Pkg.Apis.Meta.V1.Time.t -> unit -> t

Last time the condition transitioned from one status to another.

val message : t -> string option

A human readable message indicating details about the transition.

val reason : t -> string option

The reason for the condition's last transition.

val status : t -> string

Status of the condition, one of True, False, Unknown.

val type_ : t -> string

Type of statefulset condition.

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