package kubecaml

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

Spec to control the desired behavior of rolling update.

type t
val to_yojson : t -> Yojson.Safe.t

The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if Max_unavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new Rc can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new Rc can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.

The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if Max_surge is 0. Defaults to 25%. Example: when this is set to 30%, the old Rc can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old Rc can be scaled down further, followed by scaling up the new Rc, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.

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