
Kustomize: The Art of Crafting and Modifying Kubernetes Manifests
Kubernetes manifests can get messy fast, especially when managing multiple environments. Kustomize helps you keep things clean by letting you customize YAML files without copying or rewriting them. In this article, we’ll explore how Kustomize simplifies and streamlines Kubernetes configuration. What does Kustomize do? let's say you already have a template for deployment, or you can generate sample deployment yaml from this command 1 kubectl create deployment <your deployment name> --image dummy --dry-run=client -o yaml this will generate a deployment yaml, then you can delete the following lines...