Kubernetes 101: Building Scalable Applications - ConfigMaps & Secrets
{{}} Providing Variables to Kubernetes Applications While we shouldn't run naked Pods, we've already seen we can pass environment variables when creating a Pod:kubectl run mydb --image=mysql --env="MYSQL_ROOT_PASSWORD=password" When creating a Deploy...