dagger-templates
This utility module takes a Jinja template and a JSON string Return a File with the compiled templateInstallation
dagger install github.com/dciangot/daggerverse/dagger-templates@f0185187d0832b19d69a0d4cf074029da331f645
Entrypoint
Return Type
DaggerTemplates !
Example
func (m *myModule) example() *DaggerTemplates {
return dag.
DaggerTemplates()
}
Types
DaggerTemplates 🔗
Take a Jinja template and a JSON string Return a File with the compiled template
compileTemplate() 🔗
Return Type
File !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
jsonValues | Scalar ! | - | JSON string containing values to be filled in |
templateFile | File ! | - | Jinja template file to be compiled |
Example
func (m *myModule) example(jsonValues , templateFile *File) *File {
return dag.
DaggerTemplates().
CompileTemplate(jsonValues, templateFile)
}