Azure Compute Solutions
Florin Angelescu
Azure Cloud Architect

Connection strings, feature flags, and environment values vary between:
Rebuilding container images is inefficient and error-prone.


Configure applications in Kubernetes:

Configure applications in Kubernetes:

Environment variables used for:


ConfigMap


You can change configuration without rebuilding or redeploying your container image.


Secrets
Similar to ConfigMaps:
Secrets are stored more securely within the cluster.

Referenced by pods as:
Sensitive data is not:
Allow applications to access what they need securely.

Separating configuration from container images:
Kubernetes automatically provides the updated configuration to new pods.
Predictable rolling out changes.

Azure Compute Solutions