object ManifestValidator
- Source
- ManifestValidator.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ManifestValidator
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
final
case class
ManifestValidation(units: List[NelsonUnit], config: String) extends Product with Serializable
A nelson manifest that we want to validate
A nelson manifest that we want to validate
- units
the units that are to be verified
- config
the complete string content of the manifest file
-
final
case class
NelsonUnit(kind: String, name: String) extends Product with Serializable
A (potentially) deployable unit
A (potentially) deployable unit
- kind
ex:
howdy-http
- name
ex:
howdy-http-0.4
- type Valid[A] = Validated[NonEmptyList[NelsonError], A]
Value Members
- def parseManifestAndValidate(str: String, cfg: NelsonConfig): IO[Valid[Manifest]]
- def validate(str: String, units: List[NelsonUnit]): NelsonK[Valid[Manifest]]
- def validateAlerts(unit: UnitDef, p: Plan): IO[Valid[Unit]]
- def validateHealthCheck(check: HealthCheck, unit: UnitDef): Valid[Unit]
- def validateLoadbalancer(lb: Loadbalancer, units: List[UnitDef], whiteList: Option[ProxyPortWhitelist]): Valid[Unit]
- def validateOnCommit(un: UnitName, ns: NamespaceName, m: Manifest): Valid[Manifest]
- def validatePeriodic(unit: UnitDef, plan: Plan): Valid[Unit]
- def validateResource(r: Resource, plan: Plan): Valid[Unit]
- def validateUnit(unit: UnitDef, plan: Plan): IO[Valid[Unit]]
- def validateUnitKind(unit: NelsonUnit, manifest: Manifest): Valid[Unit]
- def validateUnitNameChars(unit: UnitDef): Valid[Unit]
- def validateUnitNameLength(unit: UnitDef): Valid[Unit]
- object Json