Documentation ¶
Overview ¶
Package template provides the ability for Vela to render a templated yaml configuration into an executable pipeline.
Usage:
import "github.com/go-vela/server/template"
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Engine ¶
type Engine interface { // RenderBuild defines a function that combines // the template with the build. RenderBuild(template string, step *yaml.Step) (yaml.StepSlice, error) // Render defines a function that combines // the template with the step. Render(template string, step *yaml.Step) (yaml.StepSlice, error) }
Engine represents the interface for Vela integrating with the different supported template engines.
Click to show internal directories.
Click to hide internal directories.