Within an organization using Kubernetes to deploy its own applications, there are a few strategies that you might want to consider in order to produce and maintain charts to manage deploying the applications that you use.
Organizational patterns for Helm
Chart per application
The simplest way to use Helm within your organization is to create a new chart for each application that you want to deploy to Kubernetes.
When you have an application that might be deployed to a number of different contexts, such as testing, staging, and production environments, this can make sure that you have parity between each environment while making it simple to provide overrides for the configuration that might be environment-specific.
Creating...