Here's how my Helm charts are organized:
helm-charts/
service1/
Chart.yaml
templates/
deployment.yaml
ingress.yaml
service.yaml
values.yaml
service2/
Chart.yaml
templates/
deployment.yaml
ingress.yaml
service.yaml
values.yaml
Now I have a couple of service which nearly share the same template contents, only some settings such as deployment names and deployment endpoints differ.
Is there a way to have a single reusable template across multiple Helm charts?