ConfigMaps
ConfigMaps
ConfigMaps and Pods
ConfigMap and Pod Relation A Pod is collection of containers running in shared namespace. A container is created from Docker/OCI Image, which is immutable in …
ReadConfigMaps, Secrets and Pods
A Pod is collection of containers running is shared namespace. A container is created from Docker/OCI Image, which is immutable in nature i.e. data bundled into image cannot be changed later in image. “While immutable image of application is great for security, but putting configurations & data like security keys is bad for security as well as portability” There are various ways to pass data to application in containers, without changing the flow of application e.
Read