Files
tools/tool/templates/_helm-chart.yaml
2024-09-04 11:00:44 +02:00

14 lines
301 B
YAML

{{- define "tool.helm-chart.tpl" -}}
apiVersion: helm.cattle.io/v1
kind: HelmChart
metadata:
name: {{ .Release.Name }}
namespace: tools
spec:
repo: {{ .Values.repo }}
chart: {{ .Values.chart }}
{{ with .Values.version -}}
version: {{ . }}
{{ end -}}
targetNamespace: tools
{{- end -}}