Skip to content

Lifecycle

Arkadi Shishlov edited this page Feb 2, 2021 · 5 revisions

Elaborate

Deploy

Provides

Hub CLI parameter hub.provides and HUB_PROVIDES env var exports a space-separated list of currently known provides.

Conditional deployment

When component declares requires - a list of capabilities that must be provided by prior components, platform stack, or environment - it became a list of hard requirements that must be satisfied before component (deploy) implementation is invoked. Failure to satisfy any requirement is hard error.

Component provides capabilities by declaring them in component's manifest provides list. Additionally, dynamic capabilities are collected from deploy output Provides: block, similar to Outputs:.

An aggregation of component's provides became (platform) stack provides.

A list of well known requires are built into Hub CLI. Such requirements could be sourced from environment, such as aws (a working AWS CLI). These requirements cannot be tuned.

Optional and Mandatory

A component might be declared optional on stack level

lifecycle:
  optional:
  - s3-bucket

Failure to deploy optional component is soft error. By default all components are mandatory. Those declared optional became optional. If mandatory components are specified, then everything else is optional.

lifecycle:
  mandatory:
  - kubernetes
  - tiller
  - traefik

Optional requirements

A requirement could be softened by tuning it via lifecycle in stack manifest:

lifecycle:
  requires:
    optional:
    - vault
    - cdn:control-plane
    - component.ingress.ssl.enabled:acm

vault and cdn are capabilities, control-plane and acm are component names. vault requirement is relaxed for all components, while cdn just for control-plane. Requirement became optional. acm is deployed only if ingress parameter component.ingress.ssl.enabled requests TLS-enabled stack (evaluates to truth-y value, ie. everything else besides false, "" empty string, 0, (unknown)).

When an optional requirement cannot be satisfied for a particular component, the component deployment (or undeployment) implementation is not invoked.

Requirements tuning of Base stack will be merged with tuning of derived stack. The following rules are used:

  • requirement supersedes all prior requirement:component - making requirement optional for everyone;
  • requirement:component supersedes prior requirement - making requirement optional for component. There could be multiple declaration for different components;
  • : erase all prior tuning;
  • requirement: erase all prior tuning for requirement;
  • :component erase all prior tuning for component;
  • otherwise the entry is appended.

Undeploy

Parameters evolution

Elaborate

During elaborate Hub CLI creates a final manifest assembly that consists of:

  • a leading document constructed from hub.yaml, params*.yaml, fromStack YAML-s, adding parameters marked kind: user in */hub-component.yaml;
  • all component's hub-component.yaml with the component name (meta.name) changed to match hub.yaml specified name.

Let's take Agile Stack's infra Dev stack as an example. The stack is built from:

  • agilestacks/hub.yaml - core infra;
  • agilestacks/params.yaml - parameters for the infra;
  • dev/hub.yaml - uses fromStack: agilestacks and adds some components: prometheus, etc.;
  • dev/params.yaml - parameters for additional components;
  • dev/params-dev.yaml - additional Dev stack parameters.

Separation between hub.yaml and params*.yaml is a convenience.

The files will be parsed and parameters will be arranged by hub elaborate in following order:

  1. hub-component.yaml of all agilestacks components, in order of components:
  2. hub-component.yaml of all dev components
  3. agilestacks/hub.yaml
  4. agilestacks/params.yaml
  5. dev/hub.yaml
  6. dev/params.yaml
  7. dev/params-dev.yaml

hub-component.yaml kind: user parameters (1) are brought to the top level - first document of hub.yaml.elaborate with a component qualifier.

Parameters from (1), (2) to (7) are merged in the order specified:

  1. kind: user takes priority over kind: tech.
  2. value, default, fromEnv, env, and brief are overwritten.
  3. In case top-level parameter - ie. from hub.yaml or params*.yaml has no component qualifier, then elaborate additionally checks for all previously encountered parameters of the same name with a qualifier, then do merge into those. This is the reason for the following in hub.yaml.elaborate:
- name: component.auth-service.authApiSecret
  kind: user
  fromEnv: AUTH_API_SECRET
- name: component.auth-service.authApiSecret
  component: auth-service
  kind: user
  fromEnv: AUTH_API_SECRET

Deploy

During deploy following things happens:

  1. Top-level parameters are locked:
  • kind: user parameters with no values are fetched from fromEnv (if any) or asked on the terminal (if stdin is a TTY);
  • default values are substituted;
  • expression evaluations are performed;
  • cycles become errors;
  • empty parameters become errors until suppressed with empty: allow;
  • all errors and warning are collected and reported.
  1. If there is a state file, then parameters from state are loaded and merged into global state - but only empty (stack) values are replaced (by state values) and warnings are emitted.
  2. The locked set of top-level parameters are never changed after this step.

Top-level parameters can reference each other via expressions.

On each component deploy:

  1. Parameters are expanded:
  • parameters with no values are searched in the top-level scope taking in account component and depends qualifiers;
  • expression evaluations are performed;
  • unknown empty parameters (without value: expression) become errors until suppressed with empty: allow at which point their value assigned to empty string.
  1. Component parameters are never sent to top-level scope, but they are written into state file for informational purposes.
  2. env: variables are set, then merged on top of OS environ to create process environment for component invocation.
  3. Outputs are collected and put onto global outputs scope - with a qualifier - of the component producing the output ${component:parameter}. So that when parameters qualifiers are proceed, the name|qualifier is searched first and then just plain name. Outputs and parameters are processed independently although they looks very similar to the user. Outputs have higher precedence.

Component-level parameters may reference each other in expressions, top to bottom.

Set parameter value: " " or empty: allow to make empty parameter on hub-component.yaml level. During template processing and OS environment setup spaces are trimmed, effectively creating an empty substitution.

Capturing empty parameter from top-level scope does not require empty: allow on component level. But it might be useful to proceed with deployment when optional upstream component failed thus no outputs were produced.

Clone this wiki locally