How to manage Secrets in Kubernetes Environment
Image credit : Platformer - https://medium.com/platformer-blog/using-kubernetes-secrets-5e7530e0378a Introduction: Kubernetes is currently the de-facto standard for container orchestration. As organizations globally are adopting a Container first development approach, a large part of existing workloads is still running on virtual machines, be in the public cloud or a private data center. Hence a lot of companies are now facing severe challenges in migrating from their old methods to Kubernetes. However, there are times when you want bake-in sensitive secret information into your Kubernetes cluster and share it across when needed. You do not want to put this information into a Pod definition YAML or a docker image. This is where Kubernetes Secret comes to your rescue. In this post, we will try to gain more insight into how we can manage secrets effectively in Kubernetes. Why Use a Secret? Not all configuration information is safe to keep out in the “pu...