Reviewed-on: https://gitea.arcodange.duckdns.org/arcodange-org/tools/pulls/1 Co-authored-by: Gabriel Radureau <arcodange@gmail.com> Co-committed-by: Gabriel Radureau <arcodange@gmail.com>
14 lines
301 B
YAML
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 -}} |