How to ignore dependency/Requirement list?
AhireKamlesh opened this issue · 1 comments
AhireKamlesh commented
Hi, I have Chart.yaml file like below:
apiVersion: v2
name: Generic_App
type: application
version: 0.0.10
dependencies:
- alias: svc-a
name: microservice
repository: '@microservice'
version: 0.2.4 - alias: svc-b
name: microservice
repository: '@microservice'
version: 0.2.4
When I generate helm chart using default template i get below Requirement info in helm-doc
Requirements
Repository | Name | Version |
---|---|---|
@microservice | svc-a(microservice) | 0.2.4 |
@microservice | svc-b(microservice) | 0.2.4 |
How I can ignore this? I have number of dependencies in my chart and I don't want to list them in my helm doc.
AhireKamlesh commented
I found that I need to use custom template which should not have {{ template "chart.requirementsSection" . }}