Packages

o

nelson

Templates

object Templates

Source
Templates.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Templates
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class InvalidTemplate(msg: String) extends LintTemplateResult with Product with Serializable

    The lint-template had an error

  2. final case class LintTemplateError(exitCode: Int, msg: String) extends RuntimeException with Product with Serializable

    We couldn't call lint-template

  3. sealed abstract class LintTemplateResult extends Product with Serializable

    The result of a lint-template validation

  4. 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.

  5. 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

  1. def renderTemplate(ec: ExecutionContext, scheduler: ScheduledExecutorService, templateConfig: TemplateConfig, dockerConfig: DockerConfig, path: Path, vaultToken: String, env: Map[String, String] = Map.empty): IO[LintTemplateResult]
    Annotations
    @SuppressWarnings()
  2. def validateTemplate(tv: TemplateValidation): NelsonK[LintTemplateResult]

    Validate a template according to a template validation request

  3. object Rendered extends LintTemplateResult with Product with Serializable

    The lint-template rendered correctly.