mirror of https://github.com/knative/func.git
41 lines
1.5 KiB
Go
41 lines
1.5 KiB
Go
package function
|
|
|
|
// Template
|
|
type Template struct {
|
|
// Name (short name) of this template within the repository.
|
|
// See .Fullname for the calculated field which is the unique primary id.
|
|
Name string `yaml:"-"` // use filesystem for name, not yaml
|
|
|
|
// Runtime for which this template applies.
|
|
Runtime string
|
|
|
|
// Repository within which this template is contained. Value is set to the
|
|
// currently effective name of the repository, which may vary. It is user-
|
|
// defined when the repository is added, and can be set to "default" when
|
|
// the client is loaded in single repo mode. I.e. not canonical.
|
|
Repository string
|
|
|
|
// BuildConfig defines builders and buildpacks. the denormalized view of
|
|
// members which can be defined per repo or per runtime first.
|
|
BuildConfig `yaml:",inline"`
|
|
|
|
// HealthEndpoints. The denormalized view of members which can be defined
|
|
// first per repo or per runtime.
|
|
HealthEndpoints `yaml:"healthEndpoints,omitempty"`
|
|
|
|
// BuildEnvs defines environment variables related to the builders,
|
|
// this can be used to parameterize the builders
|
|
BuildEnvs []Env `yaml:"buildEnvs,omitempty"`
|
|
|
|
// Invocation defines invocation hints for a Functions which is created
|
|
// from this template prior to being materially modified.
|
|
Invocation Invocation `yaml:"invocation,omitempty"`
|
|
}
|
|
|
|
// Fullname is a calculated field of [repo]/[name] used
|
|
// to uniquely reference a template which may share a name
|
|
// with one in another repository.
|
|
func (t Template) Fullname() string {
|
|
return t.Repository + "/" + t.Name
|
|
}
|