package kubecaml

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

Deployment_strategy describes how to replace existing pods with new ones.

type t
val to_yojson : t -> Yojson.Safe.t
val make : ?type_:string -> ?rolling_update: Kubernetes.Definitions.Api.Apps.V1beta2.Rolling_update_deployment.t -> unit -> t

Rolling update config params. Present only if Deployment_strategy_type = Rolling_update.

val type_ : t -> string option

Type of deployment. Can be "recreate" or "rolling_update". Default is Rolling_update.

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