Manage Application Configuration in K8s
Manage Application Configuration in K8s
in
Kubernetes
Manage Application Configuration
Application Config.
➔ What is Application
Configuration
➔ ConfigMaps
➔ Secrets
➔ Environment Variables
➔ Configuration Volumes
➔ Hands On Lab
Application Configuration
➢ Most people already understand "configuration" as settings
that influence the operation of an application.
➢ Describe Secrets.
apiVersion: v1
kind: Secret
metadata:
name: mysecret-manifest
type: Opaque
data:
username: YW5zaHVsY2hhdWhhbg==
password: VGVzdGt1VybmV0ZXMxMjM0NQ==
Pass ConfigMap and Secrets to Containers
Container Process
Pass ConfigMap and Secrets to Containers