
Kustomize: Kubernetes configuration management, the easy way
This post was originally posted on the Ordina JWorks Blog What problem do we have? Deploying components to a Kubernetes cluster should be as easy as running kubectl apply -f folder-with-deployment-manifests. This approach works very well for a single environment, but quickly become very hard to do properly when managing multiple environments (Dev, Staging, …, Production). The reason for this is due to the configuration differences in these environments. Every environment needs a different configuration to: connect to different databases, use other secret values, use different deployment configurations (number of replicas for example), … Managing these differences can be very hard to do in a single set of manifests. ...
