Search⌘ K
AI Features

Getting Started

Explore how to use Kubernetes ConfigMaps to handle application configurations that vary across environments. Understand how environment variables can be set dynamically to avoid hard-coding values inside container images, enabling easier and cleaner deploys of your applications.

We'll cover the following...

Introduction

Most real-world applications will need some kind of configuration that should not be baked into the docker image itself. These are usually settings that vary depending on which environment the application is running on such as production ...