package kubecaml

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

Config_map holds configuration data for pods to consume.

type t
val to_yojson : t -> Yojson.Safe.t
val make : ?metadata:Kubernetes.Definitions.Apimachinery.Pkg.Apis.Meta.V1.Object_meta.t -> ?kind:string -> ?data:Object.Of_strings.t -> ?binary_data:Object.Of_strings.t -> ?api_version:string -> unit -> t
val api_version : t -> string option

Api_version defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources

val binary_data : t -> Object.Of_strings.t option

Binary_data contains the binary data. Each key must consist of alphanumeric characters, '_', '_' or '.'. Binary_data can contain byte sequences that are not in the Utf_8 range. The keys stored in Binary_data must not overlap with the ones in the Data field, this is enforced during validation process. Using this field will require 1.10+ apiserver and kubelet.

val data : t -> Object.Of_strings.t option

Data contains the configuration data. Each key must consist of alphanumeric characters, '_', '_' or '.'. Values with non_utf_8 byte sequences must use the Binary_data field. The keys stored in Data must not overlap with the keys in the Binary_data field, this is enforced during validation process.

val kind : t -> string option

Kind is a string value representing the Rest resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In Camel_case. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds

Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata

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