package kubecaml

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

Load_balancer_ingress represents the status of a load_balancer ingress point: traffic intended for the service should be sent to an ingress point.

type t
val to_yojson : t -> Yojson.Safe.t
val make : ?ip:string -> ?hostname:string -> unit -> t
val hostname : t -> string option

Hostname is set for load_balancer ingress points that are Dns based (typically Aws load_balancers)

val ip : t -> string option

Ip is set for load_balancer ingress points that are Ip based (typically Gce or Open_stack load_balancers)

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