diff --git a/content/docs/ship/template-functions/template-types.md b/content/docs/ship/template-functions/template-types.md index 218bc2565..e4aa6ddbd 100644 --- a/content/docs/ship/template-functions/template-types.md +++ b/content/docs/ship/template-functions/template-types.md @@ -268,10 +268,20 @@ Implementations of these functions can be found [here](https://github.com/replic func ShipCustomerRelease() string ``` ShipCustomerRelease returns a copy of the release metadata struct, marshalled as yaml. +Config specs, collect specs, analyze specs, github contents and images are not included. ```yaml '{{repl ShipCustomerRelease }}' ``` +{{< template_function name="ShipCustomerReleaseFull" >}} +```go +func ShipCustomerReleaseFull() string +``` +ShipCustomerReleaseFull returns a copy of the release metadata struct, marshalled as yaml. +```yaml +'{{repl ShipCustomerReleaseFull }}' +``` + {{< template_function name="EntitlementValue" >}} ```go func EntitlementValue(name string) string @@ -299,6 +309,15 @@ CollectSpec returns the Collect Spec currently promoted to the channel to which '{{repl CollectSpec }}' ``` +{{< template_function name="ConfigSpec" >}} +```go +func ConfigSpec() string +``` +ConfigSpec returns the Config Spec for the current ship release. +```yaml +'{{repl ConfigSpec }}' +``` + {{< template_function name="AnalyzeSpec" >}} ```go func AnalyzeSpec() string