Module Values.SecurityContextSource

Container security context.

Sourcetype nonrec t = {
  1. privileged : Boolean.t option;
    (*

    Whether the container is privileged.

    *)
  2. allowPrivilegeEscalation : Boolean.t option;
    (*

    Whether or not a container or a Kubernetes pod is allowed to gain more privileges than its parent process.

    *)
}
Sourceval make : ?privileged:??? -> ?allowPrivilegeEscalation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t