Config Map Args
data class ConfigMapArgs(val apiVersion: Output<String>? = null, val binaryData: Output<Map<String, String>>? = null, val data: Output<Map<String, String>>? = null, val immutable: Output<Boolean>? = null, val kind: Output<String>? = null, val metadata: Output<ObjectMetaArgs>? = null) : ConvertibleToJava<ConfigMapArgs>
ConfigMap holds configuration data for pods to consume.
Constructors
Functions
Properties
Link copied to clipboard
BinaryData contains the binary data. Each key must consist of alphanumeric characters, '-', '_' or '.'. BinaryData can contain byte sequences that are not in the UTF-8 range. The keys stored in BinaryData 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.