The following is the architecture of a Helm package:
{service-name}/
Chart.yaml
Values.yaml
Templates/
_helpers.tpl
{service-name}-deployment.yaml
{service-name}-service.yaml
{service-name}-data-pvc.yaml To create a persistent volume claim (PVC), create this file.
Make sure the total size of all chart files in a Helm package is less than 20M. If the total size exceeds 20M, divide the Helm package into two or more smaller Helm packages. |