Команда
helm create chart
по умолчанию создает иерархию файлов ниже:
chart/
|
|- .helmignore # Contains patterns to ignore when packaging Helm charts.
|
|- Chart.yaml # Information about your chart
|
|- values.yaml # The default values for your templates
|
|- charts/ # Charts that this chart depends on
|
|- templates/ # The template files
|
|- templates/tests/ # The test files
Так что да, вы можете удалить ненужные для вас объекты из каталога chart/templates
, чтобы избежать их создания во время helm install
Исходный код Github, который отвечает за создание каталога диаграмм вместе с общими файлами и каталогами, используемыми в диаграмме.
https://github.com/helm/helm/blob/5859403fd92bfb319ae865fcc2466701607da334/cmd/helm/create.go