I would like to create a jfrog system template and include multiple templates files in it.
I have tried to use "named templates" with "include" but it seems that it is not supported.
And using:
{{- template "GitRepo" . }}
Only works if I write the template define code inside 'templateDefinition.yml' as below and not in a separate file:
{{- define "GitRepo" }}
...
{{- end }}
Is there another way to organize the 'define' templates outside of 'templateDefinition.yml'?
Or any other inheritance mechanism?