object Templates
- Source
- Templates.scala
- Alphabetic
- By Inheritance
- Templates
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
final
case class
InvalidTemplate(msg: String) extends LintTemplateResult with Product with Serializable
The lint-template had an error
-
final
case class
LintTemplateError(exitCode: Int, msg: String) extends RuntimeException with Product with Serializable
We couldn't call lint-template
-
sealed abstract
class
LintTemplateResult extends Product with Serializable
The result of a lint-template validation
-
final
case class
TemplateTimeout(msg: String) extends LintTemplateResult with Product with Serializable
The lint-template job timed out.
The lint-template job timed out. It might be okay, but we gave up trying.
-
final
case class
TemplateValidation(unitRef: UnitRef, resources: Set[String], template: String) extends Product with Serializable
A template that we want to render in Nelson
A template that we want to render in Nelson
- unitRef
the name of the unit that owns the template
- resources
a set of resources the unit depends on
- template
the content of the template
Value Members
-
def
renderTemplate(ec: ExecutionContext, scheduler: ScheduledExecutorService, templateConfig: TemplateConfig, dockerConfig: DockerConfig, path: Path, vaultToken: String, env: Map[String, String] = Map.empty): IO[LintTemplateResult]
- Annotations
- @SuppressWarnings()
-
def
validateTemplate(tv: TemplateValidation): NelsonK[LintTemplateResult]
Validate a template according to a template validation request
-
object
Rendered extends LintTemplateResult with Product with Serializable
The lint-template rendered correctly.