Kubernetes Configuration Management with Helm
Last updated
Last updated
When I was a ops person my responsibilities were deploying and managing physical servers and virtual machines. When servers were spun up, the first task that I did was running my Ansible playbook. It was about setup hostname, config DNS, create users, copy ssh keys, and install useful packages such as sysstat
, vim
, etc . I followed GitOps mindset to store all changes of playbook which helped me to review easily.
Kubernetes has become the standard for deploying, managing and scaling containerized applications in private and public environments. What tasks will you do when cluster is available ? What tasks will be repeatable daily ? Here are tasks I do most:
Create namespace
Add registry credentials (regcreds) to namespace
Create Service Account and binding Role/ClusterRole
Add quota to namespace
etc
So what tool can help me do all above tasks ? I found Helm !
If Kubernetes cluster is a fleet, Helm is captain's steering wheel. Helm is a Package Manager for Kubernetes, but with me, it’s also Configuration Management for Management.
I write Helm Chart to manage my clusters from creating namespace to adding quota or managing Service Account. Chart code is stored in Git and CI/CD tools like Jenkins or gitlab-runner apply all changes automatically.
I define all namespace, service accounts, … in this file. This file is usually changed when managing clusters.
Helm is a powerful tool to work with Kubernetes. It’s not only package manager but also configuration manager for Kubernetes clusters. I hope you found this article useful and will use it with your daily tasks.
You can see sample code in
All templates can be found in this